/* ── TOKENS ── */
:root {
    --bg:      #060d06;
    --bg2:     #0b180b;
    --card:    #0f1f0f;
    --border:  #1c3a1c;
    --primary: #39ff14;
    --fg:      #f2f2f2;
    --fg2:     rgba(242,242,242,.80);
    --muted:   rgba(242,242,242,.45);
    --font:    'Work Sans', sans-serif;
    --r:       8px;
    --max:     1200px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font); background: var(--bg); color: var(--fg); line-height: 1.6; }
a     { text-decoration: none; }
img   { max-width: 100%; display: block; }

/* ── UTILITIES ── */
.container   { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.bg2         { background: var(--bg2); }
.txt-center  { text-align: center; }
.txt-primary { color: var(--primary); }
.glow        { text-shadow: 0 0 25px rgba(57,255,20,.55), 0 0 55px rgba(57,255,20,.2); }

/* ── BUTTON ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    font-family: var(--font); font-weight: 700; text-transform: uppercase;
    letter-spacing: .1em; border-radius: var(--r); padding: 1rem 2.25rem;
    font-size: 1rem; cursor: pointer; border: none;
    transition: transform .25s, box-shadow .25s;
}
.btn-neon {
    background: linear-gradient(120deg, #1ed60e, #39ff14, #1ed60e);
    background-size: 200% auto;
    color: #040c04;
    box-shadow: 0 0 22px rgba(57,255,20,.45);
    animation: neonPulse 2.6s ease-in-out infinite;
}
.btn-neon:hover { transform: translateY(-2px); box-shadow: 0 0 38px rgba(57,255,20,.7); }
@keyframes neonPulse {
    0%,100% { box-shadow: 0 0 22px rgba(57,255,20,.45); }
    50%      { box-shadow: 0 0 42px rgba(57,255,20,.75), 0 0 80px rgba(57,255,20,.2); }
}

/* ── SECTION ── */
.section { padding: 5rem 0; }
@media(min-width:768px){ .section{ padding: 7rem 0; } }

.sec-title {
    font-size: clamp(1.9rem,5.5vw,3.5rem);
    font-weight: 900; text-transform: uppercase;
    text-align: center; line-height: 1.05; margin-bottom: 1rem;
}
.sec-sub {
    color: var(--muted); text-align: center; font-size: 1.1rem;
    margin-bottom: 3.5rem; max-width: 620px; margin-left: auto; margin-right: auto;
}

/* ── SCROLL FADE ── */
.fi { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.fi.show { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════
    HERO
════════════════════════════════ */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background: url('img/secao1-img1.png') center/cover no-repeat;
    z-index: 0;
}
.hero-ov {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to bottom,
    rgba(6,13,6,.72) 0%, rgba(6,13,6,.38) 42%, rgba(6,13,6,1) 100%);
}
.hero-body {
    position: relative; z-index: 2;
    text-align: center; padding: 0 1.5rem; max-width: 900px;
}
.hero-eyebrow {
    color: var(--primary); font-weight: 600; text-transform: uppercase;
    letter-spacing: .32em; font-size: .82rem; margin-bottom: 1rem;
    text-shadow: 0 0 14px rgba(57,255,20,.55);
}
.hero-h1 {
    font-size: clamp(3.2rem,11vw,7.5rem); font-weight: 900;
    text-transform: uppercase; line-height: .92; margin-bottom: 1rem; letter-spacing:-.02em;
}
.hero-h1 span { display: block; color: var(--primary); }
.hero-h1 span.glow { text-shadow: 0 0 35px rgba(57,255,20,.65), 0 0 70px rgba(57,255,20,.28); }
.hero-desc {
    color: var(--fg2); font-size: 1.1rem; max-width: 600px;
    margin: 0 auto 2rem; font-weight: 300; line-height: 1.75;
}
.badges { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem 2rem; margin-bottom: 2.5rem; }
.badge  { display: flex; align-items: center; gap: .5rem; font-size: .95rem; font-weight: 500; }
.dot    {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--primary); flex-shrink: 0;
    box-shadow: 0 0 8px rgba(57,255,20,.7);
}

/* ════════════════════════════════
    DESTINOS
════════════════════════════════ */
.dest-grid {
    display: grid; gap: 1.2rem;
    grid-template-columns: 1fr;
}
@media(min-width:600px) { .dest-grid{ grid-template-columns:1fr 1fr; } }
@media(min-width:1024px){ .dest-grid{ grid-template-columns:repeat(3,1fr); } }

