/* ========================================
   CONFORTOCARE - INDEX CSS
   Estilos Específicos da Home
======================================== */

/* ========================================
   HERO CAROUSEL - IMAGENS INTEIRAS
======================================== */
.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background: #000;
    margin-bottom: 0;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background: #000;
}

.carousel-slide {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: none;
    background: #000;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    display: block;
}

/* IMAGEM/VÍDEO - 100% LARGURA SEM CORTES */
.slide-bg-media {
    width: 100%;
    height: auto;
    max-height: 900px;
    display: block;
    background: #000;
    object-fit: cover;
    object-position: center;
}

/* Overlay e Conteúdo */
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.carousel-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    pointer-events: all;
}

/* Badge */
.slide-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-primary);
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: var(--shadow-glow);
    align-self: flex-start;
}

/* Títulos */
.slide-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.slide-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.slide-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* Botões de Ação */
.slide-actions {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: 2px solid var(--primary-orange);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    color: white;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    color: white;
}

.btn-primary i,
.btn-secondary i {
    font-size: 18px;
}

/* Controles do Carousel */
.carousel-control {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.carousel-control:hover {
    background: var(--gradient-primary);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.carousel-control.prev {
    display: none;
}

.carousel-control.next {
    /* Já posicionado */
}

/* Indicadores do Hero Carousel */
.carousel-indicators {
    position: absolute;
    bottom: 45px;
    left: 30px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    cursor: pointer;
}

.indicator.active {
    width: 40px;
    border-radius: 6px;
    background: #fff;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* ========================================
   DIVISÓRIA DECORATIVA APÓS CARROSSEL
   MARGEM REMOVIDA - ENCOSTA NO CARROSSEL
======================================== */
.carousel-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
    margin-top: 0 !important;
}

.carousel-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
}

.carousel-divider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
    max-width: 300px;
    position: relative;
}

.divider-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 66, 0.3), transparent);
    transform: translateY(-2px);
}

.divider-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    position: relative;
    z-index: 1;
    animation: pulse-icon 3s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 30px rgba(255, 107, 53, 0.5);
    }
}

.divider-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    animation: pulse-ring 3s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

/* ========================================
   DESTAQUES RÁPIDOS
======================================== */
.quick-features {
    padding: 60px 0;
    background: var(--bg-secondary);
    margin-top: -80px;
    position: relative;
    z-index: 3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: var(--bg-elevated);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-orange);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.feature-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ========================================
   SEÇÃO DE CATEGORIAS
======================================== */
.product-categories {
    padding: 80px 0;
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-item {
    background: var(--bg-secondary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-subtle);
}

.category-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.category-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--bg-elevated);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-item:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.category-item:hover .category-overlay {
    opacity: 1;
}

.btn-category {
    padding: 14px 28px;
    background: #fff;
    color: var(--primary-orange);
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transform: translateY(20px);
    transition: var(--transition);
}

.category-item:hover .btn-category {
    transform: translateY(0);
}

.btn-category:hover {
    transform: scale(1.05);
}

.category-info {
    padding: 25px;
    text-align: center;
}

.category-info i {
    font-size: 32px;
    color: var(--primary-orange);
    margin-bottom: 12px;
}

.category-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.category-info p {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ========================================
   PRODUTOS EM DESTAQUE
======================================== */
.produtos-destaque {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.produtos-destaque .section-header {
    margin-bottom: 50px;
}

.section-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin: 0;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.produto-card {
    background: var(--bg-elevated);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-subtle);
    position: relative;
}

.produto-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-orange);
}

.produto-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.produto-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.produto-card:hover .produto-image img {
    transform: scale(1.1);
}

