/* ═══════════════════════════════════════════════
   Órbita — estilos compartilhados das páginas internas
   (mesmos tokens visuais do index.html)
   ═══════════════════════════════════════════════ */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: #f2f4ef;
    color: #111;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

.c {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 64px;
}

/* ═══ NAVBAR ═══ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #0d1f09;
    border-bottom: 1px solid rgba(168,255,71,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 64px;
    height: 70px;
}

.n-logo img { height: 45px; display: block; mix-blend-mode: screen; }

.n-links { display: flex; gap: 36px; }

.n-links a {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.52);
    transition: color 0.2s;
    white-space: nowrap;
}

.n-links a:hover, .n-links a.on { color: #fff; }

.n-btn-alt {
    background: rgba(168,255,71,0.12);
    color: #a8ff47;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 11px 20px;
    border: 1.5px solid rgba(168,255,71,0.3);
    white-space: nowrap;
    transition: all 0.2s;
}

.n-btn-alt:hover { background: rgba(168,255,71,0.2); border-color: rgba(168,255,71,0.6); }

.n-btn {
    background: #a8ff47;
    color: #050e01;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 11px 24px;
    border: none;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.n-btn:hover { opacity: 0.85; }

/* ═══ BARRA VOLTAR ═══ */
.voltar-bar {
    background: #163307;
    border-bottom: 1px solid rgba(168,255,71,0.12);
}

.voltar-bar .c {
    display: flex;
    align-items: center;
    height: 46px;
}

.voltar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s, gap 0.2s;
}

