@import url("https://use.typekit.net/gju5nbu.css");

:root {
    --ink: #0a0e1a;
    --ink-soft: #141a2b;
    --navy: #16324a;
    --crimson: #c81d45;
    --crimson-deep: #9c1636;
    --amber: #e8a23d;
    --paper: #ffffff;
    --paper-tint: #f3f5f7;
    --line: #e2e6ea;
    --text: #1a2230;
    --text-muted: #5c6472;
    --text-on-dark: #eef1f5;
    --text-on-dark-muted: #9aa4b5;
    --radius: 2px;
    --input-background: #222737;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "carbona-variable",Arial,sans-serif;
    font-variation-settings: "MONO" 0, "slnt" 0, "wght" 440;
    color: var(--text);
    background: var(--paper);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: "carbona-variable",Georgia,serif;
    font-variation-settings: "MONO" 0, "slnt" 0, "wght" 230;
    letter-spacing: -0.01em;
    margin: 0;
}

p {
    margin: 0;
}

a {
    color: inherit;
}

img, svg {
    display: block;
    max-width: 100%;
}

.wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 28px;
}

.wrap-narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ---------- top bar ---------- */
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(10,14,26,0.92);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
}

.logo-img {
    height: 39px;
    width: auto;
    display: block;
}

.logo-mark {
    font-family: "carbona-variable",serif;
    font-variation-settings: "MONO" 0, "slnt" 0, "wght" 230;
    font-size: 22px;
    color: var(--crimson);
}

.logo-sup {
    font-size: 11px;
    color: var(--crimson);
    position: relative;
    top: -8px;
}

.logo-word {
    font-size: 13px;
    letter-spacing: 0.02em;
    color: var(--text-on-dark-muted);
}

.topnav {
    display: flex;
    align-items: center;
    gap: 30px;
}

    .topnav a {
        font-size: 13.5px;
        color: var(--text-on-dark-muted);
        text-decoration: none;
    }

        .topnav a:hover {
            color: #fff;
        }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

    .nav-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: #fff;
        margin: 5px 0;
    }

.topnav-cta-mobile {
    display: none;
}

@media (max-width:860px) {
    .topnav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--ink);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

        .topnav.open {
            display: flex;
        }

        .topnav a {
            width: 100%;
            padding: 14px 28px;
            border-top: 1px solid rgba(255,255,255,0.06);
        }

    .topnav-cta-mobile {
        display: block;
        color: var(--crimson) !important;
        font-variation-settings: "MONO" 0, "slnt" 0, "wght" 700;
    }

    .nav-toggle {
        display: block;
    }

    .topbar-cta {
        display: none;
    }
}

.topbar-cta {
    font-size: 13px;
    font-variation-settings: "MONO" 0, "slnt" 0, "wght" 700;
    color: #fff;
    background: var(--crimson);
    padding: 10px 20px;
    border-radius: var(--radius);
    text-decoration: none;
    white-space: nowrap;
}

/* ---------- hero ---------- */
.hero {
    background: #0a0e1a;
    color: var(--text-on-dark);
    position: relative;
    overflow: hidden;
    padding: 72px 0 64px;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse 1100px 650px at 88% -15%, rgba(200,29,69,0.32), transparent 60%), radial-gradient(ellipse 700px 500px at 8% 105%, rgba(232,162,61,0.14), transparent 60%), linear-gradient(160deg, rgba(10,14,26,0.94) 0%, rgba(19,26,44,0.88) 42%, rgba(26,36,64,0.85) 78%, rgba(10,14,26,0.95) 100%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: end;
}

.hero-eyebrow {
    font-size: 13px;
    color: var(--amber);
    font-variation-settings: "MONO" 0, "slnt" 0, "wght" 700;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.14;
    color: #fff;
    max-width: 19ch;
    font-variation-settings: "MONO" 0, "slnt" 0, "wght" 800;
}

    .hero h1 em {
        font-style: normal;
        font-variation-settings: "MONO" 0, "slnt" 0, "wght" 850;
        color: #fff;
    }