.produto-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    background: var(--accent-green);
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.produto-badge.desconto {
    background: linear-gradient(135deg, #FF6B6B, #FF4757);
}

.produto-badge.novo {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.produto-info {
    padding: 25px;
}

.produto-nome {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.produto-descricao {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.produto-preco {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-subtle);
}

.preco-original {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.preco-atual {
    font-size: 28px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.parcelas {
    font-size: 12px;
    color: var(--text-secondary);
}

.produto-actions {
    display: flex;
    gap: 12px;
}

.btn-ver-mais {
    flex: 1;
    padding: 12px 20px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.btn-ver-mais:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-add-carrinho {
    width: 48px;
    height: 48px;
    background: var(--bg-elevated);
    color: var(--primary-orange);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.btn-add-carrinho:hover {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-text h2 {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.cta-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    max-width: 600px;
}

.cta-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-cta.primary {
    background: #fff;
    color: var(--primary-orange);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-cta.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.btn-cta.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   SEÇÕES COM FUNDO BRANCO
======================================== */
.why-choose,
.products-carousel-section,
.highlights-benefits-section {
    background: #FFFFFF !important;
    padding: 80px 0;
}

.products-carousel-section {
    margin-top: 60px;
}

.carousel-label {
    text-align: center;
    margin-bottom: 50px;
}

.carousel-label span {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 3px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-orange);
}

/* ========================================
   RESPONSIVE - TABLET
======================================== */
@media (max-width: 1024px) {
    .slide-bg-media {
        max-height: 650px;
    }
    
    .slide-title {
        font-size: 40px;
    }
    
    .slide-subtitle {
        font-size: 20px;
    }
    
    .slide-description {
        font-size: 15px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-text p {
        margin: 0 auto;
    }
    
    .divider-line {
        max-width: 200px;
    }
    
    .divider-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* ========================================
   CARROSSEL HORIZONTAL - PRODUTOS MOBILE
======================================== */
@media (max-width: 768px) {
    .produtos-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding: 10px 0 30px;
        margin-bottom: 30px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .produtos-grid::-webkit-scrollbar {
        display: none;
    }
    
    .produto-card {
        flex: 0 0 calc(50% - 6px);
        max-width: calc(50% - 6px);
        scroll-snap-align: start;
    }
    
    .produto-card .produto-descricao {
        display: none;
    }
    
    .produto-card .produto-nome {
        font-size: 14px;
        margin-bottom: 8px;
        line-height: 1.3;
        min-height: 36px;
    }
    
    .produto-card .preco-atual {
        font-size: 20px !important;
    }
    
    .produto-card .preco-original {
        font-size: 12px;
    }
    
    .produto-card .parcelas {
        font-size: 11px;
        line-height: 1.3;
    }
    
    .produto-card .btn-ver-mais {
        padding: 10px 14px;
        font-size: 12px;
        gap: 6px;
    }
    
    .produto-card .produto-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .produto-card .btn-ver-mais,
    .produto-card .btn-add-carrinho {
        width: 100%;
    }
    
    .produtos-destaque .section-header::after {
        content: '← Deslize para ver mais →';
        display: block;
        text-align: center;
        font-size: 12px;
        color: var(--text-muted);
        margin-top: 10px;
        font-weight: 500;
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0%, 100% { opacity: 0.5; }
        50% { opacity: 1; }
    }
}

/* ========================================
   RESPONSIVE - MOBILE
======================================== */
@media (max-width: 768px) {
    /* CAROUSEL MOBILE */
    .slide-bg-media {
        max-height: 700px;
    }
    
    .carousel-content {
        max-width: 100%;
        padding: 30px 0;
    }
    
    /* Esconder textos no mobile - só mostrar imagem */
    .slide-badge,
    .slide-title,
    .slide-subtitle,
    .slide-description,
    .slide-actions {
        display: none;
    }
    
    /* Remover overlay escuro no mobile */
    .carousel-overlay {
        background: transparent;
    }
    
    .slide-badge {
        font-size: 11px;
        padding: 6px 16px;
    }
    
    .slide-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .slide-subtitle {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .slide-description {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .slide-actions {
        flex-direction: row;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .btn-primary,
    .btn-secondary {
        flex: 1;
        min-width: 140px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .btn-primary span,
    .btn-secondary span {
        display: inline;
    }
    
    .btn-primary i,
    .btn-secondary i {
        font-size: 14px;
    }
    
    .carousel-control {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }
    
    .carousel-indicators {
        bottom: 25px;
        left: 20px;
    }
    
    /* DIVISÓRIA MOBILE */
    .carousel-divider {
        padding: 25px 15px;
        gap: 15px;
    }
    
    .divider-line {
        max-width: 80px;
    }
    
    .divider-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .quick-features {
        padding: 40px 0;
        margin-top: 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .product-categories,
    .produtos-destaque,
    .cta-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-image,
    .produto-image {
        height: 240px;
    }
    
    .cta-text h2 {
        font-size: 28px;
    }
    
    .cta-text p {
        font-size: 16px;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-cta {
        width: 100%;
        justify-content: center;
    }
    
    /* ESPAÇAMENTO PRODUCTS CAROUSEL MOBILE */
    .products-carousel-section {
        margin-top: 50px;
        padding: 60px 0;
    }
    
    .carousel-label {
        margin-bottom: 35px;
    }
    
    .carousel-label span {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    /* SEÇÕES COM FUNDO BRANCO - MOBILE */
    .why-choose,
    .highlights-benefits-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .slide-bg-media {
        max-height: 600px;
    }
    
    .slide-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .slide-subtitle {
        font-size: 16px;
    }
    
    .slide-description {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .slide-actions {
        gap: 8px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 16px;
        font-size: 12px;
        flex: 1;
        min-width: 130px;
    }
    
    .btn-primary i,
    .btn-secondary i {
        font-size: 13px;
    }
    
    .carousel-control {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 15px;
        right: 15px;
    }
    
    .carousel-indicators {
        bottom: 20px;
        left: 15px;
        gap: 8px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .indicator.active {
        width: 24px;
    }
    
    /* DIVISÓRIA MOBILE PEQUENO */
    .carousel-divider {
        padding: 20px 10px;
        gap: 12px;
    }
    
    .divider-line {
        max-width: 60px;
    }
    
    .divider-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .category-image,
    .produto-image {
        height: 200px;
    }
    
    /* ESPAÇAMENTO PRODUCTS CAROUSEL MOBILE PEQUENO */
    .products-carousel-section {
        margin-top: 40px;
        padding: 40px 0;
    }
    
    /* SEÇÕES COM FUNDO BRANCO - MOBILE PEQUENO */
    .why-choose,
    .highlights-benefits-section {
        padding: 40px 0;
    }
}
@media (max-width: 768px) {
    .carousel-label {
        position: relative;
        top: 40px; /* ajuste o valor */
    }
}