/* Design System - Central de Pechinchas Premium Landing Page (Dual Theme) */

/* ==========================================================================
   VARIÁVEIS DE CORES E TEMA (Light por padrão)
   ========================================================================== */
:root {
    --bg-color: #f1f5f9;          /* Fundo cinza/azul claro */
    --card-bg: #ffffff;           /* Cards brancos */
    --card-border: rgba(15, 23, 42, 0.06); /* Borda escura sutil */
    --text-primary: #0f172a;      /* Texto principal escuro (Slate 900) */
    --text-secondary: #475569;    /* Texto secundário (Slate 600) */
    --primary-color: #22c55e;      /* Green 500 (WhatsApp) */
    --primary-hover: #15803d;     /* Green 700 */
    --telegram-color: #229ed9;    /* Telegram Blue */
    --telegram-hover: #1a7ab0;
    --accent-color: #2563eb;      /* Blue 600 */
    --accent-glow: rgba(37, 99, 235, 0.08);
    --discount-bg: #ef4444;       /* Red 500 */
    
    /* Botão de Compra Vermelho/Laranja */
    --buy-btn-bg: linear-gradient(135deg, #dc2626 0%, #ea580c 100%);
    --buy-btn-hover: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    --buy-btn-shadow: rgba(220, 38, 38, 0.35);

    /* Cores das Lojas (Legíveis no fundo claro) */
    --color-amazon: #e47911;      /* Laranja escuro legível */
    --color-ml: #bfa000;          /* Amarelo escuro legível */
    --color-magalu: #0086ff;
    --color-aliexpress: #e62e04;
    --color-outros: #64748b;

    /* Gradiente do Card Hero e fundos internos */
    --hero-bg: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    --card-inner-bg: #f8fafc;
    --input-bg: #ffffff;
    --input-border: #cbd5e1;
    --faq-bg: #ffffff;
    --faq-answer-p: #475569;
    --glow-opacity: 0.04;
    
    /* Preço especial */
    --price-color: #16a34a;       /* Verde escuro para preço no light */
}

body.dark-theme {
    --bg-color: #0b0f19;          /* Dark Navy profundo */
    --card-bg: rgba(17, 24, 39, 0.65); /* Grey 900 translúcido */
    --card-border: rgba(255, 255, 255, 0.06);
    --text-primary: #f3f4f6;      /* Grey 100 */
    --text-secondary: #9ca3af;    /* Grey 400 */
    --accent-color: #3b82f6;      /* Blue 500 */
    --accent-glow: rgba(59, 130, 246, 0.25);
    
    /* Botão de Compra no Dark (um pouco mais vibrante) */
    --buy-btn-bg: linear-gradient(135deg, #dc2626 0%, #ea580c 100%);
    --buy-btn-hover: linear-gradient(135deg, #ff4d4d 0%, #f97316 100%);
    --buy-btn-shadow: rgba(220, 38, 38, 0.5);

    /* Cores das Lojas no modo escuro */
    --color-amazon: #ff9900;
    --color-ml: #ffdb15;
    --color-magalu: #0086ff;
    --color-aliexpress: #ff4747;
    --color-outros: #64748b;
    
    /* Gradiente do Card Hero e fundos internos */
    --hero-bg: linear-gradient(135deg, rgba(20, 27, 45, 0.8) 0%, rgba(10, 15, 30, 0.9) 100%);
    --card-inner-bg: rgba(15, 23, 42, 0.45);
    --input-bg: rgba(15, 23, 42, 0.6);
    --input-border: rgba(255, 255, 255, 0.08);
    --faq-bg: rgba(30, 41, 59, 0.35);
    --faq-answer-p: var(--text-secondary);
    --glow-opacity: 0.12;
    
    /* Preço especial */
    --price-color: #4ade80;       /* Verde claro para preço no dark */
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    padding-top: 75px; /* Compensação para a Navbar fixa */
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Efeitos de Brilho de Fundo */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    opacity: var(--glow-opacity);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.bg-glow-1 {
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    top: -200px;
    left: -200px;
}

.bg-glow-2 {
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    bottom: 200px;
    right: -200px;
}

/* ==========================================================================
   BARRA DE NAVEGAÇÃO FIXA (Navbar Sticky)
   ========================================================================== */
.navbar-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 75px;
    background: #0f172a; /* Azul escuro do logo */
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    box-shadow: 0 10px 30px -15px rgba(15, 23, 42, 0.3);
    transition: all 0.3s ease;
}

body.dark-theme .navbar-sticky {
    background: #0b0f19; /* Preto/Navy no modo escuro */
    border-bottom-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.4);
}

.navbar-container {
    max-width: 1040px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    gap: 1.25rem;
}

.navbar-left {
    display: flex;
    align-items: center;
}

.navbar-logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.navbar-logo-wrapper {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    border: 2.5px solid #facc15; /* Amarelo dourado */
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px rgba(250, 204, 21, 0.3);
    transition: transform 0.3s ease;
}

.navbar-logo-link:hover .navbar-logo-wrapper {
    transform: scale(1.08) rotate(5deg);
}

.navbar-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 85% 15%; /* Foca no rosto do detetive no canto superior direito */
}

.navbar-logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    transition: color 0.3s ease;
}