.hero-sub {
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-on-dark-muted);
    max-width: 46ch;
}

.hero-facts {
    margin-top: 52px;
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.hero-fact-label {
    font-size: 11px;
    color: var(--text-on-dark-muted);
    margin-bottom: 4px;
}

.hero-fact-value {
    font-size: 16px;
    color: #fff;
    font-variation-settings: "MONO" 0, "slnt" 0, "wght" 700;
}

.hero-cta-row {
    margin-top: 36px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 14px;
    font-variation-settings: "MONO" 0, "slnt" 0, "wght" 700;
    border-radius: var(--radius);
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--crimson);
    color: #fff;
}

    .btn-primary:hover {
        background: var(--crimson-deep);
    }

.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}

.hero-note {
    font-size: 13px;
    color: var(--text-on-dark-muted);
}

.route-card {
    position: relative;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 26px;
}

.route-card-title {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
}

.route-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 11px 0;
    border-top: 1px solid rgba(255,255,255,0.09);
}

    .route-item:first-of-type {
        border-top: none;
    }

.confirmed-logos {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    padding: 8px 0 4px;
    flex-wrap: wrap;
}

.confirmed-logo {
    height: 44px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.confirmed-logo-amazon {
    height: 32px;
}

.route-num {
    font-family: "carbona-variable",serif;
    font-variation-settings: "MONO" 0, "slnt" 0, "wght" 800;
    font-size: 15px;
    color: var(--amber);
    width: 20px;
    flex-shrink: 0;
}

.route-name {
    font-size: 14.5px;
    color: #fff;
    font-variation-settings: "MONO" 0, "slnt" 0, "wght" 800;
}

.route-day {
    font-size: 12px;
    color: var(--text-on-dark-muted);
}

/* ---------- section shell ---------- */
section {
    padding: 76px 0;
}

.section-tint {
    background: var(--paper-tint);
}

.kicker {
    font-size: 13px;
    color: var(--crimson);
    font-variation-settings: "MONO" 0, "slnt" 0, "wght" 700;
    margin-bottom: 14px;
}

.section-head {
    max-width: 640px;
    margin-bottom: 44px;
}

    .section-head h2 {
        font-size: 30px;
        color: var(--ink);
        line-height: 1.25;
    }

    .section-head p {
        margin-top: 14px;
        color: var(--text-muted);
        font-size: 16px;
        max-width: 60ch;
    }

/* ---------- objetivo ---------- */
.objetivo-section {
    position: relative;
    overflow: hidden;
}

    .objetivo-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 640px;
        height: 420px;
        background-image: url("images/elig-bg.jpeg");
        background-size: cover;
        background-position: top left;
        opacity: 0.10;
        mask-image: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, transparent 65%);
        -webkit-mask-image: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, transparent 65%);
        pointer-events: none;
        z-index: 0;
    }

.objetivo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.objetivo-lead {
    font-size: 21px;
    line-height: 1.5;
    color: var(--ink);
    font-family: "carbona-variable",serif;
    font-variation-settings: "MONO" 0, "slnt" 0, "wght" 230;
}

.objetivo-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.objetivo-list-item {
    display: flex;
    gap: 16px;
}

    .objetivo-list-item .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--crimson);
        margin-top: 8px;
        flex-shrink: 0;
    }

    .objetivo-list-item p {
        color: var(--text-muted);
        font-size: 15px;
    }

    .objetivo-list-item strong {
        color: var(--ink);
    }

/* ---------- visits ---------- */
.visits {
    position: relative;
}

.visit-row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 0 32px;
}

