/* ==========================================================================
   RESET & VARIÁVEIS GLOBAIS
   ========================================================================== */
:root {
    /* Paleta Principal */
    --primary-color: #c5f4e7;
    --primary-dark: #8ee3cc;
    --primary-light: #eafdff;
    
    /* Tons Metálicos/Secundários */
    --bg-light: #F6F7F8;
    --bg-metallic: #E9ECEF;
    --border-metallic: #DDE1E6;
    --subtle-gray: #BFC5CB;
    
    /* Texto & Destaques */
    --text-color: #2D3436;
    --text-muted: #636e72;
    --gold-premium: #D4AF37;
    --gold-glow: rgba(212, 175, 55, 0.35);
    
    /* Tipografia */
    --font-main: 'Nunito', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    /* Sombras & Efeitos */
    --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 12px 30px rgba(212, 175, 55, 0.25);
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.8);
    
    /* Transições */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================================
   LAYOUT & CONTAINER
   ========================================================================== */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-metallic {
    background-color: var(--bg-metallic);
}

.text-center {
    text-align: center;
}

/* ==========================================================================
   GLASSMORPHISM & CARDS
   ========================================================================== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
}

.glass-card:hover {
    box-shadow: var(--shadow-hover);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(246, 247, 248, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-metallic);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-color);
    letter-spacing: -0.5px;
}

.logo span {
    color: #10b981;
    background: var(--primary-color);
    padding: 2px 8px;
    border-radius: 8px;
    margin-right: 4px;
}

.btn-header {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    padding: 140px 0 80px 0;
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--bg-light) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--primary-color);
    color: var(--text-color);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
}

.highlight {
    background: linear-gradient(120deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 2px 10px;
    border-radius: 8px;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.cta-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.hero-card {
    padding: 12px;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: cover;
}

/* ==========================================================================
   BOTÕES
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: 2px solid var(--primary-dark);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--text-color);
    color: #fff;
}

.btn-secondary:hover {
    background-color: #000;
    transform: translateY(-3px);
}

.btn-gold {
    background: linear-gradient(135deg, #e6c659 0%, var(--gold-premium) 100%);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-glow {
    box-shadow: 0 10px 25px rgba(197, 244, 231, 0.8);
}

.btn-glow-gold {
    box-shadow: var(--shadow-gold);
}

.btn-full {
    width: 100%;
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ==========================================================================
   BENEFÍCIOS
   ========================================================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.benefit-card {
    padding: 30px;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-dark);
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-box svg {
    width: 26px;
    height: 26px;
    stroke: var(--text-color);
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   O QUE VOCÊ VAI RECEBER
   ========================================================================== */
.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.deliverable-box {
    padding: 40px 30px;
    text-align: center;
}

.deliverable-box:hover {
    transform: translateY(-5px);
}

.deliverable-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.deliverable-box h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.deliverable-box p {
    color: var(--text-muted);
}

/* ==========================================================================
   PARA QUEM É ESTE MATERIAL?
   ========================================================================== */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.audience-card {
    padding: 30px;
    position: relative;
}

.check-badge {
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 15px;
}

.audience-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.audience-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   DIFERENCIAIS
   ========================================================================== */
.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.diff-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid var(--border-metallic);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
}

.diff-card:hover {
    transform: translateY(-3px);
    border-color: var(--subtle-gray);
}

.star {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 10px;
}

.diff-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.diff-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   SEÇÃO DE PLANOS (PRICING) - AJUSTE NA CAPA DA IMAGEM
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
}

.pricing-card {
    padding: 35px 30px;
    position: relative;
    background: #fff;
}

/* Ajustes para a imagem aparecer por completo sem cortes */
.card-img-wrapper {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Exibe a imagem completa sem cortar */
    border-radius: 12px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-metallic);
}

.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.price {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
}

.currency {
    font-size: 1.4rem;
    vertical-align: top;
    margin-right: 4px;
}

.price-period {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bonus-item {
    background-color: #fffdf0;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px dashed var(--gold-premium);
}

/* Estilos Específicos para o Card Premium */
.premium-card {
    transform: scale(1.04);
    border: 2px solid var(--gold-premium);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.premium-card:hover {
    transform: scale(1.06);
}

.gold-text {
    color: var(--gold-premium);
}

.ribbon-wrapper {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.gold-badge {
    background: linear-gradient(135deg, #f3d05b 0%, var(--gold-premium) 100%);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 6px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
}

/* ==========================================================================
   GARANTIA / TRUST
   ========================================================================== */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.trust-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 10px;
}

.trust-item h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.trust-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-accordion {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    padding: 0;
    overflow: hidden;
    background: #fff;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-color);
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    font-size: 1.4rem;
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: all 0.3s ease-out;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    padding: 30px 0;
    background-color: var(--text-color);
    color: var(--subtle-gray);
    font-size: 0.9rem;
}

/* ==========================================================================
   ANIMAÇÕES REVEAL (SCROLL)
   ========================================================================== */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ==========================================================================
   RESPONSIVIDADE (MOBILE & TABLET)
   ========================================================================== */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-cta {
        align-items: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .premium-card {
        transform: scale(1);
    }
    
    .premium-card:hover {
        transform: scale(1.02);
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .btn {
        width: 100%;
    }
}