.navbar-logo-text span {
    color: #facc15; /* Amarelo dourado */
}

@media (max-width: 768px) {
    .navbar-logo-text {
        display: none !important; /* Esconde o texto do logotipo no celular para liberar espaço horizontal */
    }
}

.logo-fallback-text-sticky i {
    color: #facc15;
    -webkit-text-fill-color: initial;
}

.navbar-center {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-grow: 1;
    max-width: 580px; /* Aumentado para acomodar a barra de busca e o dropdown de categorias */
}

/* Dropdown de Categorias */
.category-dropdown-container {
    position: relative;
}

.btn-category-dropdown {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 0.65rem 1rem;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-category-dropdown:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #facc15;
    color: #facc15;
}

.category-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 0.5rem;
    min-width: 210px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

body.dark-theme .category-dropdown-menu {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4);
}

.category-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.category-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.6rem 0.85rem;
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.category-item i {
    width: 16px;
    text-align: center;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.category-item:hover {
    background-color: rgba(34, 197, 94, 0.08);
    color: var(--primary-color);
}

.category-item:hover i {
    color: var(--primary-color);
}

.category-item.active {
    background-color: var(--primary-color);
    color: #ffffff;
}

.category-item.active i {
    color: #ffffff;
}

/* Barra de busca */
.search-bar-wrapper {
    position: relative;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 0.95rem;
    pointer-events: none;
}

.search-bar-wrapper input {
    width: 100%;
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 12px;
    padding: 0.65rem 2.2rem 0.65rem 2.5rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.92rem;
    transition: all 0.3s ease;
}

.search-bar-wrapper input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-glow);
}

/* Customização para o input da busca na navbar (sempre escuro/translúcido sobre fundo azul escuro) */
.navbar-sticky .search-bar-wrapper input {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}

.navbar-sticky .search-bar-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.navbar-sticky .search-bar-wrapper input:focus {
    border-color: #facc15 !important;
    box-shadow: 0 0 10px rgba(250, 204, 21, 0.25) !important;
    background-color: rgba(255, 255, 255, 0.12) !important;
}

.navbar-sticky .search-icon {
    color: rgba(255, 255, 255, 0.6) !important;
}

.navbar-sticky #search-clear-btn {
    color: rgba(255, 255, 255, 0.6) !important;
}

.navbar-sticky #search-clear-btn:hover {
    color: #ffffff !important;
}

#search-clear-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1rem;
}

#search-clear-btn:hover {
    color: var(--text-primary);
}

.navbar-right {
    display: flex;
    align-items: center;
}

/* Botão de Tema */
.btn-theme-toggle {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #facc15; /* Amarelo dourado do logo */
    width: 38px;
    height: 38px;
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.25s ease;
    margin-right: 0.75rem;
}

.btn-theme-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    transform: scale(1.05);
}

body.dark-theme .btn-theme-toggle {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    color: #fbbf24; /* Amarelo sol */
}

body.dark-theme .btn-theme-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.btn-navbar-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.25);
    transition: all 0.25s ease;
}

.btn-navbar-whatsapp:hover {
    background: linear-gradient(135deg, #25d366 0%, #15803d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(34, 197, 94, 0.4);
}

/* Container de Conteúdo */
.container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 2rem;
}

/* ==========================================================================
   SEÇÃO HERO VIP COMPACTA (Altura reduzida em >50% para visual mais direto)
   ========================================================================== */
/* ==========================================================================
   SEÇÃO HERO VIP COMPACTA (2 Colunas com Mascote Detetive)
   ========================================================================== */
.hero-vip-section {
    margin-bottom: 2.5rem;
    margin-top: 0.5rem;
}