.visit-track {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.visit-node {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "carbona-variable",serif;
    font-variation-settings: "MONO" 0, "slnt" 0, "wght" 800;
    font-size: 17px;
    flex-shrink: 0;
}

    .visit-node.tbd {
        background: var(--paper-tint);
        color: var(--text-muted);
        border: 1px dashed var(--text-muted);
    }

.visit-line {
    width: 2px;
    flex: 1;
    background: var(--line);
    margin: 4px 0;
}

.visit-card {
    padding: 0 0 64px;
}

    .visit-card:last-child .visit-card-inner {
        padding-bottom: 0;
    }

.visit-day {
    font-size: 12px;
    color: var(--text-muted);
    font-variation-settings: "MONO" 0, "slnt" 0, "wght" 700;
    margin-bottom: 10px;
}

.visit-media {
    aspect-ratio: 16/8;
    border-radius: var(--radius);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

    .visit-media svg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .visit-media img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.visit-media-tag {
    position: absolute;
    bottom: 12px;
    right: 14px;
    font-size: 10.5px;
    color: rgba(255,255,255,0.55);
    background: rgba(0,0,0,0.28);
    padding: 4px 9px;
    border-radius: 2px;
}

.visit-body {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr;
    gap: 36px;
}

.visit-name {
    font-size: 26px;
    color: var(--ink);
    margin-bottom: 10px;
    font-variation-settings: "MONO" 0, "slnt" 0, "wght" 850;
}

.visit-briefing {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.65;
}

.visit-objective-label {
    font-size: 12px;
    color: var(--crimson);
    font-variation-settings: "MONO" 0, "slnt" 0, "wght" 700;
    margin-bottom: 8px;
}

.visit-objective {
    font-size: 15px;
    color: var(--text);
    line-height: 1.65;
}

.visit-tbd-note {
    font-size: 14px;
    color: var(--text-muted);
    font-variation-settings: "MONO" 0, "slnt" 0, "wght" 400;
    border-left: 2px solid var(--line);
    padding-left: 16px;
}

/* ---------- imersão + webinar highlight ---------- */
.highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.highlight-step {
    display: inline-block;
    font-size: 11px;
    color: var(--amber);
    font-variation-settings: "MONO" 0, "slnt" 0, "wght" 700;
    letter-spacing: 0.03em;
    border: 1px solid rgba(232,162,61,0.35);
    border-radius: 20px;
    padding: 5px 12px;
    margin-bottom: 18px;
}

.highlight-card {
    background: var(--ink);
    color: var(--text-on-dark);
    padding: 36px;
    border-radius: var(--radius);
}

    .highlight-card.alt {
        background: var(--navy);
    }

.highlight-icon {
    margin-bottom: 20px;
}

.highlight-card h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 14px;
}

.highlight-logo {
    height: 46px;
    width: auto;
    margin-bottom: 16px;
}

.highlight-subtitle {
    font-size: 13px;
    color: var(--text-on-dark-muted);
    margin-bottom: 14px;
}

.highlight-card p {
    color: var(--text-on-dark-muted);
    font-size: 14.5px;
    line-height: 1.65;
}

.highlight-meta {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.14);
    font-size: 13px;
    color: var(--amber);
    font-variation-settings: "MONO" 0, "slnt" 0, "wght" 700;
}

.highlight-meta-white {
    color: #fff;
}

/* ---------- incluso ---------- */
.incluso-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.incluso-item {
    background: var(--paper);
    padding: 32px 28px;
}

.incluso-icon {
    margin-bottom: 16px;
}

.incluso-item h3 {
    font-family: "carbona-variable",sans-serif;
    font-variation-settings: "MONO" 0, "slnt" 0, "wght" 700;
    font-size: 16px;
    color: var(--ink);
    margin-bottom: 8px;
}

