/* =============================================
   DZ47 PARAQUEDISMO — DESIGN SYSTEM
   Baseado no template 05-adrenaline-junkie
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,400;0,700;1,700&family=Roboto:wght@300;400;700&display=swap');

:root {
    --navy: #0F172A;
    --navy-light: #1E293B;
    --navy-mid: #334155;
    --orange: #FF5A1F;
    --orange-hover: #E04811;
    --white: #FFFFFF;
    --bg-gray: #F1F5F9;
    --bg-dark: #080F1C;
    --slate: #94A3B8;
    --font-heading: 'Roboto Condensed', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

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

body {
    background-color: var(--bg-gray);
    color: var(--navy);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

html, body {
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-heading); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* =============================================
   NAV / HEADER FIXO
   ============================================= */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: var(--white);
    border-bottom: 2px solid #E2E8F0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}

.logo {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo svg { color: var(--orange); }
.logo span.logo-highlight { color: var(--orange); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a:not(.btn-orange) {
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}
.nav-links a:not(.btn-orange):hover { color: var(--orange); }

/* =============================================
   BOTÕES
   ============================================= */
.btn-orange {
    background: var(--orange);
    color: var(--white);
    padding: 13px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 15px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
    text-align: center;
    letter-spacing: 0.5px;
}
.btn-orange:hover { background: var(--orange-hover); transform: translateY(-1px); }

.btn-outline-dark {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    padding: 13px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 15px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

.btn-vip {
    background: linear-gradient(135deg, #1E3A5F 0%, #0F172A 100%);
    color: var(--white);
    padding: 13px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 15px;
    text-transform: uppercase;
    border: 2px solid rgba(255,90,31,0.4);
    cursor: pointer;
    text-decoration: none;
    transition: 0.2s;
    display: inline-block;
    text-align: center;
}
.btn-vip:hover { border-color: var(--orange); transform: translateY(-1px); }

.w-full { width: 100%; }

/* =============================================
   HERO
   ============================================= */
.hero {
    min-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.82) 55%, rgba(255,255,255,0.1) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 640px;
    padding: 60px 40px;
}

.hero-eyebrow {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--orange);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-eyebrow::before { content: ''; width: 30px; height: 2px; background: var(--orange); display: inline-block; }

.hero h1 {
    font-size: clamp(32px, 8vw, 72px);
    line-height: 1.0;
    margin-bottom: 20px;
    color: var(--navy);
    letter-spacing: -1px;
    text-transform: uppercase;
}

.hero h1 .highlight { color: var(--orange); }

.hero .sub {
    font-size: 17px;
    color: var(--navy-light);
    font-weight: 400;
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-ctas { display: flex; gap: 15px; flex-wrap: wrap; }

/* Hero com VSL — centralizando o player */
.hero-vsl {
    min-height: auto;
    padding: 80px 0;
    background: var(--navy);
    color: var(--white);
    text-align: center;
}
.hero-vsl .hero-eyebrow { justify-content: center; }
.hero-vsl .hero-eyebrow::before { display: none; }
.hero-vsl h1 { color: var(--white); margin: 0 auto 16px; }
.hero-vsl .sub { color: var(--slate); margin: 0 auto 36px; }

.vsl-wrapper {
    max-width: 820px;
    margin: 0 auto 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    background: #000;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,90,31,0.3);
}
.vsl-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--slate);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
}
.vsl-placeholder svg { color: var(--orange); opacity: 0.8; }

/* =============================================
   SEÇÃO 2 — DOR / CHOQUE DE REALIDADE
   ============================================= */
.pain-section {
    background: var(--white);
    padding: 100px 0;
}
.pain-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.pain-visual {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    aspect-ratio: 4/5;
}
.section-label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--orange);
    margin-bottom: 12px;
}
.pain-section h2 {
    font-size: clamp(28px, 6vw, 46px);
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--navy);
}
.pain-section p {
    color: var(--navy-light);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}
.pain-section p strong { color: var(--navy); }

.emphasis-block {
    border-left: 4px solid var(--orange);
    padding: 20px 24px;
    background: var(--bg-gray);
    border-radius: 0 6px 6px 0;
    margin-top: 30px;
}
.emphasis-block p {
    font-size: 16px;
    font-style: italic;
    color: var(--navy-light);
    margin: 0;
}
.emphasis-block strong { color: var(--navy); }

/* =============================================
   SEÇÃO 3 — SUPREMACIA TÉCNICA
   ============================================= */
.tech-section {
    background: var(--navy);
    color: var(--white);
    padding: 100px 0;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-label { justify-content: center; display: flex; }
.section-header h2 {
    font-size: clamp(28px, 6vw, 52px);
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 14px;
    color: var(--white);
}
.section-header p {
    color: var(--slate);
    font-size: 17px;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Métricas */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 70px;
}
.metric-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    border-bottom: 4px solid var(--orange);
    transition: transform 0.3s;
}
.metric-card:hover { transform: translateY(-4px); }
.metric-card .number {
    font-family: var(--font-heading);
    font-size: 62px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--orange);
}
.metric-card .label {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--slate);
}

/* Diferenciais */
.diff-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.diff-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 32px 28px;
    border-top: 3px solid var(--orange);
}
.diff-item .icon { font-size: 32px; margin-bottom: 16px; }
.diff-item h4 {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--white);
}
.diff-item p { font-size: 15px; color: var(--slate); line-height: 1.7; }