.hero-vip-card {
    background: var(--hero-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 2rem 2.5rem;
    box-shadow: 0 15px 35px -15px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

body.dark-theme .hero-vip-card {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-vip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--accent-color), transparent);
}

.hero-vip-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    z-index: 2;
}

/* Mascote Detetive & Widget de Cupons */
.hero-vip-mascot {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    z-index: 2;
}

.mascot-wrapper {
    position: relative;
    width: 170px;
    height: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floatMascot 4s ease-in-out infinite;
}

.mascot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #facc15; /* Amarelo dourado */
    box-shadow: 0 8px 20px rgba(250, 204, 21, 0.25);
    background-color: #ffffff;
    z-index: 2;
}

/* Sombra Projetada */
.mascot-wrapper::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 10%;
    width: 80%;
    height: 10px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    filter: blur(3px);
    z-index: 1;
    animation: shadowMascot 4s ease-in-out infinite;
}

body.dark-theme .mascot-wrapper::after {
    background: rgba(0, 0, 0, 0.35);
}

.mascot-glow {
    position: absolute;
    width: 110%;
    height: 110%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.3) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* Adaptação para duas colunas em telas maiores (Desktop) */
@media (min-width: 850px) {
    .hero-vip-card {
        display: grid;
        grid-template-columns: 1.25fr 0.75fr;
        gap: 2.5rem;
        align-items: center;
        text-align: left;
        padding: 2.5rem 3.5rem;
    }
    
    .hero-vip-content {
        align-items: flex-start;
    }
    
    .hero-vip-mascot {
    align-items: center;
    justify-content: center;
    gap: 0;
}
    
    .mascot-wrapper {
        width: 230px;
        height: 230px;
    }
    
    .hero-title {
        text-align: justify;
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero-subtitle {
        text-align: justify;
        margin-left: 0;
        margin-right: 0;
    }
    
    .benefits-inline {
        justify-content: flex-start;
    }
    
    .hero-cta-box {
        justify-content: flex-start;
    }
    
    .members-counter {
        justify-content: flex-start;
    }
}

/* Animações do Mascote */
@keyframes floatMascot {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes shadowMascot {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(0.85); opacity: 0.4; }
    100% { transform: scale(1); opacity: 0.8; }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.06);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.15);
    padding: 0.35rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem; /* Reduzido de 2rem */
}

body.dark-theme .hero-badge {
    background: rgba(34, 197, 94, 0.08);
    color: #4ade80;
    border-color: rgba(34, 197, 94, 0.2);
}

.pulse-green {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.pulse-green::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1);
    animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.hero-title {
    font-size: 1.95rem; /* Reduzido de 2.4rem */
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 0.75rem; /* Reduzido de 1.25rem */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-primary);
    text-align: justify;
}

