/**
 * Estilos simples para a navegação por categorias
 */

/* Estilo para o círculo da categoria */
.category-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto 10px auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Cores para os círculos */
.category-circle.color-1 {
    background-color: #7030a0;
}

.category-circle.color-2 {
    background-color: #ff8c00;
}

.category-circle.color-3 {
    background-color: #6ab04c;
}

/* Estilo para o ícone dentro do círculo */
.category-icon {
    font-size: 40px;
    color: #ffffff !important;
}

/* Estilo para a letra no canto inferior direito */
.category-letter {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Estilo para o item de categoria */
.amazon-category-item {
    text-decoration: none;
    color: #333;
    display: inline-block;
    width: 140px;
    text-align: center;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

.amazon-category-item:hover {
    transform: translateY(-5px);
}

/* Estilo para o nome da categoria */
.amazon-category-name {
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
}

/* Estilo para o carrossel de categorias */
.amazon-categories-carousel {
    display: flex;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.amazon-categories-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Botões de navegação */
.amazon-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
}

.amazon-prev-button {
    left: 0;
}

.amazon-next-button {
    right: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .category-circle {
        width: 100px;
        height: 100px;
    }
    
    .category-icon {
        font-size: 30px;
    }
    
    .category-letter {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }
    
    .amazon-category-item {
        width: 120px;
    }
}

@media (max-width: 576px) {
    .category-circle {
        width: 80px;
        height: 80px;
    }
    
    .category-icon {
        font-size: 24px;
    }
    
    .category-letter {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
    
    .amazon-category-item {
        width: 100px;
        margin: 0 5px;
    }
    
    .amazon-category-name {
        font-size: 12px;
    }
}