/* =============================================
   SEÇÃO 4 — RESERVA IRRESISTÍVEL
   ============================================= */
.reserve-section {
    background: var(--bg-gray);
    padding: 100px 0;
}
.reserve-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.reserve-text .section-label { margin-bottom: 12px; }
.reserve-text h2 {
    font-size: clamp(28px, 6vw, 48px);
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--navy);
}
.reserve-text p {
    color: var(--navy-light);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}
.reserve-text strong { color: var(--navy); }

.bonus-box {
    background: var(--navy);
    color: var(--white);
    border-radius: 8px;
    padding: 32px;
    border-left: 5px solid var(--orange);
    margin-top: 30px;
}
.bonus-box .bonus-tag {
    font-family: var(--font-heading);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    margin-bottom: 8px;
}
.bonus-box h4 {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--white);
}
.bonus-box p { font-size: 15px; color: var(--slate); margin: 0; }

.reserve-visual {
    background: var(--white);
    border-radius: 12px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    text-align: center;
}
.price-big-label {
    font-family: var(--font-heading);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--slate);
    margin-bottom: 8px;
}
.price-big {
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 4px;
}
.price-big-sub {
    font-size: 14px;
    color: var(--navy-light);
    margin-bottom: 30px;
}
.security-items { list-style: none; margin: 24px 0; text-align: left; }
.security-items li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--navy-light);
    font-weight: 400;
}
.security-items li::before { content: '✓'; color: var(--orange); font-weight: 700; font-size: 16px; }

/* =============================================
   SEÇÃO 5 — OFERTA / CARDS
   ============================================= */
.offer-section {
    background: var(--navy);
    padding: 100px 0;
}
.offer-section .section-header h2 { color: var(--white); }

.cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 980px;
    margin: 0 auto;
}

.offer-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}
.offer-card:hover { transform: translateY(-6px); }

.offer-card.featured {
    border: 2px solid var(--orange);
    position: relative;
}
.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-header {
    background: var(--bg-gray);
    padding: 30px 36px 24px;
    border-bottom: 1px solid #E2E8F0;
}
.card-tag {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    margin-bottom: 8px;
}
.card-header h3 {
    font-size: 28px;
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 8px;
}
.card-header p { font-size: 14px; color: var(--navy-light); font-style: italic; }

.card-body {
    padding: 30px 36px;
    flex: 1;
}
.card-features { list-style: none; margin-bottom: 0; }
.card-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 15px;
    color: var(--navy-light);
    line-height: 1.5;
}
.card-features li::before { content: '→'; color: var(--orange); font-weight: 700; flex-shrink: 0; padding-top: 1px; }
.card-features li strong { color: var(--navy); }

.card-footer {
    background: var(--navy);
    padding: 30px 36px;
    color: var(--white);
}
.card-price-label { font-size: 12px; color: var(--slate); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.card-price-reserve {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 2px;
}
.card-price-rest {
    font-size: 13px;
    color: var(--slate);
    margin-bottom: 20px;
}
.card-note { font-size: 11px; color: var(--slate); text-align: center; margin-top: 12px; }

/* =============================================
   SEÇÃO 6 — FAQ
   ============================================= */
.faq-section {
    background: var(--white);
    padding: 100px 0;
}
.faq-section .section-header h2 { color: var(--navy); }
.faq-section .section-header p { color: var(--navy-light); }

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
    border-bottom: 1px solid #E2E8F0;
}
.faq-item:first-child { border-top: 1px solid #E2E8F0; }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    cursor: pointer;
    gap: 20px;
}
.faq-question h4 {
    font-size: 17px;
    text-transform: none;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
}
.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    color: var(--orange);
    font-weight: 700;
    transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 22px; }
.faq-answer p {
    font-size: 16px;
    color: var(--navy-light);
    line-height: 1.8;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    background: var(--bg-dark);
    color: var(--slate);
    padding: 70px 0 40px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.footer-brand .logo {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 16px;
    display: inline-flex;
}
.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--slate);
    max-width: 280px;
    font-style: italic;
}
.footer-col h5 {
    font-family: var(--font-heading);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    color: var(--slate);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-col p { font-size: 14px; line-height: 1.8; }
.footer-col p a { color: var(--orange); text-decoration: none; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 12px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--slate); text-decoration: none; font-size: 12px; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }

/* =============================================
   REVEAL ANIMATION
   ============================================= */
[data-reveal] { opacity: 0; transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
[data-reveal="up"]   { transform: translateY(40px); }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"]{ transform: translateX(40px); }
[data-reveal="fade"] { transform: none; }
[data-reveal].revealed { opacity: 1; transform: translate(0, 0); }

/* =============================================
   RESPONSIVO
   ============================================= */
@media (max-width: 900px) {
    .pain-inner,
    .reserve-inner { grid-template-columns: 1fr; gap: 40px; }
    .pain-visual { aspect-ratio: 16/9; }
    .metrics-grid { grid-template-columns: 1fr; }
    .diff-list { grid-template-columns: 1fr; }
    .cards-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    nav { padding: 16px 20px; }
    .nav-links { display: none; }
    .hero-content { padding: 40px 20px; }
    .hero::before { background: rgba(255,255,255,0.93); }
    .offer-section,
    .tech-section,
    .pain-section,
    .reserve-section,
    .faq-section { padding: 70px 0; }
    .hero-vsl { padding: 60px 0; }
}