.dest-card {
    position: relative; overflow: hidden;
    border-radius: var(--r); aspect-ratio: 4/3; cursor: default;
}
.dest-img {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    transition: transform .5s ease;
}
.dest-card:hover .dest-img { transform: scale(1.08); }
.dest-ov  {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(6,13,6,.9) 0%, rgba(6,13,6,.18) 65%, transparent 100%);
}
.dest-dot {
    position: absolute; top: .75rem; right: .75rem;
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--primary); opacity: 0; transition: opacity .3s;
    box-shadow: 0 0 12px rgba(57,255,20,.85);
}
.dest-card:hover .dest-dot { opacity: 1; }
.dest-label {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 1.2rem;
    font-size: .95rem; font-weight: 800; text-transform: uppercase; line-height: 1.2;
}

/* BG images – fallback gradient per card */
.d1 { background-image: url('img/secao2-pequenoslencois.png');
        background-color: #1a5c50; }
.d2 { background-image: url('img/secao2-grandeslencois.png');
        background-color: #8a7040; }
.d3 { background-image: url('img/secao2-deltadoparaiba.png');
        background-color: #305080; }
.d4 { background-image: url('img/secao2-revoadadosguaras.png');
        background-color: #7a3020; }
.d5 { background-image: url('img/secao2-camocim.png');
        background-color: #206070; }
.d6 { background-image: url('img/secao2-jericoacoara.png');
        background-color: #503060; }

.dest-note { text-align: center; color: var(--muted); font-size: .82rem;
                text-transform: uppercase; letter-spacing: .1em; margin-top: 1.25rem; }

/* ════════════════════════════════
    INCLUSO
════════════════════════════════ */
.feat-grid {
    display: grid; gap: 1rem;
    grid-template-columns: 1fr;
}
@media(min-width:640px) { .feat-grid{ grid-template-columns:1fr 1fr; } }
@media(min-width:1024px){ .feat-grid{ grid-template-columns:repeat(3,1fr); } }

.feat-card {
    display: flex; align-items: flex-start; gap: 1rem;
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--r); padding: 1.5rem;
    transition: border-color .3s;
}
.feat-card:hover { border-color: rgba(57,255,20,.4); }
.feat-card svg  { flex-shrink: 0; margin-top: 2px; }
.feat-card p    { color: var(--fg2); font-size: .95rem; line-height: 1.55; }

.hosp-box {
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--r); padding: 2rem; text-align: center; margin-top: 1.5rem;
}
.hosp-head {
    display: flex; align-items: center; justify-content: center;
    gap: .5rem; margin-bottom: 1.25rem;
}
.hosp-head h3 { font-size: 1.2rem; font-weight: 700; text-transform: uppercase; }
.hosp-cities  { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem 2.25rem; }
.hosp-cities span { color: var(--fg2); font-weight: 500; }

/* ════════════════════════════════
    SUPORTE
════════════════════════════════ */
.sup-grid {
    display: grid; gap: 1rem;
    grid-template-columns: 1fr 1fr;
}
@media(min-width:768px){ .sup-grid{ grid-template-columns:repeat(4,1fr); } }

.sup-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--r); padding: 1.25rem;
    display: flex; align-items: flex-start; gap: .75rem;
    font-size: .88rem; line-height: 1.45; color: var(--fg2);
    transition: border-color .3s;
}
.sup-card:hover { border-color: rgba(57,255,20,.4); }
.sup-card svg { flex-shrink: 0; margin-top: 2px; }

/* ════════════════════════════════
    COMO FUNCIONA
════════════════════════════════ */
.steps { max-width: 780px; margin: 0 auto; }
.step  { display: flex; align-items: flex-start; gap: 1.5rem; margin-bottom: 1.5rem; }
.step-num {
    font-size: clamp(2rem,5vw,2.8rem); font-weight: 900;
    color: rgba(57,255,20,.22); line-height: 1; flex-shrink: 0;
    min-width: 3rem; transition: color .3s;
}
.step:hover .step-num { color: var(--primary); }
.step-body {
    border-left: 2px solid var(--border); padding: .2rem 0 .2rem 1.5rem;
    transition: border-color .3s;
}
.step:hover .step-body { border-color: var(--primary); }
.step-title { font-size: 1.12rem; font-weight: 700; text-transform: uppercase; margin-bottom: .2rem; }
.step-desc  { color: var(--muted); font-size: .93rem; }

/* ════════════════════════════════
    REQUISITOS
════════════════════════════════ */
.req-grid {
    display: grid; gap: 1rem; max-width: 900px; margin: 0 auto;
    grid-template-columns: 1fr 1fr;
}
@media(max-width:480px){ .req-grid{ grid-template-columns:1fr; } }

.req-card {
    display: flex; align-items: center; gap: 1rem;
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--r); padding: 1.5rem;
    font-weight: 500; color: var(--fg2); transition: border-color .3s;
}
.req-card:hover { border-color: rgba(57,255,20,.4); }
.req-card svg { flex-shrink: 0; }

/* ════════════════════════════════
    PREÇOS
════════════════════════════════ */
.price-grid {
    display: grid;
    gap: 1.75rem;
    margin-bottom: 1.5rem;
    grid-template-columns: 1fr;
}
@media(min-width:600px)  { .price-grid{ grid-template-columns:repeat(2,1fr); } }
@media(min-width:1024px) { .price-grid{ grid-template-columns:repeat(4,1fr); } }

.price-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--r); padding: 1.75rem 1.5rem;
    text-align: center; transition: border-color .3s;
}
.price-card:hover { border-color: rgba(57,255,20,.4); }
.price-tag    { font-size: 1rem; font-weight: 700; text-transform: uppercase;
                color: var(--primary); margin-bottom: 1rem; }