.voltar-link:hover { color: #a8ff47; gap: 12px; }

/* ═══ HERO DE PÁGINA INTERNA ═══ */
.page-hero {
    background: linear-gradient(135deg, #1c3a0a 0%, #2d5c12 55%, #4a9020 100%);
    padding: 84px 0 90px;
}

.page-hero .sec-tag { color: #a8ff47; }

.page-hero h1 {
    font-size: clamp(2.1rem, 3.6vw, 3.4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.07;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
    max-width: 780px;
}

.page-hero h1 em { font-style: normal; color: #d4ff8a; }

.page-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    max-width: 620px;
    margin-bottom: 34px;
}

.page-hero .hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #1c3a0a;
    font-size: 1rem;
    font-weight: 700;
    padding: 15px 30px;
    border: none;
    transition: opacity 0.2s;
}

.page-hero .hero-btn:hover { opacity: 0.9; }

/* ═══ SEÇÕES ═══ */
.sec-light { background: #fff; padding: 90px 0; }
.sec-soft  { background: #f2f4ef; padding: 90px 0; }
.sec-dark  { background: #0d1f09; padding: 90px 0; }

.sec-head { margin-bottom: 52px; }

.sec-tag {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #3a8c1a;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.sec-h2 {
    font-size: clamp(2rem, 3.4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.038em;
    line-height: 1.08;
    margin-bottom: 14px;
}

.sec-sub {
    font-size: 1rem;
    color: #777;
    max-width: 600px;
    line-height: 1.7;
}

.sec-dark .sec-tag { color: #a8ff47; }
.sec-dark .sec-h2 { color: #fff; }
.sec-dark .sec-sub { color: rgba(255,255,255,0.48); }

/* ═══ CARDS ═══ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.card {
    background: #f2f4ef;
    border: 1.5px solid #e4e8df;
    padding: 34px 30px;
}

.sec-soft .card { background: #fff; }

.card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.card p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.72;
}

.card-num {
    font-size: 2.8rem;
    font-weight: 900;
    color: #e4e8df;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.04em;
}

.card-ico {
    width: 44px;
    height: 44px;
    background: #a8ff47;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.sec-dark .card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    transition: border-color 0.3s;
}

.sec-dark .card:hover { border-color: rgba(168,255,71,0.25); }
.sec-dark .card h3 { color: #fff; }
.sec-dark .card p { color: rgba(255,255,255,0.5); }
.sec-dark .card-num { color: rgba(168,255,71,0.28); }

/* lista com marcador quadrado lima */
.lista-check { list-style: none; display: flex; flex-direction: column; gap: 13px; }

.lista-check li {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.lista-check li::before {
    content: '';
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    background: #a8ff47;
    margin-top: 7px;
}

.sec-dark .lista-check li { color: rgba(255,255,255,0.78); }

/* ═══ CTA ═══ */
.cta-sec { background: #f2f4ef; padding: 90px 64px; }

.cta-box {
    max-width: 1160px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1c3a0a 0%, #2d5c12 55%, #4a9020 100%);
    padding: 72px 56px;
    text-align: center;
}

.cta-box h2 {
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.038em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 1.02rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 34px;
}

.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #a8ff47;
    color: #050e01;
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 34px;
    border: none;
    transition: opacity 0.2s;
}

.btn-main:hover { opacity: 0.88; }

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #0d1f09;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 36px;
    border: none;
    transition: background 0.2s, color 0.2s;
}

.btn-dark:hover { background: #a8ff47; color: #050e01; }

.center { display: flex; justify-content: center; margin-top: 42px; }

/* ═══ FOOTER ═══ */
footer { background: #070c05; padding: 60px 0 26px; }

.footer-in { max-width: 1160px; margin: 0 auto; padding: 0 64px; }

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 38px;
    margin-bottom: 44px;
}

.fbrand img {
    width: 230px;
    height: auto;
    display: block;
    margin-bottom: 15px;
    mix-blend-mode: screen;
}

.fbrand p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.28);
    line-height: 1.68;
    max-width: 230px;
}

.f-col-t {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.22);
    margin-bottom: 14px;
}

.f-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.f-links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    transition: color 0.2s;
}

.f-links a:hover { color: #a8ff47; }

.footer-bot {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.f-copy { font-size: 0.8rem; color: rgba(255,255,255,0.22); }

.f-social { display: flex; gap: 10px; }

.fsoc {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    transition: all 0.2s;
}

.fsoc:hover { border-color: #a8ff47; color: #a8ff47; }

/* ═══ RESPONSIVO ═══ */
@media(max-width: 900px) {
    .c { padding: 0 36px; }
    .navbar { padding: 0 36px; }
    .footer-in { padding: 0 36px; }
    .cta-sec { padding: 80px 36px; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media(max-width: 600px) {
    .c { padding: 0 20px; }
    .navbar { padding: 0 20px; height: 60px; }
    .n-links { display: none; }
    .footer-in { padding: 0 20px; }
    .cta-sec { padding: 60px 20px; }
    .cta-box { padding: 52px 24px; }
    .page-hero { padding: 56px 0 60px; }
    .sec-light, .sec-soft, .sec-dark { padding: 60px 0; }
    .grid-4 { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   MENU MOBILE + WHATSAPP FLUTUANTE
   ═══════════════════════════════════════════════ */

.n-burger {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    margin-left: 4px;
}

.n-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: transform 0.25s, opacity 0.2s;
}

.n-burger.on span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.n-burger.on span:nth-child(2) { opacity: 0; }
.n-burger.on span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.m-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0d1f09;
    z-index: 99;
    padding: 22px 20px 40px;
    overflow-y: auto;
}

.m-menu.on { display: block; }

.m-menu a {
    display: block;
    font-size: 1.08rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.m-menu a:active { color: #a8ff47; }

.m-menu .m-cta {
    background: #a8ff47;
    color: #050e01;
    font-weight: 700;
    text-align: center;
    padding: 15px;
    border: none;
    margin-top: 22px;
}

.m-menu .m-cta-alt {
    background: rgba(168,255,71,0.12);
    color: #a8ff47;
    border: 1.5px solid rgba(168,255,71,0.3);
    text-align: center;
    padding: 13px;
    margin-top: 10px;
    font-weight: 600;
}

body.trava { overflow: hidden; }

.wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 6px 22px rgba(0,0,0,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.wa-float:hover {
    transform: scale(1.07);
    box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}

.wa-float svg { width: 30px; height: 30px; display: block; }

@media(max-width: 600px) {
    .n-burger { display: flex; }
    .navbar > div:last-of-type .n-btn-alt,
    .navbar > div:last-of-type .n-btn { display: none; }
    .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
    .wa-float svg { width: 27px; height: 27px; }
}
