﻿/* styles.css */

/* 1. RESET E VARIAVEIS GLOBAIS */
:root {
    --primary-color: #f70a31;
    --secondary-color: #333; 
    --text-dark: #333;
    --text-light: #555;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --testimonial-row-height: 250px; /* altura para uma linha de 2 cards (ajustável) */

    /* Espaçamentos (Home > Nossas Coleções) */
    --collections-grid-padding-x-desktop: 60px;
    --collections-grid-column-gap-desktop: 35px;
    --collections-grid-row-gap-desktop: 4px;

    --collections-grid-padding-x-tablet: 40px;
    --collections-grid-column-gap-tablet: 40px;
    --collections-grid-row-gap-tablet: 6px;

    --collections-grid-padding-x-mobile: 20px;
    --collections-grid-row-gap-mobile: 8px;
}

/* Reset global para evitar scroll horizontal */
html {
    width: 100%;
    overflow-x: hidden;
}

/* Fundo do corpo agora é branco */
body {
    width: 100%;
    overflow-x: hidden;
    background-color: var(--bg-white); 
    background-image: none;
    background-attachment: scroll;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

*::before,
*::after {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: var(--text-dark);
}

ul {
    list-style: none;
}

main {
    flex: 1 0 auto;
}

footer {
    margin-top: auto;
}

/* 2. ESTILIZAÇAO DO CABEÇALHO (HEADER) - ALINHADO E RESPONSIVO */
.main-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    background-color: white;
    z-index: 1200;
    position: relative;
    height: 70px;
    width: 100%;
    overflow: visible;
    box-sizing: border-box;
}

/* Logo container - posição relativa para badge overlap */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
    margin-right: 20px;
    margin-left: 0;
    padding-right: 0;
}

/* Badge do logo - grande, com overlap */
.site-logo {
    height: 56px; /* Reduzido para evitar upscaling/pixelização */
    width: auto; 
    display: block;
    object-fit: contain;
    transform: translateY(-3px); /* Ajuste proporcional ao novo tamanho */
    image-rendering: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1)); /* Sombra leve */
    background: transparent !important; /* Garantir fundo transparente */
    box-shadow: none !important; /* Sem box-shadow extra */
    border: none !important; /* Sem borda */
    padding: 0 !important; /* Sem padding */
}

.main-nav {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: 0;
    margin-right: 16px;
    overflow: visible;
}

.main-nav > ul { 
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: nowrap;
}

.main-nav a {
    font-weight: 500;
    padding: 6px 0;
    position: relative;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
}

/* Aplicar estilo pill aos primeiros 2 itens do menu (Home e Venda de Estampa) */
.main-nav > ul > li:nth-child(1) > a,
.main-nav > ul > li:nth-child(2) > a {
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 6px 12px;
    transition: color 0.3s, border-color 0.3s, background-color 0.3s;
}

.main-nav > ul > li:nth-child(1) > a:hover,
.main-nav > ul > li:nth-child(1) > a.active,
.main-nav > ul > li:nth-child(2) > a:hover,
.main-nav > ul > li:nth-child(2) > a.active {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: rgba(255,0,0,0.02);
}

@media (min-width: 769px) {
    .main-nav > ul > li:nth-child(1) > a {
        background-color: #ececec;
        border-color: #d6d6d6;
    }

    .header-actions .btn--ghost {
        background-color: #ececec;
        border-color: #d6d6d6;
    }
}

.dropdown {
    position: relative;
    z-index: 1300;
    overflow: visible;
}

.dropdown-toggle {
    background: transparent;
    border: 1px solid #ddd;
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    transition: color 0.3s, border-color 0.3s, background-color 0.3s;
    white-space: nowrap;
}

.dropdown-toggle:hover,
.dropdown-toggle.active {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: rgba(255,0,0,0.02);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 0 1 auto;
    min-width: 0;
    white-space: nowrap;
}
.header-actions .btn--primary {
    flex-shrink: 1;
    max-width: 100%;
}
.search-box {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 25px;
    overflow: hidden;
    padding: 5px 10px;
    flex: 0 1 220px;
    max-width: 220px;
    min-width: 160px;
}
.search-box input {
    border: none;
    padding: 5px 8px;
    outline: none;
    width: 100%;
    font-size: 0.9em;
    flex-shrink: 1;
    min-width: 0;
}
.search-box button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-light);
}

/* Search Dropdown Styles */
.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1500;
    max-height: 350px;
    overflow-y: auto;
    display: none;
}

.search-dropdown[aria-hidden="false"] {
    display: block;
}

.search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 12px;
    border: none;
    background: white;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s;
}

.search-item:hover {
    background-color: #f5f5f5;
}

.search-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.search-item div {
    flex: 1;
    min-width: 0;
}

.search-item strong {
    display: block;
    font-size: 0.95em;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-item small {
    display: block;
    font-size: 0.8em;
    color: var(--text-light);
    margin-top: 2px;
}

.btn-account, .btn-help {
    font-size: 0.9em;
}

.main-header .bar.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    box-sizing: border-box;
    overflow: visible;
}

.btn-primary-action {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}
.btn-primary-action:hover {
    background-color: #c40827;
}

.menu-toggle {
    display: none !important;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

.mobile-menu-close {
    display: none;
}

/* Menu Mobile - Estilo base (oculto por padrão) */
.header-mobile .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    display: block !important;
    z-index: 1100;
    max-height: calc(100vh - 56px);
    overflow-y: auto;
    padding: 0;
}

.header-mobile .main-nav > ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
}

.header-mobile .main-nav > ul > li {
    border-bottom: 1px solid #f0f0f0;
}

.header-mobile .main-nav a,
.header-mobile .main-nav .dropdown-toggle {
    display: block !important;
    padding: 16px 20px;
    color: var(--text-dark);
    font-weight: 500;
    width: 100%;
    text-align: left;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 1em;
}

.header-mobile .main-nav a:hover,
.header-mobile .main-nav .dropdown-toggle:hover {
    background-color: #f9f9f9;
    color: var(--primary-color);
}

.header-mobile .dropdown-menu {
    position: static !important;
    display: flex !important;
    flex-direction: column;
    gap: 0;
    background-color: #f9f9f9;
    padding: 0;
    border: none;
    box-shadow: none;
}

.header-mobile .dropdown-menu li {
    border: none;
}

.header-mobile .dropdown-menu a {
    padding: 12px 20px 12px 40px;
    font-weight: 400;
    font-size: 0.95em;
}

.header-mobile .dropdown[aria-expanded="false"] .dropdown-menu {
    display: none !important;
}

.header-mobile .dropdown[aria-expanded="true"] .dropdown-menu {
    display: flex !important;
}

/* Sub-menu */
.header-mobile .sub-dropdown-menu {
    position: static !important;
    background-color: #f0f0f0;
    display: flex !important;
    flex-direction: column;
    gap: 0;
}

.header-mobile .sub-dropdown[aria-expanded="false"] .sub-dropdown-menu {
    display: none !important;
}

.header-mobile .sub-dropdown[aria-expanded="true"] .sub-dropdown-menu {
    display: flex !important;
}

.header-mobile .sub-dropdown-menu a {
    padding: 12px 20px 12px 60px;
    font-weight: 400;
    font-size: 0.9em;
}

/* Esconder menu por padrão (quando header não tem classe .header-mobile) - REMOVIDO: Desktop volta ao normal */


/* 3. CONTEÃšDO PRINCIPAL (HERO SECTION) - FUNDO BRANCO SÃ“LIDO */
.home-hero {
    position: relative;
    min-height: 50vh; 
    overflow: hidden;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    background-color: white; 
    padding: 60px 0;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 5;
    pointer-events: none;
}

.home-hero.new-style {
    background-color: transparent;
    padding: 40px 0;
}

.hero-background,
.video-placeholder {
    display: none !important;
}

.hero-content-wrapper.centered-hero-content-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    gap: 0;
}

.hero-content {
    max-width: 750px;
    min-height: auto; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    background-color: transparent; 
    padding: 0; 
    border-radius: 0;
    text-align: center;
}

.hero-content h1:first-child {
    font-size: 4.0em;
    font-weight: 700;
    margin-bottom: 5px;
    color: #ffffff;
    text-align: center;
    font-family: 'Luckiest Guy', cursive;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.9), 
                 6px 6px 12px rgba(0,0,0,0.8),
                 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-content h1 + h1 {
    font-size: 3.0em;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
    text-align: center;
    font-family: 'Luckiest Guy', cursive;
    letter-spacing: 1px;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.8),
                 2px 2px 8px rgba(0,0,0,0.9),
                 -1px -1px 0px rgba(0,0,0,0.5);
}
.hero-extra-line {
    display: block;
    font-size: 1.2em;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
}
.hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    width: 100%;
}

.btn-cta-large {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: transform 0.2s, opacity 0.3s;
}

.primary-cta {
    background-color: var(--primary-color);
    color: white;
}
.primary-cta:hover {
    background-color: #c40827;
}