.price-period { color: var(--muted); font-size: .83rem; margin-bottom: .2rem; }
.price-val    { font-size: 2rem; font-weight: 800; line-height: 1; margin-bottom: .25rem; }
.price-note   { color: var(--muted); font-size: .76rem; }

.price-feat {
    background: var(--card); border: 1px solid rgba(57,255,20,.3);
    border-radius: var(--r); padding: 2rem; text-align: center;
    max-width: 450px; margin: 0 auto 2.5rem;
    box-shadow: 0 0 22px rgba(57,255,20,.07);
}
.price-feat-label {
    font-size: 1.1rem; font-weight: 700; text-transform: uppercase;
    color: var(--primary); margin-bottom: .75rem;
}

/* ════════════════════════════════
    PARA QUEM
════════════════════════════════ */
.whom-list  { list-style: none; max-width: 560px; margin: 3rem auto 0; }
.whom-item  {
    display: flex; align-items: center; gap: 1rem; justify-content: center;
    margin-bottom: 1.3rem; font-size: 1.1rem; color: var(--fg2);
}

/* ════════════════════════════════
    FAQ
════════════════════════════════ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--r); margin-bottom: .75rem; overflow: hidden;
}
.faq-q {
    width: 100%; background: none; border: none; color: var(--fg);
    font-family: var(--font); font-size: 1rem; font-weight: 700;
    text-transform: uppercase; text-align: left; padding: 1.25rem 1.5rem;
    cursor: pointer; display: flex; align-items: center;
    justify-content: space-between; gap: 1rem; transition: color .3s;
}
.faq-q:hover { color: var(--primary); }
.faq-chevron { flex-shrink: 0; transition: transform .3s ease; }
.faq-item.open .faq-q     { color: var(--primary); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-ans {
    max-height: 0; overflow: hidden; padding: 0 1.5rem;
    transition: max-height .38s ease, padding .38s ease;
}
.faq-item.open .faq-ans { max-height: 300px; padding: 0 1.5rem 1.3rem; }
.faq-ans p { color: var(--muted); font-size: .94rem; line-height: 1.75; }

/* ════════════════════════════════
    CTA FINAL
════════════════════════════════ */
.cta-sec { position: relative; padding: 5rem 0; overflow: hidden; }
.cta-glow {
    position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(57,255,20,.055) 0%, transparent 70%);
}
.cta-body { position: relative; max-width: 700px; margin: 0 auto; text-align: center; padding: 0 1.5rem; }
.cta-title {
    font-size: clamp(2rem,5.5vw,3.5rem); font-weight: 800;
    text-transform: uppercase; margin-bottom: 1rem; line-height: 1.08;
}
.cta-desc { color: var(--fg2); font-size: 1.05rem; margin-bottom: .75rem; }
.cta-sub  { color: var(--muted); font-size: 1rem; margin-bottom: 2.5rem; }
.cta-phone { display: flex; align-items: center; justify-content: center;
                gap: .5rem; margin-top: 1.5rem; color: var(--muted); }
.cta-phone a { color: var(--muted); transition: color .3s; }
.cta-phone a:hover { color: var(--primary); }

/* ════════════════════════════════
    FOOTER
════════════════════════════════ */
footer { padding: 2.5rem 1.5rem; border-top: 1px solid var(--border); }
.foot-inner {
    max-width: var(--max); margin: 0 auto;
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.foot-insta {
    display: flex; align-items: center; gap: .5rem;
    color: var(--muted); transition: color .3s;
}
.foot-insta:hover { color: var(--primary); }
.foot-tag {
    font-size: .82rem; text-transform: uppercase;
    letter-spacing: .18em; color: var(--muted); font-weight: 500;
}