.incluso-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ---------- elegibilidade ---------- */
.elig-box {
    background: var(--ink);
    color: #fff;
    padding: 44px;
    border-radius: var(--radius);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

    .elig-box h2 {
        color: #fff;
        font-size: 26px;
        margin-bottom: 16px;
    }

.elig-stat-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.elig-stat {
    flex-shrink: 0;
    text-align: center;
}

.elig-stat-number {
    font-size: 44px;
    color: var(--amber);
    line-height: 1;
    font-variation-settings: "MONO" 0, "slnt" 0, "wght" 800;
}

.elig-stat-label {
    font-size: 11px;
    color: var(--text-on-dark-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.elig-stat-row h2 {
    margin-bottom: 0;
}

.elig-box .cap-note {
    color: var(--amber);
    font-size: 14px;
    font-variation-settings: "MONO" 0, "slnt" 0, "wght" 700;
    margin-bottom: 20px;
}

.elig-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.elig-list-item {
    display: flex;
    gap: 12px;
    font-size: 14.5px;
    color: var(--text-on-dark-muted);
}

    .elig-list-item .mark {
        color: var(--amber);
        flex-shrink: 0;
    }

.elig-review {
    align-self: end;
    font-size: 13px;
    color: var(--text-on-dark-muted);
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 16px;
    margin-top: 36px;
}

/* ---------- investimento ---------- */
.invest-panel {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 28px;
    border: 1px solid var(--line);
    padding: 40px;
}

.invest-value-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.invest-value {
    font-size: 44px;
    color: var(--ink);
    font-variation-settings: "MONO" 0, "slnt" 0, "wght" 800;
}

.invest-eligibility-note {
    margin-top: 14px;
    font-size: 13px;
    color: var(--text-muted);
}

.invest-value sup {
    font-size: 20px;
    top: -1.1em;
}

.invest-methods {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.invest-methods-label {
    font-size: 12px;
    color: var(--text-muted);
}

.invest-methods-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.method-pill {
    font-size: 12.5px;
    color: var(--text);
    border: 1px solid var(--line);
    padding: 6px 12px;
    border-radius: 20px;
}

/* ---------- form ---------- */
.form-shell {
    background: var(--ink-soft);
    color: #fff;
    padding: 56px;
    border-radius: var(--radius);
}

    .form-shell .section-head h2 {
        color: #fff;
    }

    .form-shell .section-head p {
        color: var(--text-on-dark-muted);
    }

.form-fieldset {
    border: none;
    padding: 0;
    margin: 0 0 32px;
}

    .form-fieldset legend {
        font-size: 12px;
        color: var(--amber);
        font-variation-settings: "MONO" 0, "slnt" 0, "wght" 700;
        padding: 0 0 14px;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.14);
        margin-bottom: 20px;
    }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

    .field.full {
        grid-column: 1/-1;
    }

    .field label {
        font-size: 13px;
        color: var(--text-on-dark-muted);
    }

    .field input, .field select {
        background: var(--input-background);
        border: 1px solid rgba(255,255,255,0.18);
        color: #fff;
        padding: 12px 14px;
        border-radius: 2px;
        font-family: "carbona-variable",sans-serif;
        font-size: 14.5px;
    }

        .field input::placeholder {
            color: rgba(255,255,255,0.32);
        }

        .field input:focus, .field select:focus {
            outline: 2px solid var(--amber);
            outline-offset: 1px;
            border-color: var(--amber);
        }

.field-note {
    font-size: 12px;
    color: var(--text-on-dark-muted);
    margin-top: -16px;
    margin-bottom: 8px;
}

.form-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 8px;
}

.form-legal {
    font-size: 12.5px;
    color: var(--text-on-dark-muted);
    max-width: 52ch;
}

.success-view {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    margin-bottom: 24px;
}

.success-view h2 {
    color: #fff;
    font-size: 26px;
    max-width: 26ch;
    margin: 0 auto 12px;
}

.success-view p {
    color: var(--text-on-dark-muted);
    font-size: 15px;
}

/* ---------- footer ---------- */
footer {
    background: var(--ink);
    color: var(--text-on-dark-muted);
    padding: 40px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
}

/* ---------- FAQ ---------- */
.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-top: 1px solid var(--line);
}

    .faq-item:last-child {
        border-bottom: 1px solid var(--line);
    }

    .faq-item summary {
        list-style: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 22px 4px;
        font-size: 16px;
        color: var(--ink);
        font-variation-settings: "MONO" 0, "slnt" 0, "wght" 600;
    }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary .plus {
            font-size: 20px;
            color: var(--crimson);
            flex-shrink: 0;
            transition: transform 0.2s ease;
        }

    .faq-item[open] summary .plus {
        transform: rotate(45deg);
    }

    .faq-item p {
        padding: 0 4px 24px;
        color: var(--text-muted);
        font-size: 14.5px;
        line-height: 1.65;
        max-width: 70ch;
    }

/* ---------- contato ---------- */
.contact-panel {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    border: 1px solid var(--line);
    padding: 36px 40px;
}

.contact-block-label {
    font-size: 12px;
    color: var(--crimson);
    font-variation-settings: "MONO" 0, "slnt" 0, "wght" 700;
    margin-bottom: 10px;
}

.contact-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .contact-row a {
        color: var(--ink);
        text-decoration: none;
        font-size: 15px;
    }

        .contact-row a:hover {
            color: var(--crimson);
        }

/* ---------- sobre / institucional ---------- */
.about-panel {
    background: radial-gradient(ellipse 900px 550px at 12% -15%, rgba(200,29,69,0.32), transparent 60%), radial-gradient(ellipse 600px 420px at 92% 105%, rgba(232,162,61,0.14), transparent 60%), linear-gradient(160deg, #0a0e1a 0%, #131a2c 42%, #1a2440 78%, #0a0e1a 100%);
    color: #fff;
    padding: 100px 52px 52px;
    border-radius: var(--radius);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

    .about-panel::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 64px), repeating-linear-gradient(0deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 64px);
        mask-image: radial-gradient(ellipse 700px 500px at 20% 15%, rgba(0,0,0,0.95), transparent 70%);
        pointer-events: none;
    }

    .about-panel::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient(90deg, rgba(232,162,61,0.09) 0 1px, transparent 1px 16px), repeating-linear-gradient(0deg, rgba(232,162,61,0.09) 0 1px, transparent 1px 16px);
        mask-image: radial-gradient(ellipse 420px 320px at 20% 15%, rgba(0,0,0,0.8), transparent 70%);
        pointer-events: none;
    }

    .about-panel > * {
        position: relative;
        z-index: 1;
    }