.hero-title span {
    background: linear-gradient(90deg, #16a34a 0%, #22c55e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.dark-theme .hero-title span {
    background: linear-gradient(90deg, #4ade80 0%, #22c55e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1rem; /* Reduzido de 1.15rem */
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 1.5rem; /* Reduzido de 3rem */
    line-height: 1.5;
    text-align: justify;
}

/* Lista Compacta de Benefícios (Inline) */
.benefits-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.75rem; /* Ocupa muito menos espaço vertical que a grid antiga! */
}

.benefit-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.benefit-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

/* Links Seguros */
.benefit-safe {
    background-color: #e8f5e9;
    border: 1px solid rgba(46, 125, 50, 0.2);
    color: #2e7d32;
}
.benefit-safe i { color: #2e7d32; }

body.dark-theme .benefit-safe {
    background-color: rgba(74, 222, 128, 0.08);
    border-color: rgba(74, 222, 128, 0.25);
    color: #4ade80;
}
body.dark-theme .benefit-safe i { color: #4ade80; }

/* Alertas Rápidos */
.benefit-alerts {
    background-color: #fff3e0;
    border: 1px solid rgba(230, 81, 0, 0.2);
    color: #e65100;
}
.benefit-alerts i { color: #e65100; }

body.dark-theme .benefit-alerts {
    background-color: rgba(251, 146, 60, 0.08);
    border-color: rgba(251, 146, 60, 0.25);
    color: #fb923c;
}
body.dark-theme .benefit-alerts i { color: #fb923c; }

/* Sem Spam */
.benefit-nospam {
    background-color: #ffebee;
    border: 1px solid rgba(198, 40, 40, 0.2);
    color: #c62828;
}
.benefit-nospam i { color: #c62828; }

body.dark-theme .benefit-nospam {
    background-color: rgba(248, 113, 113, 0.08);
    border-color: rgba(248, 113, 113, 0.25);
    color: #f87171;
}
body.dark-theme .benefit-nospam i { color: #f87171; }

/* Cupons */
.benefit-coupons {
    background-color: #e8eaf6;
    border: 1px solid rgba(57, 73, 171, 0.2);
    color: #3949ab;
}
.benefit-coupons i { color: #3949ab; }

body.dark-theme .benefit-coupons {
    background-color: rgba(129, 140, 248, 0.08);
    border-color: rgba(129, 140, 248, 0.25);
    color: #818cf8;
}
body.dark-theme .benefit-coupons i { color: #818cf8; }

/* Selo Detetive */
.detective-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    background-color: #fef9c3;
    border: 1px dashed #ca8a04;
    color: #854d0e;
    box-shadow: 0 2px 4px rgba(202, 138, 4, 0.1);
    transition: all 0.25s ease;
    animation: floatBadge 3s ease-in-out infinite;
}

.detective-badge i {
    color: #ca8a04;
}

body.dark-theme .detective-badge {
    background-color: rgba(253, 224, 71, 0.08);
    border-color: rgba(253, 224, 71, 0.3);
    color: #fde047;
    box-shadow: none;
}

body.dark-theme .detective-badge i {
    color: #fde047;
}

@keyframes floatBadge {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
    100% { transform: translateY(0px); }
}

/* Botões da Hero */
.hero-cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

@media (min-width: 600px) {
    .hero-cta-box {
        flex-direction: row;
        justify-content: center;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.9rem 2rem; /* Reduzido padding */
    font-size: 1.05rem; /* Reduzido font-size */
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    width: 100%;
    max-width: 400px;
}

.btn-whatsapp-vip {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px -5px rgba(34, 197, 94, 0.35);
}

.btn-whatsapp-vip:hover {
    background: linear-gradient(135deg, #25d366 0%, #15803d 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px -5px rgba(34, 197, 94, 0.5);
}

.btn-telegram-vip {
    background: rgba(34, 158, 217, 0.06);
    border: 1px solid rgba(34, 158, 217, 0.25);
    color: #1a7ab0;
}

body.dark-theme .btn-telegram-vip {
    background: rgba(34, 158, 217, 0.08);
    border-color: rgba(34, 158, 217, 0.3);
    color: #53bdeb;
}

.btn-telegram-vip:hover {
    background: var(--telegram-color);
    color: #ffffff;
    border-color: var(--telegram-color);
    transform: translateY(-2px);
    box-shadow: 0 12px 20px -5px rgba(34, 158, 217, 0.3);
}

/* Animação Pulsar */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.pulsate-btn {
    animation: pulse 2.2s infinite;
}

.members-counter {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.members-counter i {
    color: var(--primary-color);
}


/* ==========================================================================
   SEÇÃO VITRINE (Filtros e Grid)
   ========================================================================== */
.deals-hub-section {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 3.5rem;
    box-shadow: 0 20px 25px -15px rgba(15, 23, 42, 0.08);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

body.dark-theme .deals-hub-section {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    padding-bottom: 1rem;
}

body.dark-theme .section-header-row {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.section-title {
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
}

/* Badges de Filtros de Marcas */
.filter-badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-bottom: 2rem;
}

.filter-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-secondary);
    padding: 0.6rem 1.1rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
}

body.dark-theme .filter-badge {
    background: rgba(30, 41, 59, 0.4);
    border-color: rgba(255, 255, 255, 0.05);
}

.filter-badge:hover {
    background: rgba(0, 0, 0, 0.06);
    color: var(--text-primary);
    transform: translateY(-1px);
}

body.dark-theme .filter-badge:hover {
    background: rgba(30, 41, 59, 0.8);
}

.filter-badge.active {
    background: var(--text-primary);
    color: var(--bg-color);
    border-color: var(--text-primary);
}

.filter-badge[data-store="amazon"].active {
    background: var(--color-amazon);
    color: #fff;
    border-color: var(--color-amazon);
}
.filter-badge[data-store="mercadolivre"].active {
    background: var(--color-ml);
    color: #1e1b04;
    border-color: var(--color-ml);
}
.filter-badge[data-store="magalu"].active {
    background: var(--color-magalu);
    color: #fff;
    border-color: var(--color-magalu);
}
.filter-badge[data-store="aliexpress"].active {
    background: var(--color-aliexpress);
    color: #fff;
    border-color: var(--color-aliexpress);
}
.filter-badge-coupons {
    border-style: dashed;
}
.filter-badge-coupons.active {
    background: #ef4444;
    color: #fff;
    border-color: #ef4444;
}

/* Grid de Ofertas */
.deals-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 580px) {
    .deals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 880px) {
    .deals-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   CARDS DE OFERTAS PREMIUM
   ========================================================================== */
.deal-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 25px -15px rgba(15, 23, 42, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.dark-theme .deal-card {
    background: rgba(15, 23, 42, 0.45);
    box-shadow: 0 10px 25px -15px rgba(0, 0, 0, 0.5);
}

.deal-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 30px -10px rgba(15, 23, 42, 0.15), 0 0 20px 0 var(--accent-glow);
}

body.dark-theme .deal-card:hover {
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5), 0 0 20px 0 rgba(59, 130, 246, 0.05);
}

.deal-card.has-coupon-card {
    border-color: rgba(239, 68, 68, 0.12);
}
.deal-card.has-coupon-card:hover {
    border-color: rgba(239, 68, 68, 0.35);
}

.deal-discount-badge {
    position: absolute;
    top: 130px;
    right: 12px;
    background-color: var(--discount-bg);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 0.3rem 0.7rem;
    border-radius: 9px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.35);
}

.deal-card-header {
    padding: 1rem 1rem 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
}

.deal-store-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.3rem 0.65rem;
    border-radius: 8px;
    letter-spacing: 0.02em;
}

.store-amazon { background: rgba(228, 121, 17, 0.08); color: var(--color-amazon); }
.store-ml { background: rgba(191, 160, 0, 0.08); color: var(--color-ml); }
.store-magalu { background: rgba(0, 134, 255, 0.08); color: var(--color-magalu); }
.store-aliexpress { background: rgba(230, 46, 4, 0.08); color: var(--color-aliexpress); }
.store-outros { background: rgba(100, 116, 139, 0.08); color: var(--color-outros); }

body.dark-theme .store-amazon { background: rgba(255, 153, 0, 0.1); color: #ffa11a; }
body.dark-theme .store-ml { background: rgba(255, 219, 21, 0.1); color: #ffd000; }
body.dark-theme .store-magalu { background: rgba(0, 134, 255, 0.1); color: #38bdf8; }
body.dark-theme .store-aliexpress { background: rgba(255, 71, 71, 0.1); color: #ff5c5c; }

/* Badge com logotipo oficial SVG (Fundo branco/cinza claro para contraste ideal) */
.deal-store-logo-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    padding: 0.25rem 0.55rem;
    height: 28px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.deal-store-logo-img {
    height: 16px;
    width: auto;
    max-width: 90px;
    object-fit: contain;
}

body.dark-theme .deal-store-logo-wrapper {
    background-color: #ffffff;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Estilo do Logo no Widget lateral */
.widget-store-logo-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 4px;
    padding: 0.08rem 0.3rem;
    height: 15px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.widget-coupon-store-logo {
    height: 10px;
    width: auto;
    max-width: 70px;
    object-fit: contain;
}

body.dark-theme .widget-store-logo-wrapper {
    background-color: #ffffff;
    border-color: rgba(255, 255, 255, 0.1);
}

.deal-likes-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.deal-temp {
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.temp-hot { background: rgba(239, 68, 68, 0.08); color: #dc2626; }
.temp-warm { background: rgba(217, 119, 6, 0.08); color: #d97706; }
.temp-cool { background: rgba(37, 99, 235, 0.08); color: #2563eb; }

body.dark-theme .temp-hot { background: rgba(239, 68, 68, 0.12); color: #f87171; }
body.dark-theme .temp-warm { background: rgba(245, 158, 11, 0.12); color: #fbbf24; }
body.dark-theme .temp-cool { background: rgba(59, 130, 246, 0.12); color: #60a5fa; }

.btn-like {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    padding: 0.2rem;
}

.btn-like:hover {
    color: #ef4444;
    transform: scale(1.15);
}

.btn-like.liked {
    color: #ef4444;
}

.deal-image-container {
    width: 100%;
    height: 165px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    position: relative;
    overflow: hidden;
}

.deal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.deal-card:hover .deal-image {
    transform: scale(1.06);
}

.deal-image-placeholder {
    font-size: 3rem;
    color: #cbd5e1;
}

.deal-info {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background-color: var(--card-bg);
    transition: background-color 0.3s ease;
}

body.dark-theme .deal-info {
    background-color: var(--card-inner-bg);
}

.deal-product-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.5rem;
    line-height: 1.35;
}

.deal-price-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    margin-bottom: 1.1rem;
}

.deal-price-box {
    display: flex;
    flex-direction: column;
}

.price-old {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    margin-bottom: -0.15rem;
}

.price-current {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--price-color);
    transition: color 0.3s ease;
}

.payment-condition {
    font-size: 0.78rem;
    color: var(--text-secondary);
    background-color: rgba(0, 0, 0, 0.02);
    padding: 0.15rem 0.45rem;
    border-radius: 5px;
    margin-bottom: 0.1rem;
}

body.dark-theme .payment-condition {
    background-color: rgba(255, 255, 255, 0.03);
}

.deal-coupon-box {
    display: flex;
    align-items: center;
    border: 1px dashed rgba(239, 68, 68, 0.35);
    background-color: rgba(239, 68, 68, 0.01);
    border-radius: 10px;
    padding: 0.4rem;
    gap: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

body.dark-theme .deal-coupon-box {
    background-color: rgba(239, 68, 68, 0.02);
}

.coupon-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #ef4444;
    font-size: 0.75rem;
    font-weight: 700;
    background-color: rgba(239, 68, 68, 0.05);
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    flex-grow: 1;
}

body.dark-theme .coupon-tag {
    color: #f87171;
    background-color: rgba(239, 68, 68, 0.08);
}

.coupon-code {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.btn-copy-coupon {
    background: var(--bg-color);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

body.dark-theme .btn-copy-coupon {
    background: var(--bg-color);
    border-color: rgba(239, 68, 68, 0.25);
    color: #f87171;
}

.btn-copy-coupon:hover {
    background-color: #ef4444;
    color: #fff;
    border-color: #ef4444;
}

.btn-copy-coupon.copied {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border-color: var(--primary-color) !important;
}

.btn-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--buy-btn-bg);
    color: #fff;
    text-decoration: none;
    padding: 0.75rem;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 10px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-buy:hover {
    background: var(--buy-btn-hover);
    gap: 0.75rem;
    box-shadow: 0 4px 15px var(--buy-btn-shadow);
}

.empty-state {
    text-align: center;
    padding: 4rem 1.5rem;
    color: var(--text-secondary);
}

.empty-icon {
    font-size: 3.5rem;
    color: var(--text-secondary);
    opacity: 0.4;
    margin-bottom: 1rem;
}

.empty-state h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.load-more-container {
    text-align: center;
    margin-top: 2.5rem;
}

.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-primary);
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
}

body.dark-theme .btn-load-more {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

.btn-load-more:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

body.dark-theme .btn-load-more:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
}


/* ==========================================================================
   SEÇÃO FAQ (Acordeão de Dúvidas)
   ========================================================================== */
.faq-section {
    max-width: 760px;
    margin: 0 auto 4rem; /* Reduzido margem */
    padding: 0 1rem;
}

.faq-main-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.faq-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--faq-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

body.dark-theme .faq-item {
    background-color: rgba(30, 41, 59, 0.35);
}

.faq-item:hover {
    border-color: rgba(0, 0, 0, 0.15);
}

body.dark-theme .faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-item.active {
    border-color: var(--accent-color);
}

body.dark-theme .faq-item.active {
    border-color: rgba(59, 130, 246, 0.2);
    background-color: rgba(30, 41, 59, 0.5);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    padding: 1.25rem 1.5rem;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--faq-answer-p);
    font-size: 0.95rem;
    line-height: 1.55;
}


/* ==========================================================================
   SEÇÃO REDES SOCIAIS (Visual de Destaque das Contas)
   ========================================================================== */
.social-media-section {
    max-width: 840px;
    margin: 0 auto 5rem;
    text-align: center;
    padding: 0 1rem;
}

.social-main-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.social-main-title i {
    color: var(--accent-color);
}

.social-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.social-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 680px) {
    .social-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.social-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 2rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 25px -15px rgba(15, 23, 42, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.dark-theme .social-card {
    background-color: rgba(30, 41, 59, 0.35);
    box-shadow: 0 10px 25px -15px rgba(0, 0, 0, 0.4);
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -10px rgba(15, 23, 42, 0.15);
}

body.dark-theme .social-card:hover {
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5);
}

.social-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    margin-bottom: 1.25rem;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-instagram .social-icon-box {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.25);
}

.social-facebook .social-icon-box {
    background-color: #1877f2;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.25);
}

.social-tiktok .social-icon-box {
    background-color: #010101;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-shadow: -1px -1px 0 #00f2fe, 1px 1px 0 #fe0979;
}

body.dark-theme .social-tiktok .social-icon-box {
    background-color: #111111;
}

.social-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
    color: var(--text-primary);
}

.social-handle {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.social-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.45;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-social-follow {
    width: 100%;
    background: var(--bg-color);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    transition: all 0.2s ease;
    text-align: center;
    cursor: pointer;
}

body.dark-theme .btn-social-follow {
    background-color: var(--bg-color);
}

.btn-social-follow:hover {
    background-color: var(--text-primary);
    color: var(--bg-color);
    border-color: var(--text-primary);
}


/* ==========================================================================
   RODAPÉ FINAL
   ========================================================================== */
.footer-cta {
    text-align: center;
    background: radial-gradient(ellipse at bottom, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
    padding: 4rem 1.5rem 2rem;
    border-top: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    align-items: center;
}

body.dark-theme .footer-cta {
    background: radial-gradient(ellipse at bottom, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
}

.footer-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.footer-cta p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.footer-cta .btn-whatsapp-vip {
    width: 100%;
    max-width: 440px;
    margin-bottom: 4rem;
}

.copyright {
    font-size: 0.8rem;
    color: rgba(156, 163, 175, 0.35) !important;
    line-height: 1.6;
    max-width: 800px;
    margin-bottom: 0 !important;
}


/* ==========================================================================
   RESPONSIVIDADE EXTRA E NAVBAR ADAPTAÇÃO
   ========================================================================== */
@media (max-width: 768px) {
    .navbar-container {
        padding: 0 1rem;
    }
    
    .navbar-logo-wrapper {
        width: 38px;
        height: 38px;
    }
    
    .search-bar-wrapper input {
        padding: 0.55rem 1.8rem 0.55rem 2rem;
        font-size: 0.88rem;
    }
    
    .search-icon {
        left: 10px;
        font-size: 0.85rem;
    }
}

@media (max-width: 600px) {
    body {
        padding-top: 65px; /* Reduz altura de compensação */
    }
    
    .navbar-sticky {
        height: 65px;
    }
    
    .navbar-container {
        gap: 0.75rem;
    }

    .btn-navbar-whatsapp {
        padding: 0.55rem;
        border-radius: 50%;
        width: 38px;
        height: 38px;
        justify-content: center;
    }
    
    .btn-navbar-whatsapp span {
        display: none;
    }
    
    .btn-navbar-whatsapp i {
        font-size: 1.2rem;
        margin: 0;
    }

    .logo-fallback-text-sticky {
        font-size: 1.1rem;
    }
    
    .container {
        padding: 1rem 1rem;
    }
    
    .hero-vip-card {
        padding: 2.25rem 1.5rem; /* Compactado */
        border-radius: 20px;
    }
    
    .hero-title {
        font-size: 1.65rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .benefits-inline {
        gap: 0.5rem;
        margin-bottom: 1.25rem;
    }

    .benefit-tag {
        font-size: 0.78rem;
        padding: 0.3rem 0.65rem;
    }
    
    .deals-hub-section {
        padding: 1.25rem;
        border-radius: 20px;
    }
    
    .filter-badge {
        padding: 0.5rem 0.9rem;
        font-size: 0.85rem;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 0 1.25rem 1rem;
        font-size: 0.88rem;
    }
    
    .social-media-section {
        margin-bottom: 3.5rem;
    }
    .social-main-title {
        font-size: 1.4rem;
    }
    .social-cards-grid {
        gap: 1rem;
    }
    .social-card {
        padding: 1.5rem 1rem;
    }

    .footer-cta h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 440px) {
    .navbar-container {
        gap: 0.4rem;
    }
    
    .navbar-logo-wrapper {
        width: 34px;
        height: 34px;
    }

    .btn-theme-toggle {
        width: 34px;
        height: 34px;
        margin-right: 0.35rem;
        font-size: 0.9rem;
    }
    
    .search-bar-wrapper input {
        font-size: 0.82rem;
        padding-left: 1.8rem;
        padding-right: 1.5rem;
    }
    
    .search-icon {
        left: 8px;
    }
}

/* ==========================================================================
   WIDGET DE CUPONS CAPTURADOS (Hero VIP)
   ========================================================================== */
.captured-coupons-widget {
    width: 100%;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    padding: 0.9rem;
    box-shadow: 0 10px 20px -10px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
    transition: all 0.3s ease;
}

body.dark-theme .captured-coupons-widget {
    background: rgba(15, 23, 42, 0.55);
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.4);
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    padding-bottom: 0.4rem;
}

body.dark-theme .widget-header {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.widget-header i {
    color: #ef4444; /* Vermelho pulsante */
    font-size: 1rem;
}

.widget-header h3 {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.widget-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.widget-coupon-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.8);
    border: 1px dashed rgba(239, 68, 68, 0.25);
    border-radius: 8px;
    padding: 0.35rem 0.5rem;
    gap: 0.3rem;
    transition: all 0.2s ease;
}

body.dark-theme .widget-coupon-item {
    background: rgba(15, 23, 42, 0.45);
    border-color: rgba(239, 68, 68, 0.3);
}

.widget-coupon-item:hover {
    transform: translateY(-1px);
    border-color: rgba(239, 68, 68, 0.6);
}

.widget-coupon-left {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    overflow: hidden;
    flex-grow: 1;
}

.widget-coupon-store-badge {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
}

.widget-coupon-title {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.widget-coupon-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.15rem;
}

.widget-coupon-code {
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.06);
    padding: 0.1rem 0.35rem;
    border-radius: 3px;
    letter-spacing: 0.02em;
}

.widget-btn-copy {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.68rem;
    transition: all 0.2s ease;
    padding: 0.05rem;
}

.widget-btn-copy:hover {
    color: #ef4444;
    transform: scale(1.1);
}

.widget-btn-copy.copied {
    color: var(--primary-color) !important;
}

/* Animação do Ícone */
.icon-pulse {
    animation: widgetIconPulse 2s infinite;
}

@keyframes widgetIconPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 850px) {
    .captured-coupons-widget {
        max-width: 100%;
        width: 100%;
    }
}

/* ==========================================================================
   Barra de Identidade Visual (Banner Horizontal Artístico)
   ========================================================================== */
.brand-banner-bar {
    width: 100%;
    margin-top: 0.5rem;
    margin-bottom: 1.25rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: 0 10px 25px -10px rgba(15, 23, 42, 0.06);
    line-height: 0;
    transition: all 0.3s ease;
}

body.dark-theme .brand-banner-bar {
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.3);
}

.brand-banner-img {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   Controles do Hub de Busca e Vitrine
   ========================================================================== */
.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hub-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hub-search-wrapper, .price-filter-wrapper, .sort-select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--card-bg, #ffffff);
    border: 1px solid var(--card-border, rgba(15, 23, 42, 0.08));
    border-radius: 10px;
    padding: 0.45rem 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease;
    height: 38px;
    box-sizing: border-box;
}

body.dark-theme .hub-search-wrapper,
body.dark-theme .price-filter-wrapper,
body.dark-theme .sort-select-wrapper {
    background: rgba(15, 23, 42, 0.45);
    border-color: rgba(255, 255, 255, 0.06);
}

.hub-search-wrapper:focus-within, 
.price-filter-wrapper:focus-within, 
.sort-select-wrapper:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}

.hub-controls i {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-right: 0.5rem;
}

.hub-controls input, .hub-controls select {
    background: transparent;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 0.85rem;
    color: var(--text-primary);
    width: 100%;
}

.hub-search-wrapper {
    width: 220px;
}

.price-filter-wrapper {
    width: 130px;
}

.price-filter-wrapper input::-webkit-outer-spin-button,
.price-filter-wrapper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.sort-select-wrapper {
    width: 180px;
    padding-right: 1.5rem;
}

.sort-select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.sort-select-wrapper::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0.75rem;
    font-size: 0.7rem;
    color: var(--text-secondary);
    pointer-events: none;
}

/* Responsividade Mobile para Elementos do Hub e Banner */
@media (max-width: 650px) {
    .brand-banner-img {
        max-height: 120px;
    }

    .section-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .hub-controls {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }
    
    .hub-search-wrapper {
        grid-column: span 2;
        width: 100%;
    }
    
    .price-filter-wrapper, .sort-select-wrapper {
        width: 100%;
    }
}