.secondary-cta {
    background-color: white;
    color: var(--text-dark);
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.secondary-cta:hover {
    background-color: var(--bg-light);
    color: var(--text-dark);
}


.brand-video-section {
    position: relative;
    min-height: 500px;
    /* Fundo neutro (sem banner) */
    background-color: var(--bg-white);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

@media (max-width: 768px) {
    .brand-video-section {
        min-height: 350px;
        padding: 40px 20px;
    }
}

/* garante que o placeholder fique acima do fundo neutro */
.video-placeholder-large {
    position: relative;
    z-index: 5;
}
.video-placeholder-large i {
    font-size: 4em;
    display: block;
    margin-bottom: 10px;
    color: var(--primary-color);
}
.brand-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}


/* 4. SEÃ‡ÃƒO DE DESTAQUE (ColeÃ§Ãµes) - FUNDO BRANCO SÃ“LIDO (MANTIDO ORIGINAL) */
.featured-sections {
    padding: 40px 20px;
    background-color: white; 
    text-align: center;
    position: relative;
}

/* Fullwidth override for collections section */
.collections-fullwidth { padding: 30px 20px 10px 20px; width: 100%; max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.featured-sections.collections-fullwidth {
    padding-bottom: 0;
}

.container-fullwidth { width: 100%; max-width: 100% !important;
    padding-left: 20px;
    padding-right: 20px;
}

.featured-sections h2 {
    font-size: 2em;
    color: var(--text-dark);
    margin-bottom: 20px;
}
.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .collection-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.collections-fullwidth .collection-grid {
    grid-template-columns: repeat(3, 1fr);
    column-gap: var(--collections-grid-column-gap-desktop);
    row-gap: var(--collections-grid-row-gap-desktop);
    padding: 0 var(--collections-grid-padding-x-desktop);
}

@media (max-width: 1024px) {
    .collections-fullwidth .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: var(--collections-grid-column-gap-tablet);
        row-gap: var(--collections-grid-row-gap-tablet);
        padding: 0 var(--collections-grid-padding-x-tablet);
    }
}

@media (max-width: 768px) {
    .collections-fullwidth .collection-grid {
        grid-template-columns: 1fr;
        row-gap: var(--collections-grid-row-gap-mobile);
        padding: 0 var(--collections-grid-padding-x-mobile);
    }
}
.collection-item {
    flex: 1;
    min-width: 250px;
    padding: 0;
    border-radius: 0;
    background-color: transparent;
    border: none;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.collection-carousel-container {
    width: 100%;
    max-width: 100%;
    margin-bottom: 25px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    position: relative;
}
.collection-item:hover {
    box-shadow: none;
    transform: none;
}
.collection-item h3 {
    margin-bottom: 8px;
    margin-top: 8px;
    color: var(--primary-color);
    font-size: 1.1em;
}

.collection-item a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border: none;
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 0.9em;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 2px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
    white-space: nowrap;
}

.collection-item a:hover {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 14px 28px rgba(247, 10, 49, 0.28);
}

/* Selos de segurança no rodapé */
.site-seals {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10;
    align-items: center;
    width: 100%;
    margin-top: -55px;
    justify-content: flex-start;
}

.site-seal {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-size: 1em;
    color: #fff;
    line-height: 1.2;
    white-space: nowrap;
    flex: 0 0 auto;
}

.site-seal img {
    max-width: 130px;
    width: 130px;
    height: auto;
    display: block;
    flex-shrink: 0;
}

.site-seal img[src*="ICone_Criptografia"],
.site-seal img[src*="Icone_Criptografia"] {
    max-width: 140px;
    width: 140px;
}

.site-seal img[src*="ICone_LGPD"],
.site-seal img[src*="Icone_LGPD"] {
    max-width: 260px;
    width: 260px;
}

.site-seal img[src*="Icone_Ambiente_Seguro"],
.site-seal img[src*="ICone_Ambiente_Seguro"] {
    max-width: 200px;
    width: 200px;
}

.site-seal span {
    display: none;
}

@media (max-width: 480px) {
    .site-seals {
        justify-content: flex-start;
        gap: 12px;
    }

    .site-seal {
        font-size: 0.95em;
        flex: 0 0 auto;
    }

    .site-seal img {
        max-width: 119px;
        width: 119px;
    }

    .icones-pagamento {
        gap: 10px;
    }

    .icone-pagamento {
        height: 32px;
    }
}

@media (max-width: 768px) {
    .site-seals {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        margin-top: 0;
    }

    .site-seal {
        flex: 0 0 auto;
    }
}

/* ==========================
   SeÃ§Ã£o: ColeÃ§Ã£o de Natal
   ========================== */
.christmas-collection {
    padding: 40px 20px;
    background-color: var(--bg-white);
    text-align: left;
}
.christmas-collection h2 {
    font-size: 1.8em;
    margin: 0 0 8px 0;
    color: var(--text-dark);
}
.collection-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.collection-text p {
    margin: 6px 0 0 0;
    color: var(--text-light);
}
.link-see-all {
    display: inline-block;
    padding: 8px 14px;
    border: none;
    color: var(--primary-color);
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    background: #fff;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}
.link-see-all:hover { background-color: var(--primary-color); color: #fff; box-shadow: 0 14px 28px rgba(247, 10, 49, 0.22); }

.christmas-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.product-card {
    flex: 1 1 calc(33.333% - 20px);
    max-width: 360px;
    min-width: 240px;
    background: var(--bg-white);
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 14px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.04);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    display: flex;
    flex-direction: column;
    gap: 6px; flex-wrap: nowrap;
}
.product-thumb {
    width: 100%;
    height: 160px;
    background-color: var(--bg-light);
    border-radius: 6px;
    border: 1px solid #e9e9e9;
}
.product-label {
    display: inline-block;
    font-size: 0.78em;
    color: var(--primary-color);
    font-weight: 700;
}
.product-title {
    margin: 0;
    font-size: 1.05em;
    color: var(--text-dark);
}
.product-price {
    margin-top: auto;
    font-weight: 700;
    color: var(--text-dark);
}
.product-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

@media (max-width: 1024px) {
    .product-card { flex: 1 1 calc(50% - 20px); }
}
@media (max-width: 768px) {
    .product-card { flex: 1 1 100%; max-width: 100%; }
    .collection-top { align-items: flex-start; }
}

/* Estilos especÃ­ficos para a pÃ¡gina natal.html (produtos e neve) */
.colecao-natal-main { padding: 40px 20px 80px; background: transparent; }
.produtos-natal-grid { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }
.produto-card {
    flex: 1 1 calc(33.333% - 20px);
    max-width: 520px; /* maior largura para imagem dominante */
    min-width: 300px;
    background: #ffffff; /* fundo branco */
    border: none; /* sem bordas grossas */
    border-radius: 12px;
    padding: 12px; /* padding reduzido para maximizar Ã¡rea de imagem */
    box-shadow: 0 14px 30px rgba(0,0,0,0.06); /* sombra sutil */
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.produto-thumb {
    width: 100%;
    height: 380px; /* imagem maior e dominante */
    background: var(--bg-light);
    border-radius:10px;
    border: none;
    display: block;
}

.produto-label {
    display: inline-block;
    font-size: .78em;
    color: var(--primary-color);
    font-weight:700;
}

.produto-nome {
    margin: 6px 0 4px 0;
    font-size: 1.3rem; /* nome dominante */
    color: var(--text-dark);
    line-height:1.1;
    font-weight: 800; /* negrito */
}

.produto-rating {
    display:flex;
    align-items:center;
    gap:8px;
    margin: 4px 0 8px 0; /* alinhada logo abaixo do nome, espaÃ§o mÃ­nimo */
}
.produto-rating .stars { display:inline-flex; gap:6px }
.produto-rating .stars .fa-star { color: #f5c518; font-size: 1rem }
.produto-rating .reviews { color: #7a7a7a; font-size:0.9em }

.produto-preco {
    margin-top: 8px;
    font-weight:600;
    color: #5a5a5a; /* cinza escuro menos contrastante */
    font-size: 0.98rem;
}

.produto-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 28px 70px rgba(0,0,0,0.10) }

/* Snow canvas */
#snow-canvas, #snow-canvas { position: fixed; left: 0; top: 0; width: 100%; height: 100vh; max-width: 100%; pointer-events: none; z-index: 1000; }

/* === PÃ¡gina Natal: fundo e hero banner === */
body.natal-page {
    background-color: #FBF8F0; /* bege claro */
}

.natal-hero-banner {
    padding: 80px 40px; /* espaÃ§amento amplo nas laterais e vertical */
    background: transparent;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.natal-hero-inner {
    display: flex;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .natal-hero-inner {
        flex-direction: column;
        gap: 24px;
    }
}
.natal-hero-left {
    flex: 0 0 55%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.natal-hero-image {
    width: 100%;
    height: 520px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.06);
    background: #fff;
    object-fit: cover;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}
.natal-hero-right {
    flex: 0 0 40%;
}
.natal-hero-right h1 {
    font-size: 2.8em;
    margin: 0 0 12px 0;
    color: var(--text-dark);
    font-weight: 900; /* impactante */
    line-height: 1.03;
    letter-spacing: -0.5px;
}
.natal-hero-title { font-family: 'Poppins', 'Segoe UI', Arial, sans-serif; }
.natal-hero-right p { margin-bottom: 22px; color: var(--text-dark); font-size: 1.05em }

.countdown { display: flex; gap: 14px; align-items: center; flex-wrap: wrap }
.countdown-item {
    background: #fff; /* fundo branco para destaque */
    border: 1px solid #e6e6e6; /* borda sutil cinza */
    padding: 14px 16px; /* padding generoso */
    border-radius: 10px;
    min-width: 84px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}
.countdown-value { font-size: 1.8em; font-weight: 900; color: var(--text-dark); }
.countdown-label { font-size: 0.72em; text-transform: uppercase; color: var(--text-light); margin-top: 6px; }

@media (max-width: 768px) {
    .natal-hero-inner { flex-direction: column; gap: 18px; }
    .natal-hero-left, .natal-hero-right { flex: 1 1 100%; }
    .countdown { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 1024px) { .produto-card { flex: 1 1 calc(50% - 20px); max-width: 520px; } .produto-thumb { height: 280px } }
@media (max-width: 768px) { .produto-card { flex: 1 1 100%; max-width:100%; } .produto-thumb { height: 220px } }

/* 5. SEÃ‡ÃƒO DE BENEFÃ�CIOS (BENEFITS) - FUNDO ESCURO SÃ“LIDO STREETWEAR */
.benefits-section {
    padding: 10px 40px;
    background-color: var(--bg-white);
    background-image: none;
    text-align: center;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 15px 20px;
    }
}

.benefits-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.benefit-item {
    background-color: white;
    padding: 24px 14px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0,0,0,0.06);
    flex: 1;
    min-width: 180px;
    transition: box-shadow 0.22s ease-out, transform 0.22s ease-out;
}

@media (max-width: 768px) {
    .benefits-grid {
        flex-direction: column;
        gap: 15px;
    }
    
    .benefit-item {
        flex: 1 1 100%;
        min-width: 100%;
    }
}

.benefit-item:hover {
    transform: translateY(-5px); 
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15); 
}

.benefit-icon {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.benefit-item h3 {
    font-size: 1.1em;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.benefit-item p {
    font-size: 0.9em;
    color: var(--text-light);
}

/* =========================================
    SEÇÃO DE INFORMATIVO DE FRETE
   ========================================= */

.shipping-info-section {
    padding: 30px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.shipping-info-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.shipping-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.shipping-header i {
    font-size: 2em;
    color: var(--primary-color);
}

.shipping-header h3 {
    font-size: 1.5em;
    color: var(--text-dark);
    margin: 0;
}

.shipping-content {
    text-align: left;
}

.shipping-intro {
    font-size: 1.05em;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
}

.shipping-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.shipping-list li {
    padding: 10px 0;
    font-size: 1em;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.shipping-list li:last-child {
    border-bottom: none;
}

.shipping-method {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1em;
    color: var(--text-dark);
    margin: 15px 0 10px 0;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
}

.shipping-method i {
    color: var(--primary-color);
}

.shipping-note {
    font-size: 0.9em;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .shipping-info-section {
        padding: 20px 15px;
    }
    
    .shipping-info-card {
        padding: 20px;
    }
    
    .shipping-header {
        flex-direction: column;
        gap: 8px;
    }
    
    .shipping-header h3 {
        font-size: 1.3em;
    }
}


/* =========================================
    SEÇÃO MARQUEE: NOVIDADES & LANÇAMENTOS
    (Faixa contínua + Texto destaque + PNGs flutuantes)
   ========================================= */

.marquee-section {
    background-color: white;
    padding: 40px 0;
    overflow: hidden;
    position: relative;
    z-index: 100;
}

/* Faixa colorida contínua - ocupar 100% da largura */
.marquee-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(
        90deg,
        #8e44ad 0%,
        #e91e63 25%,
        #ff9800 50%,
        #e91e63 75%,
        #8e44ad 100%
    );
    border-radius: 8px;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}

.marquee-container {
    max-width: 100%;
    overflow: hidden;
    background: transparent;
    box-sizing: border-box;
    position: relative;
    padding: 0;
    /* Garantir que não permita scroll */
    overflow-x: hidden;
    overflow-y: hidden;
    -webkit-overflow-scrolling: auto;
}

/* Wrapper do conteúdo animado - duplicado para loop seamless */
.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
    gap: 45px;
    align-items: center;
    position: relative;
    padding: 20px;
    z-index: 1;
    width: fit-content;
    min-width: 200%;
    /* Bloquear interação do usuário */
    touch-action: none;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Cada item do marquee contém o padrão completo */
.marquee-item {
    display: flex;
    align-items: center;
    gap: 45px;
    flex-shrink: 0;
    min-width: fit-content;
    position: relative;
    z-index: 1;
}

/* TEXTO DO MARQUEE - ELEMENTO PRINCIPAL DE DESTAQUE */
.marquee-text {
    font-size: 2.8em;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.1;
    font-family: 'Barlow Condensed', 'Russo One', sans-serif;
    position: relative;
    padding: 12px 28px;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* IMAGENS DO MARQUEE */
.marquee-image {
    height: 200px;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.12));
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    object-fit: contain;
    flex-shrink: 0;
    margin: -30px 0;
    position: relative;
    z-index: 2;
}

/* Logo com tamanho especial */
.marquee-logo {
    height: 140px;
    margin: -15px 0;
}

/* Efeito subtle no hover */
.marquee-item:hover .marquee-image {
    transform: scale(1.06);
}

/* Responsivo: tablet grande */
@media (max-width: 1024px) {
    .marquee-section {
        padding: 50px 0;
    }
    
    .marquee-container {
        padding: 0;
    }
    
    .marquee-text {
        font-size: 2.2em;
        letter-spacing: 2.5px;
        padding: 10px 22px;
    }
    
    .marquee-image {
        height: 160px;
        margin: -22px 0;
    }
    
    .marquee-logo {
        height: 150px;
        margin: -20px 0;
    }
    
    .marquee-item {
        gap: 38px;
    }
    
    .marquee-content {
        animation: marquee 44s linear infinite;
        gap: 38px;
        padding: 20px;
    }
}

/* Responsivo: tablet médio - IDÊNTICO AO DESKTOP */
@media (max-width: 768px) {
    .marquee-section {
        padding: 40px 0;
        width: 100%;
        overflow: hidden;
        overflow-x: hidden !important;
    }
    
    .marquee-container {
        padding: 0;
        width: 100%;
        overflow: hidden;
        overflow-x: hidden !important;
        touch-action: none;
    }
    
    .marquee-section::before {
        height: 80px;
        width: 100%;
    }
    
    /* MESMA velocidade do desktop - 40s FIXO */
    .marquee-content {
        animation: marquee 40s linear infinite !important;
        animation-timing-function: linear !important;
        gap: 40px;
        padding: 20px;
        will-change: transform;
        /* Bloquear interação */
        touch-action: none !important;
        pointer-events: none !important;
        user-select: none !important;
    }
    
    .marquee-item {
        gap: 40px;
        touch-action: none;
        pointer-events: none;
    }
    
    .marquee-text {
        font-size: 1.6em;
        letter-spacing: 2px;
        padding: 10px 20px;
    }
    
    .marquee-image {
        height: 140px;
        margin: -20px 0;
    }
    
    .marquee-logo {
        height: 120px;
        margin: -15px 0;
    }
}

/* Responsivo: mobile - IDÊNTICO AO DESKTOP */
@media (max-width: 480px) {
    .marquee-section {
        padding: 40px 0;
        width: 100%;
        overflow: hidden;
        overflow-x: hidden !important;
    }
    
    .marquee-section::before {
        width: 100%;
        height: 70px;
    }
    
    .marquee-container {
        padding: 0;
        width: 100%;
        overflow: hidden;
        overflow-x: hidden !important;
        touch-action: none;
    }
    
    /* MESMA velocidade do desktop - 40s FIXO */
    .marquee-content {
        animation: marquee 40s linear infinite !important;
        animation-timing-function: linear !important;
        gap: 35px;
        padding: 18px;
        will-change: transform;
        /* Bloquear interação */
        touch-action: none !important;
        pointer-events: none !important;
        user-select: none !important;
    }
    
    .marquee-item {
        gap: 35px;
        touch-action: none;
        pointer-events: none;
    }
    
    .marquee-text {
        font-size: 1.3em;
        letter-spacing: 1.5px;
        padding: 8px 14px;
    }
    
    .marquee-image {
        height: 110px;
        margin: -12px 0;
    }
    
    .marquee-logo {
        height: 100px;
        margin: -10px 0;
    }
    
    .marquee-logo {
        height: 95px;
        margin: -10px 0;
    }
    
    .marquee-content {
        animation: marquee 35s linear infinite;
        gap: 25px;
        padding: 12px;
    }
    
    .marquee-item {
        gap: 25px;
    }
}


/* =========================================
    6. CARROSSEL DE DEPOIMENTOS - LAYOUT CLARO + ESTILO STREETWEAR
   ========================================= */

.testimonials-section {
    padding: 30px 20px;
    background-color: var(--bg-white);
    background-image: none;
    text-align: center;
    color: var(--text-dark);
}

.testimonials-section h2 {
    font-size: 2em;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.testimonials-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.carousel-container {
    overflow: hidden; /* esconde linhas extras abaixo da primeira */
    width: 100%;
    position: relative;
    max-height: var(--testimonial-row-height); /* mostra apenas a primeira linha de depoimentos */
}

.carousel-track {
    display: flex;
    flex-wrap: nowrap; /* forÃ§a os cards em Ãºnica linha horizontal para que o overflow esconda o restante */
    gap: 20px;
    transition: transform 0.35s ease-in-out;
    width: auto;
}

.testimonial-card {
    flex: 0 0 calc(50% - 10px);
    box-sizing: border-box;
    padding: 16px;
    background-color: var(--bg-white);
    border-radius: 8px;
    border: 1.5px solid #000;
    box-shadow: none;
    text-align: left;
    display: none;
    opacity: 0;
    min-height: 120px;
    transition: opacity 0.3s ease;
}

.testimonial-card.active {
    display: flex;
    flex-direction: column;
    opacity: 1;
}

.testimonial-stars {
    color: gold;
    margin-bottom: 8px;
}

.testimonial-stars i {
    font-size: 1.1em;
}

.testimonial-text {
    font-size: 0.98em;
    color: var(--text-dark);
    line-height: 1.35;
    margin-bottom: 10px;
    font-style: normal;
    font-weight: 700; /* mais grossa e arrojada */
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    min-height: 60px;
}

.testimonial-author-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.author-photo {
    width: 60px;
    height: 60px;
    background-color: #eee;
    border-radius: 50%;
    border: none;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
    overflow: hidden;
}

.author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.testimonial-author strong {
    display: block;
    font-size: 0.98em;
    color: var(--text-dark);
    text-align: left;
    text-transform: uppercase; /* ALL CAPS */
    font-weight: 800;
}

.testimonial-author span {
    font-size: 0.85em;
    color: var(--text-light);
    text-align: left;
}

.carousel-btn {
    background: var(--primary-color);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: background-color 0.2s;
}

.carousel-btn:hover {
    background-color: #c40827;
}

.carousel-btn.prev {
    left: -60px;
}

.carousel-btn.next {
    right: -60px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 6px; flex-wrap: nowrap;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.carousel-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}


/* 7. RODAPÃ‰ (FOOTER) - FUNDO ESCURO ORIGINAL */
.main-footer {
    background-color: var(--secondary-color); 
    color: white; 
    padding: 32px 40px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 8px;
}

.footer-column {
    width: 20%; 
    min-width: 150px;
    margin-bottom: 8px;
}

/* Estilo para Ã­cones de formas de pagamento no rodapÃ© */
.payment-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
    margin: 6px 0 12px 0;
}
.payment-icons i {
    font-size: 1.25rem; /* tamanho legÃ­vel */
    color: #333; /* cor neutra */
    display: inline-block;
    vertical-align: middle;
}
.payment-icons i[title] {
    opacity: 0.95;
}

/* Imagens locais de formas de pagamento (substitui Ã­cones Font Awesome) */
.icones-pagamento {
    display: flex;
    align-items: center;
    gap: 6px; flex-wrap: nowrap;
}
.icone-pagamento {
    height: 24px; /* Define a altura padrÃ£o para 25 pixels */
    width: auto;  /* MantÃ©m a proporÃ§Ã£o da imagem */
     /* EspaÃ§o entre Ã­cones */
    vertical-align: middle;
    display: inline-block;
}

.footer-column h4 {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: var(--primary-color); 
}

.footer-column p,
.footer-column li a {
    font-size: 0.9em;
    color: #e0e0e0;
    line-height: 1.6;
    opacity: 1;
}

.footer-column p a {
    color: #e0e0e0;
    opacity: 1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column p a:hover {
    color: var(--primary-color);
}

.contact-info, .social-links {
    margin-top: 10px;
}

.contact-info i, .social-links i {
    color: var(--primary-color);
    
    opacity: 1;
}

.footer-info-base {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 12px;
    text-align: center;
}

.brand-story {
    font-size: 0.9em;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #ccc;
}

.copyright {
    font-size: 0.8em;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px; flex-wrap: nowrap;
}

.footer-logo-w {
    font-size: 20px;
    font-weight: 900;
    color: var(--primary-color);
}

/* 8. Ã�CONE FLUTUANTE DO WHATSAPP */
.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 25px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}


/* 9. RESPONSIVIDADE (MEDIA QUERIES) - AJUSTADO */
@media (max-width: 1024px) { .main-header { padding: 8px 12px;
        height: 72px; /* Ajustado proporcionalmente */
    }
    
    .search-box input {
        width: 120px;
    }
    
    /* Logo responsivo em tablet */
    .site-logo {
        height: 56px; /* Um pouco menor que desktop (64px) */
        transform: translateY(-3px); /* Ajusta overlap */
    }
    
    .logo {
        margin-right: 25px; /* Proporcional ao desktop */
        margin-left: 0;
        padding-right: 15px;
    }
    
    .hero-content h1 {
        font-size: 2.5em;
    }
    .hero-content h1 + h1 {
        font-size: 2em;
    }
    .collection-grid {
        flex-wrap: wrap; 
        justify-content: center;
    }
    .collection-item {
        min-width: 45%; 
    }
    
    .footer-column {
        width: 45%;
    }

    .carousel-btn.prev { left: 0px; }
    .carousel-btn.next { right: 0px; }
    .testimonials-carousel { padding: 0 40px; }
}

@media (max-width: 768px) {
    /* Regras globais para prevenir overflow horizontal */
    * {
        max-width: 100%;
    }
    
    html, body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    body > * {
        max-width: 100vw;
    }
    
    section, div, article, main {
        overflow-x: hidden;
    }
    
    /* MOBILE HEADER - Menu Hamburger branco limpo */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background-color: #ffffff;
        background: #ffffff;
        z-index: 10003;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        overflow-x: hidden;
        box-shadow: -4px 0 20px rgba(0,0,0,0.15);
        padding-top: 60px;
        display: block !important;
        will-change: transform;
        pointer-events: auto;
    }
    
    .main-nav.mobile-menu-open {
        right: 0;
    }
    
    /* Botão fechar dentro do menu - ÚNICO */
    .mobile-menu-close {
        display: flex;
        position: absolute;
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        font-size: 26px;
        color: var(--text-dark);
        cursor: pointer;
        z-index: 10;
        align-items: center;
        justify-content: center;
        opacity: 1;
        transition: opacity 0.2s;
    }
    
    .mobile-menu-close:hover {
        opacity: 0.7;
    }
    
    /* Overlay escuro quando menu aberto */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: transparent;
        z-index: 10001;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease-in-out;
    }
    
    body.mobile-menu-active::before {
        opacity: 0;
        pointer-events: none;
    }
    
    body.mobile-menu-active {
        overflow: hidden;
    }
    
    /* Menu items no mobile */
    .main-nav > ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
    }
    
    .main-nav > ul > li {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .main-nav > ul > li > a,
    .main-nav .dropdown-toggle {
        display: block;
        width: 100%;
        padding: 16px 20px;
        text-align: left;
        border: none;
        border-radius: 0;
        background: none;
        font-size: 1em;
        color: var(--text-dark);
        transition: background-color 0.2s;
    }
    
    .main-nav > ul > li > a:hover,
    .main-nav .dropdown-toggle:hover {
        background: #f9f9f9;
    }
    
    /* Dropdowns no mobile */
    .dropdown-menu {
        position: static !important;
        display: none;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
        box-shadow: none;
        border: none;
        background: #f9f9f9;
        padding: 0;
    }
    
    .dropdown[aria-expanded="true"] .dropdown-menu {
        display: block !important;
    }
    
    .dropdown-menu li {
        border-bottom: 1px solid #e5e5e5;
    }
    
    .dropdown-menu li:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu a {
        padding: 14px 20px 14px 40px;
        display: block;
        font-size: 0.95em;
    }
    
    /* Sub-dropdowns */
    .sub-dropdown-menu {
        position: static !important;
        display: none;
        background: #f0f0f0;
    }
    
    .sub-dropdown > .btn[aria-expanded="true"] + .sub-dropdown-menu {
        display: block !important;
    }
    
    .sub-dropdown-menu a {
        padding: 12px 20px 12px 60px;
        font-size: 0.9em;
    }
    
    /* Esconder elementos do desktop */
    .search-box, 
    .btn-account, 
    .btn-help, 
    .btn--primary {
        display: none !important;
    }
    
    /* Botão hamburger */
    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 0;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: var(--text-dark);
        flex-shrink: 0;
        margin-left: 12px;
        z-index: 10004;
        position: relative;
    }
    
    .menu-toggle i {
        transition: transform 0.3s;
    }
    
    body.mobile-menu-active .menu-toggle {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    
    /* Carrinho mantém estilo original - sem alterações forçadas */
    .cart-icon-link {
        display: flex !important;
    }
    
    /* Logo responsivo em mobile */
    .site-logo,
    .site-logo img,
    .main-header .logo img,
    .main-header .site-logo img {
        height: 48px; /* Reduzido para mobile mas ainda visível */
        transform: translateY(0); /* Remove transform para alinhamento natural */
    }
    
    .main-header {
        height: 56px;
        padding: 8px 16px;
        align-items: center;
        gap: 6px;
        flex-wrap: nowrap;
        position: relative;
        z-index: 10005;
        background: white;
    }
    
    .main-header .bar.container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 8px;
    }
    
    .logo {
        margin-right: 0;
        margin-left: 0;
        padding-right: 0;
        display: flex;
        align-items: center;
        height: 100%;
        flex-shrink: 0;
    }
    
    .header-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: auto;
        flex-shrink: 0;
    }
    
    /* HERO BANNER - Ajuste para ocupar a primeira dobra */
    .home-hero {
        min-height: calc(100vh - 56px);
        min-height: calc(100svh - 56px);
        padding: 0;
        width: 100%;
        margin: 0;
        overflow: hidden;
        position: relative;
    }
    
    .home-hero.new-style {
        min-height: calc(100vh - 56px);
        min-height: calc(100svh - 56px);
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        overflow: hidden;
    }
    
    /* Banner de fundo no mobile */
    .graffiti-banner {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        z-index: 1;
    }

    .graffiti-banner--desktop {
        display: none !important;
    }

    .graffiti-banner--mobile {
        display: block !important;
    }
    
    .hero-content-wrapper {
        flex-direction: column; 
        width: 100%;
        padding: 20px 16px;
        position: relative;
        z-index: 10;
    }

    .hero-content {
        max-width: 100%;
        width: 100%;
        margin-bottom: 0;
        padding: 0;
        position: relative;
        z-index: 10;
    }
    
    .hero-extra-line,
    .hero-subtitle {
        font-size: 0.95em;
        padding: 8px 14px;
        margin-bottom: 12px;
    }
    
    .hero-content h1:first-child {
        font-size: 1.8em !important;
        margin-bottom: 8px;
        line-height: 1.1;
    }
    
    .hero-content h1 + h1 {
        font-size: 1.4em !important;
        margin-bottom: 15px;
        line-height: 1.1;
    }
    
    .cta-buttons {
        flex-direction: column; 
        gap: 12px;
        width: 100%;
    }
    
    .btn-cta-large {
        width: 100%; 
        padding: 15px 20px;
        font-size: 1em;
    }

    .brand-video-section {
        min-height: 300px;
        padding: 40px 20px;
    }
    .video-placeholder-large {
        height: 200px;
        border-width: 3px;
    }
    .video-placeholder-large i {
        font-size: 3em;
    }

    .featured-sections {
        padding: 40px 16px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .collections-fullwidth {
        padding: 30px 16px 10px 16px;
        width: 100%;
        max-width: 100%;
    }
    
    .container-fullwidth {
        width: 100%;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .collection-item {
        min-width: 100%;
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
        padding: 0;
        overflow: hidden;
    }
    
    .collection-item-carousel {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    /* Ajustar placeholder de imagens no mobile */
    .collection-image-placeholder {
        width: 100%;
        height: 280px !important; /* Reduzir altura no mobile */
        max-width: 100%;
    }
    
    /* Ajustar carrossel mini no mobile */
    [data-collection] {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 280px;
        padding: 15px 0;
    }
    
    .collection-mini-carousel-wrapper {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    
    .collection-mini-carousel-main-img {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 280px;
        object-fit: contain;
    }
    
    .collection-grid {
        width: 100%;
        max-width: 100%;
        padding: 0;
        gap: 20px;
    }
    
    .main-footer {
        padding: 40px 20px 20px;
    }
    .footer-columns {
        flex-direction: column;
        align-items: center;
    }
    .footer-column {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
    .footer-column h4 {
        text-align: center;
    }
    .icones-pagamento {
        justify-content: center;
    }
    .contact-info, .social-links {
        text-align: center;
        margin: 10px 0;
        justify-content: center;
    }
    
    .whatsapp-float {
        width: 62px; /* Aumentado de 50px */
        height: 62px; /* Aumentado de 50px */
        font-size: 30px; /* Aumentado de 25px */
        bottom: 30px; /* Ajustado de 20px para melhor posição */
        right: 20px;
        border-radius: 50px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow melhorado */
    }

    /* Carrosséis de coleções */
    [data-collection] {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .collection-mini-carousel-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .collection-carousel-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    /* CARROSSEL DE DEPOIMENTOS - Setas visíveis */
    .testimonials-section { 
        padding: 40px 8px;
        width: 100%;
        overflow: visible;
    }
    
    .testimonials-carousel { 
        padding: 0 30px;
        width: 100%;
        position: relative;
    }
    
    /* Setas menores e bem posicionadas */
    .carousel-btn { 
        width: 32px;
        height: 32px;
        font-size: 0.9em;
        background: var(--primary-color);
        color: white;
        border-radius: 50%;
        border: none;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        z-index: 10;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    .carousel-btn.prev { 
        left: 0;
    }
    
    .carousel-btn.next { 
        right: 0;
    }
    
    /* Carousel container com mais espaço */
    .carousel-container {
        padding: 0 8px;
        width: 100%;
    }
    
    .testimonial-card {
        padding: 16px;
    }
    
    /* Depoimentos em coluna única em telas pequenas */
    .carousel-track .testimonial-card { 
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    /* Dots centralizados */
    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #ddd;
        border: none;
        cursor: pointer;
        transition: background 0.3s;
    }
    
    .dot.active {
        background: var(--primary-color);
        width: 12px;
        height: 12px;
    }

    /* FAQ responsivo */
    .faq-section { padding: 60px 20px; }
    .faq-section h2 { font-size: 24px; margin-bottom: 30px; }
    .faq-header { padding: 18px; }
    .faq-header h3 { font-size: 15px; }
    .faq-header i { font-size: 1em; margin-left: 12px; }
    .faq-content { padding: 0 18px 18px; }
    
    /* Botão Suporte - OBRIGATÓRIO aparecer no mobile */
    .faq-support { 
        display: block !important;
        padding: 24px 16px;
        text-align: center;
        margin-top: 40px;
    }
    
    .faq-support-text {
        display: block !important;
        margin-bottom: 16px;
        font-size: 15px;
        color: #555;
    }
    
    .faq-support-btn,
    .faq-support .btn,
    .faq-support .btn--primary {
        display: inline-block !important;
        padding: 14px 32px !important;
        min-width: 200px;
        font-size: 16px !important;
        background-color: var(--primary-color) !important;
        color: white !important;
        border: none !important;
        border-radius: 6px !important;
        text-decoration: none !important;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    
    .faq-support-btn:hover,
    .faq-support .btn:hover {
        background-color: #c40827 !important;
    }
}

/* Reduz ícones de pagamento em telas muito pequenas */
@media (max-width: 480px) {
    /* Regras globais adicionais para telas pequenas */
    html, body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    * {
        max-width: 100%;
    }
    
    .icones-pagamento { gap: 10px; }
    .icone-pagamento { height: 20px; }
    
    /* Extra-small screen optimizations */
    .main-header {
        padding: 6px 10px;
        height: 48px;
        gap: 8px;
    }
    
    .site-logo {
        height: 36px !important;
    }
    
    .logo {
        margin-right: auto;
        margin-left: 0;
        padding-right: 0;
        flex-shrink: 0;
    }
    
    .menu-toggle {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    
    .cart-icon-link {
        width: 36px !important;
        height: 36px !important;
        font-size: 18px !important;
        margin-right: 6px !important;
    }
    
    .cart-badge {
        width: 16px !important;
        height: 16px !important;
        font-size: 9px !important;
    }
    
    .featured-sections {
        padding: 30px 12px;
        width: 100%;
        max-width: 100%;
    }
    
    .collections-fullwidth {
        padding: 25px 12px 10px 12px;
        width: 100%;
        max-width: 100%;
    }
    
    .container-fullwidth {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .collection-item {
        width: 100%;
        max-width: 100%;
    }
    
    .collection-image-placeholder {
        height: 250px !important; /* Menor ainda em telas pequenas */
    }
    
    [data-collection] {
        height: auto;
        min-height: 250px;
    }
    
    /* Imagens dos carrosséis */
    .collection-main-img,
    .collection-carousel-main img,
    .carousel-religiosa-img,
    .collection-mini-carousel-main-img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: 250px !important;
        object-fit: contain !important;
    }
    
    .collection-carousel-main {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .main-footer {
        padding: 20px 12px 20px;
    }
    
    .hero-content h1,
    .hero-content h1 + h1 {
        font-size: 1.4em;
        line-height: 1.2;
    }
    
    .hero-extra-line,
    .hero-subtitle {
        font-size: 0.85em;
        padding: 5px 10px;
    }
    
    .featured-sections h2 {
        font-size: 1.5em;
        margin-bottom: 20px;
    }
    
    .whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 26px;
        bottom: 24px;
        right: 16px;
    }
}

/* Extra-small screens (320px - 360px) */
@media (max-width: 360px) {
    .main-header {
        padding: 4px 8px;
        height: 44px;
    }
    
    .site-logo {
        height: 32px;
    }
    
    .cart-icon-link {
        width: 32px !important;
        height: 32px !important;
        font-size: 16px !important;
    }
    
    .menu-toggle {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    
    .hero-content h1:first-child {
        font-size: 1.5em !important;
    }
    
    .hero-content h1 + h1 {
        font-size: 1.2em !important;
    }
    
    .marquee-text {
        font-size: 1.1em;
    }
    
    .marquee-image {
        height: 90px;
    }
    
    /* Marquee 40s mesmo em 320px */
    .marquee-content {
        animation: marquee 40s linear infinite !important;
        touch-action: none !important;
    }
    
    /* Suporte sempre visível */
    .faq-support {
        display: block !important;
        padding: 20px 12px;
    }
    
    .faq-support-btn {
        display: inline-block !important;
        padding: 12px 24px !important;
        min-width: 180px;
    }
}

/* iPhone SE e similares (375px) */
@media (min-width: 361px) and (max-width: 390px) {
    .home-hero.new-style {
        min-height: 380px;
        max-height: 480px;
    }
    
    .testimonials-carousel {
        padding: 0 25px;
    }
    
    /* Garantir marquee funciona em 375px */
    .marquee-content {
        animation: marquee 40s linear infinite !important;
    }
    
    /* Botão suporte visível */
    .faq-support {
        display: block !important;
    }
}

/* iPhones modernos (390px - 428px) */
@media (min-width: 391px) and (max-width: 430px) {
    .home-hero.new-style {
        min-height: 420px;
        max-height: 520px;
    }
    
    .marquee-text {
        font-size: 1.5em;
    }
    
    /* Marquee 40s em todas telas */
    .marquee-content {
        animation: marquee 40s linear infinite !important;
        touch-action: none !important;
    }
    
    /* Suporte visível */
    .faq-support,
    .faq-support-btn {
        display: block !important;
    }
}

/* Tablets pequenos (600px - 767px) */
@media (min-width: 600px) and (max-width: 767px) {
    .home-hero.new-style {
        min-height: 450px;
        max-height: 550px;
    }
    
    .testimonials-carousel {
        padding: 0 40px;
    }
    
    .carousel-track .testimonial-card {
        flex: 0 0 48%;
    }
    
    .marquee-text {
        font-size: 1.8em;
    }
    
    .marquee-image {
        height: 150px;
    }
}

/* ============================
    10. Aliases de compatibilidade - MANTIDO ORIGINAL
   ============================ */

/* Header / aÃ§Ãµes */
.actions { display: flex; align-items: center; gap: 20px; }
.btn { font-size: 0.95em; }
.btn--primary { background: var(--primary-color); color: #fff; padding: 10px 18px; border-radius: 5px; font-weight: 700; border: none; cursor: pointer; }
.btn--primary:hover { background: #c40827; }
.btn--ghost { background: #fff; color: var(--text-dark); padding: 10px 16px; border-radius: 20px; border: 1px solid #ddd; }

/* Hero */
.hero-bg { display: none; }
.hero-wrap { position: relative; z-index: 5; display: flex; align-items: center; justify-content: center; gap: 0; width: 90%; max-width: 1200px; margin: 0 auto; padding: 0; flex-direction: column; }
.hero-card { max-width: 750px; min-height: auto; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--text-dark); background: transparent; padding: 0; border-radius: 0; }
.hero-card h1:first-child { font-size: 2.8em; font-weight: 700; margin-bottom: 5px; text-align: center; color: var(--text-dark); }
.hero-card h1 + h1 { font-size: 2.2em; font-weight: 700; margin-bottom: 25px; text-align: center; color: var(--text-dark); }
.hero-extra { display: block; font-size: 1.2em; margin-bottom: 10px; color: var(--text-dark); }
.hero-sub { font-size: 1.2em; margin-bottom: 25px; color: var(--text-light); }

.cta-row { display: flex; gap: 15px; justify-content: center; width: 100%; }
.cta { display: inline-block; padding: 15px 30px; border-radius: 8px; font-size: 1.1em; font-weight: 700; transition: transform 0.2s, opacity 0.3s; }
.cta--primary { background: var(--primary-color); color: #fff; }
.cta--primary:hover { background: #c40827; }
.cta--ghost { background: #fff; color: var(--text-dark); border: 2px solid var(--text-dark); }
.cta--ghost:hover { background: var(--bg-light); color: var(--text-dark); }

.device { display: none; }

/* SeÃ§Ãµes */
.featured { padding: 40px 20px; background: #fff; text-align: center; }
.featured h2 { font-size: 2em; color: var(--text-dark); margin-bottom: 40px; }
.grid-3 { display: flex; justify-content: space-around; gap: 30px; max-width: 1200px; margin: 0 auto; }
.card { flex: 1; min-width: 250px; padding: 20px; border-radius: 10px; border: 1px solid #ddd; transition: box-shadow 0.3s; }
.card:hover { box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08); }
.thumb { width: 100%; height: 200px; background: var(--bg-light); border-radius: 8px; margin-bottom: 15px; border: 1px dashed #ccc; }

.benefits { padding: 20px 40px; background: var(--bg-light); text-align: center; }
.benefits .benefits-grid { display: flex; justify-content: space-around; gap: 20px; max-width: 1200px; margin: 0 auto; }
.benefit { background: #fff; padding: 30px 15px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); flex: 1; min-width: 200px; }
.benefit i { font-size: 2.5em; color: var(--primary-color); margin-bottom: 10px; }
.benefit h3 { font-size: 1.1em; color: var(--text-dark); margin-bottom: 5px; }
.benefit p { font-size: 0.9em; color: var(--text-light); }

/* Footer */
.footer { background: var(--secondary-color); color: white; padding: 40px 40px 20px; }
.footer-cols { display: flex; justify-content: space-between; flex-wrap: wrap; max-width: 1200px; margin: 0 auto 30px; }
.footer-cols .contact { margin-top: 10px; }
.footer-cols .social { margin-top: 10px; }
.footer-base { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 20px; text-align: center; }

/* WhatsApp */
.wa-fab { position: fixed; width: 50px; height: 50px; bottom: 20px; right: 20px; background: #25d366; color: #fff; border-radius: 50px; display: flex; align-items: center; justify-content: center; font-size: 25px; box-shadow: 2px 2px 3px #999; z-index: 1000; transition: transform 0.3s; }
.wa-fab:hover { transform: scale(1.1); }

/* Container */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }


@media (max-width: 768px) {
    .main-header {
        padding: 8px 14px;
        height: 56px;
        align-items: center;
        flex-wrap: nowrap;
    }
    .main-header .bar.container {
        display: flex;
        align-items: center;
        gap: 0;
        flex-wrap: nowrap;
    }
    .logo {
        margin-right: 12px;
        padding-right: 0;
    }
    .site-logo {
        height: 42px;
    }
    .main-nav {
        display: none;
    }
    .main-nav ul {
        flex-wrap: nowrap;
        gap: 14px;
    }
    .menu-toggle { display: inline-flex !important; }
    .featured-sections {
        padding: 40px 16px;
    }
    .main-footer {
        padding: 30px 16px 20px;
    }
    .collection-item {
        padding: 0 8px;
    }
    .search-box {
        display: none;
    }
    .header-actions {
        gap: 8px;
        margin-left: auto;
    }
}

/* Ajuste fino de espaÃ§amento entre selects/botÃµes da barra */
.main-header .actions,
.main-header .controls,
.main-header .cta-row {
    display: inline-flex;
    gap: 6px; flex-wrap: nowrap;
    align-items: center;
}


/* Foco: sÃ³ exibir quando for realmente via teclado (focus-visible) */
.main-header a,
.main-header button {
    outline: none;
}
.main-header a:focus-visible,
.main-header button:focus-visible,
.search-box input:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Inputs/selects do header nÃ£o ficam "ativos" sem interaÃ§Ã£o */
.main-header select:focus,
.main-header input[type="text"]:focus,
.main-header button:focus {
    box-shadow: none;
}

/* Hover apenas em dispositivos com ponteiro fino e hover real */
@media (hover: hover) and (pointer: fine) {
    .dropdown-menu a:hover {
        background-color: var(--bg-light);
        color: var(--primary-color);
    }
}

/* Zera qualquer sombra/outline em controles do header */
.main-header select:focus,
.main-header input[type="text"]:focus,
.main-header button:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Evita "seleÃ§Ã£o" residual em itens ativos ao clicar */
.main-header a:focus-visible,
.main-header button:focus-visible,
.search-box input:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Override final do dropdown no mobile para evitar conflito com regras desktop */
@media (max-width: 768px) {
    .main-header .main-nav .dropdown-menu,
    .main-header .main-nav .sub-dropdown-menu {
        position: static !important;
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        transform: none !important;
        pointer-events: none !important;
        box-shadow: none !important;
        border: none !important;
    }

    .main-header .main-nav .dropdown[aria-expanded="true"] > .dropdown-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        margin-top: 4px;
    }

    .main-header .main-nav .sub-dropdown > .btn[aria-expanded="true"] + .sub-dropdown-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        margin-top: 2px;
    }

    .main-header .main-nav .dropdown-menu li,
    .main-header .main-nav .sub-dropdown-menu li {
        border-bottom: 1px solid #eaeaea;
    }

    .main-header .main-nav .dropdown-menu a {
        padding: 14px 20px 14px 40px;
    }

    .main-header .main-nav .sub-dropdown-menu a {
        padding: 12px 20px 12px 60px;
    }
}

/* NÃ£o aplicar cor de 'active' herdada em links do menu */
.main-nav a:active {
    color: inherit;
}


/* === FIX DROPDOWN: nÃ£o Ã© 'fica selecionado' apÃ³s clique, abre sÃ³ com aria-expanded === */

/* garante que o header fica acima do hero/menus */
header.main-header { position: relative; z-index: 1200; }

/* ===================================================
    DROPDOWN SYSTEM - MÃ©todo visibility + opacity (Mantido)
   =================================================== */

/* garante que o header fica acima do hero/menus */
header.main-header { 
    position: relative; 
    z-index: 1200; 
}

/* Dropdown container precisa de position relative */
.dropdown {
    position: relative;
}

/* DROPDOWN MENU - Estado padrÃ£o (fechado) */
.dropdown-menu,
header.main-header .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    padding: 4px 0;
    
    /* FORÃ‡A LAYOUT VERTICAL */
    display: flex;
    flex-direction: column;
    align-items: stretch;
    
    /* Fechado por padrÃ£o - usa visibility ao invÃ©s de display */
    visibility: hidden;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    
    transition: opacity .15s ease, transform .15s ease,
                visibility 0s linear .15s;
    z-index: 1300;
}

/* DROPDOWN MENU - Estado aberto (aria-expanded="true") */
.dropdown[aria-expanded="true"] > .dropdown-menu,
header.main-header .dropdown[aria-expanded="true"] > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    transition-delay: 0s;
}

/* Items dentro do dropdown */
.dropdown-menu li {
    list-style: none;
    display: block; 
    width: 100%;
    margin: 0;               
    padding: 0;               
}

.dropdown-menu a,
header.main-header .dropdown-menu a {
    display: block;           
    width: 100%;              
    white-space: nowrap;
    color: var(--text-dark);
    background: transparent;
    text-decoration: none;
    transition: background-color .2s, color .2s;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;   
    padding: 10px 16px;
    font-size: 0.9em;
    line-height: 1.6;
}

/* Hover apenas em dispositivos com mouse real */
@media (hover: hover) and (pointer: fine) {
    .dropdown-menu a:hover,
    header.main-header .dropdown-menu a:hover {
        background: var(--bg-light);
        color: var(--primary-color);
    }
}

/* Limpa estados que "grudam" apÃ³s clique */
header.main-header .dropdown-menu a:focus,
header.main-header .dropdown-menu a:active {
    background: transparent !important;
    color: var(--text-dark) !important;
    outline: none !important;
    box-shadow: none !important;
}

/* MantÃ©m acessibilidade por teclado */
header.main-header .dropdown-menu a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===================================================
    SUB-DROPDOWN (Datas Especiais - Mantido)
   =================================================== */

.sub-dropdown {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* BotÃ£o do sub-dropdown */
.sub-dropdown > .btn {
    width: 100%;
    text-align: left;
    padding: 10px 16px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
    font-size: 1em;
    transition: background-color 0.2s, color 0.2s;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
}

/* Hover no botÃ£o do sub-dropdown */
@media (hover: hover) and (pointer: fine) {
    .sub-dropdown > .btn:hover {
        background-color: var(--bg-light);
        color: var(--primary-color);
    }
}

/* SUB-DROPDOWN MENU - Estado padrÃ£o (fechado) */
.sub-dropdown-menu {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 200px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    padding: 8px 0;
    z-index: 1400;
    
    /* FORÃ‡A LAYOUT VERTICAL */
    display: flex;
    flex-direction: column;
    align-items: stretch;
    
    /* Fechado por padrÃ£o */
    visibility: hidden;
    opacity: 0;
    transform: translateX(-8px);
    pointer-events: none;
    
    transition: opacity .15s ease, transform .15s ease,
                visibility 0s linear .15s;
}

/* SUB-DROPDOWN MENU - Estado aberto */
.sub-dropdown > .btn[aria-expanded="true"] + .sub-dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    transition-delay: 0s;
}

/* Links dentro do sub-dropdown */
.sub-dropdown-menu li {
    list-style: none;
    display: block;     
    width: 100%;         
    margin: 0;             
    padding: 0;            
}

.sub-dropdown-menu li a {
    display: block;           
    width: 100%;              
    padding: 10px 16px;
    white-space: nowrap;
    color: var(--text-dark);
    background: transparent;
    text-decoration: none;
    transition: background-color .2s, color .2s;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;   
}

/* Hover nos links do sub-dropdown */
@media (hover: hover) and (pointer: fine) {
    .sub-dropdown-menu li a:hover {
        background-color: var(--bg-light);
        color: var(--primary-color);
    }
}

/* Limpa estados que "grudam" apÃ³s clique */
.sub-dropdown > .btn:focus,
.sub-dropdown > .btn:active,
.sub-dropdown-menu a:focus,
.sub-dropdown-menu a:active {
    background: transparent !important;
    color: var(--text-dark) !important;
    outline: none !important;
    box-shadow: none !important;
}

/* MantÃ©m acessibilidade por teclado */
.sub-dropdown > .btn:focus-visible,
.sub-dropdown-menu a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

#snow-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  pointer-events: none;
  z-index: 9999;
}

/* Seção Hero de Natal */
.natal-hero-banner {
  padding: 40px 0;
  background: linear-gradient(180deg, #FBF8F0 0%, #FFF 100%);
}

.natal-hero-inner {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.natal-hero-left {
  flex: 1;
  min-width: 300px;
}

.natal-hero-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.natal-hero-right {
  flex: 1;
  min-width: 300px;
}

.natal-hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #111;
  margin: 10px 0;
  line-height: 1.2;
  font-family: 'Permanent Marker', cursive;
}

.natal-hero-sub {
  font-size: 1.1rem;
  color: #666;
  margin: 20px 0;
}

/* Countdown */
.countdown {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: flex-start;
}

.countdown-item {
  text-align: center;
  background: white;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  min-width: 80px;
}

.countdown-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-color);
  display: block;
}

.countdown-label {
  font-size: 0.85rem;
  color: #666;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Grid de Produtos de Natal */
.produtos-natal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 40px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.link-card-produto {
  text-decoration: none;
  display: block;
}

.produto-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.produto-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.card-imagem-produto {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.produto-nome {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
  margin: 15px 0 10px;
}

.produto-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 10px 0;
}

.produto-rating .stars {
  color: #FFD700;
}

.produto-rating .reviews {
  color: #666;
  font-size: 0.9rem;
}

.produto-preco {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-top: 10px;
}

/* Responsivo */
@media (max-width: 768px) {
  .natal-hero-inner {
    flex-direction: column;
  }
  
  .natal-hero-title {
    font-size: 1.8rem;
  }
  
  .countdown {
    gap: 6px; flex-wrap: nowrap;
    justify-content: center;
  }
  
  .countdown-item {
    min-width: 60px;
    padding: 10px 15px;
  }
  
  .countdown-value {
    font-size: 1.5rem;
  }
  
  .produtos-natal-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}

/* ============================================
   CARRINHO DE COMPRAS - �cone no Header
   ============================================ */

.cart-icon-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: transparent;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.cart-icon-link:hover {
  background-color: var(--bg-light);
  transform: scale(1.05);
}

.cart-icon-link i {
  font-size: 1.4em;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.cart-icon-link:hover i {
  color: var(--primary-color);
}

/* Badge do Contador */
.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: var(--primary-color);
  color: white;
  font-size: 0.7em;
  font-weight: bold;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 5px;
  box-shadow: 0 2px 8px rgba(247, 10, 49, 0.3);
  animation: fadeIn 0.3s ease;
}

/* Anima��o quando o badge aparece */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scrollVerticalInfinite {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-4200px);
    }
}

/* Esconde o badge quando o carrinho est� vazio */
.cart-badge.empty {
  display: none;
}

/* Anima��o de "pulse" quando adiciona item */
@keyframes cartPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

.cart-icon-link.pulse {
  animation: cartPulse 0.4s ease;
}

/* Responsivo */
@media (max-width: 768px) {
  .cart-icon-link {
    width: 40px;
    height: 40px;
  }
  
  .cart-icon-link i {
    font-size: 1.2em;
  }
  
  .cart-badge {
    min-width: 18px;
    height: 18px;
    font-size: 0.65em;
  }
}

.graffiti-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.7;
    display: block;
}

.graffiti-banner--mobile {
    display: none !important;
}

.graffiti-banner--desktop {
    display: block !important;
}

@media (max-width: 768px) {
    .graffiti-banner--desktop {
        display: none !important;
    }

    .graffiti-banner--mobile {
        display: block !important;
    }
}
/* =============================================
   CORRE��ES ADICIONADAS - IZI STYLE
   ============================================= */

/* PLACEHOLDER COM GRADIENTE COLORIDO */
.collection-image-placeholder {
    width: 100%;
    height: 350px !important;
    background: linear-gradient(135deg, #fee 0%, #fdd 100%) !important;
    border-radius: 12px 12px 0 0 !important;
    margin-bottom: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative;
    overflow: hidden;
    border: none !important;
}

.collection-image-placeholder::before {
    content: '??';
    font-size: 80px;
    opacity: 0.3;
}

/* CARROSSEL RELIGIOSO */
.collection-item-carousel {
    position: relative;
    overflow: visible;
}

.carousel-religiosa-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
    position: relative;
}

.carousel-religiosa-track {
    display: flex;
    flex-direction: column;
    animation: scrollVerticalInfinite 45s linear infinite;
    will-change: transform;
}

.carousel-religiosa-track:hover {
    animation-play-state: paused;
}

.carousel-religiosa-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    flex-shrink: 0;
}

/* ===== COLLECTION MINI-CAROUSEL (NEW FLOATING CAROUSEL) ===== */

/* Main container for mini-carousel - full width, blends with section */
[data-collection] {
    width: 100%;
    height: 380px;
    margin-bottom: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: transparent;
    padding: 20px 0;
}

/* Carousel wrapper - now showing only main image centered */
.collection-mini-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    height: 380px;
    position: relative;
    padding: 0;
    box-sizing: border-box;
    overflow: visible;
}

/* Side preview images - HIDDEN */
.collection-preview {
    display: none !important;
}

/* Center main image - large, prominent, no styling */
.collection-carousel-main {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.collection-main-img {
    /* Constrained sizing to match the largest shirt */
    max-width: 95%;
    max-height: 95%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: opacity 0.4s ease;
    display: block;
}

.collection-carousel-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: opacity 0.4s ease;
    display: block;
    pointer-events: none;
}

/* Navigation controls - positioned outside the image */
.collection-carousel-controls {
    position: absolute;
    width: calc(100% - 48px);
    max-width: 420px;
    left: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10;
    padding: 0;
    box-sizing: border-box;
}

.collection-carousel-arrow {
    width: 44px;
    height: 44px;
    border: none;
    background: white;
    color: #f70a31;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
}

.collection-carousel-arrow:hover {
    background: #f70a31;
    color: white;
    transform: scale(1.12);
    box-shadow: 0 14px 30px rgba(247, 10, 49, 0.35);
}

/* Dots/indicators - below carousel */
.collection-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.collection-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.collection-carousel-dot:hover {
    background: #a0a0a0;
}

.collection-carousel-dot.active {
    background: #f70a31;
    width: 24px;
    border-radius: 5px;
}

/* ===== RESPONSIVE MINI-CAROUSEL ===== */

/* Tablet: 2 columns */
@media (max-width: 1024px) {
    .collections-fullwidth .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        padding: 0 40px;
    }

    [data-collection] {
        height: 420px;
        padding: 16px 0;
    }

    .collection-mini-carousel-wrapper {
        height: 390px;
        gap: 20px;
        padding: 0;
    }

    .collection-preview {
        width: 20%;
        height: 240px;
        transform: scale(0.88);
        overflow: hidden;
    }

    .collection-preview img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        object-position: center;
    }

    .collection-carousel-main {
        width: 58%;
        height: 390px;
        overflow: hidden;
    }

    .collection-main-img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        object-position: center;
    }

    .collection-carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .collection-carousel-controls {
        padding: 0 60px;
    }
}

/* Mobile: 1 column */
@media (max-width: 768px) {
    .collections-fullwidth .collection-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    [data-collection] {
        height: 350px;
        padding: 12px 0;
    }

    .collection-mini-carousel-wrapper {
        height: 320px;
        gap: 0;
        padding: 0 50px;
    }

    /* Hide side previews on mobile - show only center */
    .collection-preview {
        display: none;
    }

    .collection-carousel-main {
        width: 100%;
        height: 320px;
        overflow: hidden;
    }

    .collection-main-img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        object-position: center;
    }

    .collection-carousel-arrow {
        width: 38px;
        height: 38px;
        font-size: 14px;
        position: relative;
    }

    .collection-carousel-controls {
        padding: 0;
    }

    .collection-carousel-dots {
        margin-top: 30px; /* Volta ao original */
        gap: 8px;
        margin-bottom: 30px; /* Aumentado para separar do título */
        padding: 0 10px;
    }

    .collection-carousel-dot {
        width: 8px;
        height: 8px;
    }

    .collection-carousel-dot.active {
        width: 20px;
    }
    
    .collection-item h3 {
        margin-bottom: 12px; /* Mantém separação do botão */
        margin-top: 16px; /* Adiciona espaço acima do título */
        color: var(--primary-color);
        font-size: 1.1em;
    }
    
    .collection-item a {
        margin-top: 12px; /* Aumentado de 8px para separação do título */
    }
}

@media (max-width: 480px) {
    [data-collection] {
        height: 280px;
        padding: 10px 0;
    }

    .collection-mini-carousel-wrapper {
        height: 240px;
        padding: 0 42px;
    }

    .collection-carousel-main {
        width: 100%;
        height: 240px;
        overflow: hidden;
    }

    .collection-main-img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        object-position: center;
    }

    .collection-carousel-arrow {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    .collection-carousel-controls {
        padding: 0;
    }

    .collection-carousel-dot {
        width: 7px;
        height: 7px;
    }

    .collection-carousel-dot.active {
        width: 16px;
    }

    .collection-carousel-dots {
        margin-top: 20px;
    }
}

/* AJUSTES DO GRID */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.collections-fullwidth .collection-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 80px !important;
    padding: 0 60px !important;
}

/* RESPONSIVO ADICIONAL */
@media (max-width: 1024px) {
    .collections-fullwidth .collection-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 50px !important;
    }
}

@media (max-width: 768px) {
    .collections-fullwidth .collection-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        padding: 0 20px !important;
    }

    .carousel-religiosa-container,
    .collection-image-placeholder {
        height: 280px !important;
    }
}

/* ===== ESTILOS DO CAROUSEL DE DEPOIMENTOS ===== */
.testimonial-card {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: scale(1);
}

.testimonial-card.active {
    display: block;
    opacity: 1;
    transform: scale(1);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 0;
}

.dot.active {
    background-color: var(--primary-color);
}

.dot:hover {
    background-color: #b91c1c;
}

/* ===== ESTILOS DA SEÇÃO FAQ ===== */
.faq-section {
    padding: 60px 20px;
    background-color: var(--bg-white);
    border-top: none;
    border-bottom: 1px solid #e5e7eb;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 32px;
    font-size: 28px;
    color: var(--text-dark);
    font-weight: 700;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ Item */
.faq-item {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 16px;
    background: white;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 16px rgba(247, 10, 49, 0.12);
    transform: translateY(-2px);
}

/* FAQ Header (clickable) */
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: white;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.faq-header:hover {
    background-color: #fafbfc;
}

.faq-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    flex: 1;
}

.faq-header i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
    font-size: 1.2em;
}

/* FAQ Content (hidden by default) */
.faq-content {
    display: none;
    padding: 16px 24px 24px;
    background: white;
    color: #555;
    line-height: 1.7;
    font-size: 0.95em;
}

.faq-content p {
    margin: 0;
}

/* FAQ Item OPEN state */
.faq-item.open .faq-content {
    display: block;
    animation: slideDown 0.3s ease;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.faq-item.open .faq-header {
    background-color: white;
}

.faq-item.open .faq-header i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

/* Slide down animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Support Section */
.faq-support {
    text-align: center;
    margin-top: 50px;
    padding: 32px;
    background: linear-gradient(135deg, #fef2f2 0%, #fff5f5 100%);
    border-radius: 12px;
    border: 1px solid #fecaca;
}

/* ===== DEMO CAROUSEL SECTION ===== */
.demo-carousel-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #fff8f6 0%, #fffbf7 100%);
    margin-bottom: 60px;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.demo-carousel-section h2 {
    text-align: center;
    font-size: 32px;
    color: #2d2d2d;
    margin-bottom: 8px;
    font-weight: 600;
}

.demo-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.demo-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    height: 400px;
}

/* Side Preview Cards */
.demo-carousel-preview {
    flex: 0 0 120px;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    opacity: 0.5;
    transition: all 0.4s ease;
    border: 2px solid #f0f0f0;
}

.demo-carousel-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Center Main Image */
.demo-carousel-main {
    flex: 0 0 340px;
    height: 340px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 5;
    transition: all 0.4s ease;
}

.demo-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Carousel Info */
.demo-carousel-info {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

/* Navigation Arrows */
.demo-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.demo-carousel-arrow {
    width: 44px;
    height: 44px;
    border: none;
    background: white;
    color: #f70a31;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
}

.demo-carousel-arrow:hover {
    background: #f70a31;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 14px 30px rgba(247, 10, 49, 0.30);
}

/* Dots/Indicators */
.demo-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.demo-carousel-dot {
    width: 10px;
    height: 130px;
    border-radius: 50%;
    background: #ddd;
    image-rendering: auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-carousel-dot.active {
    background: #f70a31;
    width: 24px;
    border-radius: 5px;
}

/* ===== Responsive Demo Carousel ===== */
@media (max-width: 1024px) {
    .demo-carousel-section {
        padding: 50px 20px;
    }

    .demo-carousel-section h2 {
        font-size: 28px;
    }

    .demo-carousel-wrapper {
        height: 320px;
        gap: 16px;
    }

    .demo-carousel-preview {
        flex: 0 0 100px;
        height: 140px;
    }

    .demo-carousel-main {
        flex: 0 0 280px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .demo-carousel-section {
        padding: 40px 20px;
        margin-bottom: 40px;
    }

    .demo-carousel-section h2 {
        font-size: 24px;
    }

    .demo-subtitle {
        font-size: 14px;
    }

    /* Hide side previews on mobile */
    .demo-carousel-preview {
        display: none;
    }

    .demo-carousel-wrapper {
        height: 300px;
        justify-content: center;
    }

    .demo-carousel-main {
        flex: 1;
        max-width: 100%;
        height: 300px;
    }

    .demo-carousel-arrow {
        width: 40px;
        height: 100px;
        font-size: 16px;
    }

    .demo-carousel-nav {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .demo-carousel-section {
        padding: 30px 16px;
    }

    .demo-carousel-section h2 {
        font-size: 20px;
    }

    .demo-carousel-main {
        height: 240px;
    }

    .demo-carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .demo-carousel-info {
        font-size: 12px;
        padding: 6px 12px;
    }
}

.faq-support-text {
    margin: 0 0 20px;
    color: #555;
    font-size: 15px;
    font-weight: 500;
}

.faq-support-btn {
    margin: 0;
    padding: 12px 28px;
}

/* ========== MELHORIAS VISUAIS PARA PÁGINAS DE POLÍTICA ========== */

/* Efeito Hover nos links do rodapé */
.footer-column li a {
    transition: color 0.3s ease;
}

.footer-column li a:hover {
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* Estilos para páginas de política */
.policy-content {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    line-height: 1.8;
    background-color: #fafafa;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.policy-content h1 {
    margin-bottom: 30px;
    color: var(--secondary-color);
    font-size: 2.5em;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 15px;
    letter-spacing: 0.5px;
}

.policy-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-size: 1.5em;
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
    letter-spacing: 0.3px;
}

.policy-content h3 {
    margin-top: 20px;
    margin-bottom: 12px;
    color: #555;
    font-size: 1.2em;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
}

.policy-content p {
    margin-bottom: 15px;
    color: #666;
    font-size: 1em;
}

.policy-content ul, 
.policy-content ol {
    margin-bottom: 20px;
    margin-left: 30px;
    color: #666;
}

.policy-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.policy-intro {
    background-color: #fff5f7;
    border-left: 5px solid var(--primary-color);
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 4px;
    font-style: italic;
    color: #555;
    line-height: 1.8;
}

.policy-intro strong {
    color: var(--primary-color);
}

/* Tabelas nas páginas de política */
.table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
}

.policy-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.policy-content th {
    background-color: var(--primary-color);
    color: white;
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

.policy-content td {
    border: 1px solid #eee;
    padding: 12px;
    color: #666;
}

.policy-content tr:nth-child(even) {
    background-color: #fafafa;
}

.policy-content tr:hover {
    background-color: #f5f5f5;
}

/* Links nas páginas de política */
.policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.policy-content a:hover {
    color: #d40825;
    text-decoration: underline;
}