.about-logo {
    position: absolute;
    top: 32px;
    right: 40px;
    height: 52px;
    width: auto;
}

.about-panel h2 {
    color: #fff;
    font-size: 28px;
    max-width: 30ch;
    margin-bottom: 16px;
}

.about-panel p {
    color: var(--text-on-dark-muted);
    font-size: 14.5px;
    line-height: 1.65;
    max-width: 56ch;
}

.about-cta {
    flex-shrink: 0;
}

/* ---------- whatsapp flutuante ---------- */
.wa-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 80;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.28);
    text-decoration: none;
}

    .wa-float:hover {
        background: #20bd5a;
    }

@media (max-width:860px) {
    .wa-float {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }

    .contact-panel {
        padding: 28px;
        gap: 32px;
    }
}

@media (max-width:860px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 32px;
        max-width: none;
    }

    .objetivo-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .visit-body {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .highlight-grid {
        grid-template-columns: 1fr;
    }

    .incluso-grid {
        grid-template-columns: 1fr;
    }

    .elig-box {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .invest-panel {
        flex-direction: column;
        align-items: flex-start;
    }

    .invest-methods {
        align-items: flex-start;
    }

    .invest-methods-row {
        justify-content: flex-start;
    }

    .form-shell {
        padding: 28px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 52px 0;
    }
}
