/* FAQ Moderno */
.faq-section {
    margin-top: 32px;
    margin-bottom: 32px;
}
.faq-item {
    margin-bottom: 16px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
    border: 1px solid #eee;
}
.faq-question {
    width: 100%;
    background: none;
    color: #0A1931;
    border: none;
    outline: none;
    text-align: left;
    padding: 18px 20px 18px 48px;
    font-size: 1.08rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.faq-question:hover {
    background: #f8f9fa;
}
.faq-icon {
    position: absolute;
    left: 18px;
    font-size: 1.4rem;
    color: #d60000;
    font-weight: 900;
    transition: transform 0.3s;
}
.faq-answer {
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(.4,0,.2,1), opacity 0.3s;
    padding: 0 20px;
    color: #222;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    font-size: 1.01rem;
    border-radius: 0 0 12px 12px;
}
/* FAQ Accordion - Esconde respostas por padrão */
/* =========================================
   ESTILO GERAL & VARIÁVEIS
   CSS Configurado por Luanderson
========================================= */
:root {
  --primary: #FFD700;           /* Dourado */
  --primary-dark: #C7A200;      /* Dourado mais escuro */
  --primary-light: #FFF3A3;     /* Dourado claro */
  --accent: #00CFFF;            /* Azul elétrico */
  --bg: #0A1931;                /* Azul marinho */
  --bg-soft: #0b1629;           /* Azul marinho mais suave */
  --card-bg: #0F1E3A;           /* Fundo de cards escuro (se precisar) */
  --text-main: #FFFFFF;         /* Branco */
  --text-muted: #D9D9D9;        /* Cinza claro */
  --danger: #FF4D4D;            /* Vermelho de alerta */
  --ice-white: #F8F9FA;         /* Branco gelo */
  --border-soft: rgba(1, 1, 1, 0.2);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.55);
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-pill: 999px;
  --grad-main: linear-gradient(135deg, #FFD700, #FFE55C);
  --grad-btn: linear-gradient(135deg, #FFD700, #FFE55C);
  
  /* Cores de texto específicas para fundos claros */
  --text-dark-blue: #0A1931;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 600px; /* Limite para parecer mobile mesmo em desktop */
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

img {
    max-width: 100%;
    border-radius: var(--radius-lg);
}

/* =========================================
   CLASSES UTILITÁRIAS DE SEÇÃO
========================================= */
.section-light {
    background-color: var(--ice-white);
    color: var(--text-dark-blue);
    padding: 40px 0;
}

.section-dark {
    background-color: var(--bg);
    color: var(--text-main);
    padding: 40px 0;
}

/* =========================================
   ELEMENTOS DE TEXTO
========================================= */
h1 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Span para destacar partes do título em dourado ou azul dependendo do fundo */
.section-dark h1 {
    color: var(--text-main);
}
.section-light h1 span {
    color: var(--bg); /* Destaque no h1 */
}

h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* =========================================
   BOTÕES (Página criadas pelo luan)
========================================= */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: none;
    cursor: pointer;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

/* Reflexo animado */
.btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.5) 40%, rgba(255,255,255,0.0) 60%);
    transform: translateX(-100%) rotate(10deg);
    pointer-events: none;
    transition: none;
    z-index: 1;
    animation: shine-effect 3.5s infinite;
}

@keyframes shine-effect {
    0% {
        transform: translateX(-100%) rotate(10deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    20% {
        transform: translateX(100%) rotate(10deg);
        opacity: 0.7;
    }
    21% {
        opacity: 0;
    }
    100% {
        transform: translateX(-100%) rotate(10deg);
        opacity: 0;
    }
}

.btn span, .btn {
    position: relative;
    z-index: 2;
}


.btn-full {
    width: 100%;
}

/* Efeito Pulsar */
.btn-pulse {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* =========================================
   DOBRA 1: CABEÇALHO & HERO
========================================= */
.top-bar {
    background-color: #d60000;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-weight: 900;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #b10000;
    position: static;
    width: 100%;
}

.subtext {
    font-size: 0.95rem;
    color: #444; /* Cinza escuro para contraste no branco gelo */
}

/* =========================================
   DOBRA 2: CARROSSEL (SWIPER)
========================================= */
.swiper {
    width: 100%;
    height: 300px;
    margin-bottom: 30px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary); /* Borda dourada nas fotos do carrossel */
}

/* =========================================
   DOBRA 3: CARDS DE PRODUTOS
========================================= */
.note {
    font-size: 0.8rem;
    font-style: italic;
    margin-bottom: 30px;
    opacity: 0.8;
}

.card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 25px;
    margin-bottom: 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); /* Sombra suave */
    border: 1px solid rgba(10, 25, 49, 0.1);
    width: 100%;
}

.card h1 {
    font-size: 1.3rem;
    color: var(--text-dark-blue);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
    display: inline-block;
}

.card img {
    margin: 15px 0;
    box-shadow: none;
}

.card h2 {
    font-size: 0.95rem;
    font-weight: 400;
    color: #333;
    text-align: left; /* Melhor leitura */
}

/* =========================================
   DOBRA 4: OFERTA
========================================= */
.strike {
    text-decoration: line-through;
    color: var(--danger);
    font-size: 1.2rem;
}

.highlight-gold {
    color: var(--primary);
    font-size: 1.5rem;
    display: block;
    margin-top: 10px;
}

.red-arrow {
    width: 60px;
    height: 60px;
    margin: 20px 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-10px);}
  60% {transform: translateY(-5px);}
}

.pricing-card {
    background: var(--card-bg);
    border: 2px solid var(--primary);
    border-radius: var(--radius-xl);
    padding: 30px 20px;
    width: 100%;
    margin-top: 20px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2); /* Brilho dourado */
}

.pricing-header h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-header .price {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
}

.pricing-list {
    list-style: none;
    text-align: left;
    margin: 20px 0;
    color: #ddd;
}

.pricing-list li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 5px;
}

.economy-tag {
    color: var(--primary) !important;
    font-weight: bold;
    font-size: 1.1rem !important;
    text-align: center;
    margin-top: 15px;
    border: none !important;
}

.whatsapp-note {
    font-size: 0.8rem;
    margin-top: 15px;
    opacity: 0.8;
}

/* =========================================
   DOBRA 5: FAQ & FOOTER
========================================= */
.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
    width: 100%;
}

.faq-item h3 {
    color: var(--text-dark-blue);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.faq-item p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.footer {
    margin-top: 40px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
    width: 100%;
}

.footer h2 {
    font-size: 1rem;
    color: var(--text-dark-blue);
}

.footer p {
    font-weight: bold;
    color: var(--bg);
}