:root {
    --bg: #f5f8fc;
    --surface: #ffffff;
    --surface-soft: #f0f5fb;
    --text: #0b2035;
    --text-strong: #061528;
    --muted: #5b7390;
    --line: rgba(20, 60, 100, 0.12);
    --line-strong: rgba(20, 60, 100, 0.22);
    --brand: #11b89b;
    --brand-2: #0fa389;
    --brand-3: #37d9bc;
    --gold: #ffc857;
    --shadow-sm: 0 4px 14px rgba(15, 45, 80, 0.06);
    --shadow: 0 14px 36px rgba(15, 45, 80, 0.10);
    --shadow-lg: 0 24px 60px rgba(15, 45, 80, 0.16);
    --radius: 16px;
    --radius-lg: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--text);
    font-family: "Manrope", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    min-height: 100vh;
    padding-top: 82px;
    background:
        radial-gradient(circle at 8% 8%, rgba(55, 217, 188, 0.16) 0%, transparent 38%),
        radial-gradient(circle at 92% 4%, rgba(255, 200, 87, 0.18) 0%, transparent 40%),
        linear-gradient(170deg, #ffffff 0%, #f5f8fc 50%, #eef4fa 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(1180px, 92vw); margin: 0 auto; }

/* ============== TOPBAR ============== */
.topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 150;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.topbar-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-strong);
}

.brand img {
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(17, 184, 155, 0.22);
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.main-menu a {
    color: var(--muted);
    padding: 8px 14px;
    border-radius: 10px;
    transition: color 0.2s, background 0.2s;
}

.main-menu a:hover {
    color: var(--text-strong);
    background: rgba(17, 184, 155, 0.10);
}

.menu-toggle {
    display: none;
    border: 1px solid var(--line-strong);
    background: #fff;
    color: var(--text);
    border-radius: 10px;
    padding: 8px 12px;
    font-weight: 700;
    cursor: pointer;
}

/* ============== BUTTONS ============== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 13px 22px;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.25s, filter 0.2s;
    white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
    color: #ffffff;
    background: linear-gradient(120deg, var(--brand) 0%, var(--brand-3) 100%);
    box-shadow: 0 12px 28px rgba(17, 184, 155, 0.32);
}
.btn-primary:hover { box-shadow: 0 16px 36px rgba(17, 184, 155, 0.42); }

.btn-secondary {
    color: var(--text-strong);
    border-color: var(--line-strong);
    background: #ffffff;
}
.btn-secondary:hover { border-color: var(--brand); color: var(--brand-2); }

.btn-header {
    color: #ffffff !important;
    background: linear-gradient(120deg, var(--brand) 0%, var(--brand-3) 100%);
    box-shadow: 0 8px 22px rgba(17, 184, 155, 0.32);
    padding: 10px 18px !important;
}

.btn-glow { position: relative; }
.btn-glow::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    z-index: -1;
    background: linear-gradient(120deg, rgba(55, 217, 188, 0.55), rgba(255, 200, 87, 0.4));
    filter: blur(14px);
    opacity: 0.7;
}

.btn-block { display: flex; width: 100%; }

/* ============== HERO ============== */
.hero {
    position: relative;
    padding: 64px 0 44px;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

.orb-one {
    width: 360px; height: 360px;
    left: -120px; top: 20px;
    background: radial-gradient(circle, rgba(55, 217, 188, 0.55) 0%, transparent 70%);
    animation: floatOne 7s ease-in-out infinite;
}

.orb-two {
    width: 420px; height: 420px;
    right: -140px; top: -80px;
    background: radial-gradient(circle, rgba(255, 200, 87, 0.5) 0%, transparent 70%);
    animation: floatTwo 9s ease-in-out infinite;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.hero-text { max-width: 580px; }

.badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 7px 14px;
    border: 1px solid rgba(17, 184, 155, 0.32);
    background: rgba(17, 184, 155, 0.10);
    color: var(--brand-2);
    font-size: 0.74rem;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    font-weight: 800;
}

.hero h1 {
    margin: 18px 0 14px;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    line-height: 1.1;
    color: var(--text-strong);
    letter-spacing: -0.5px;
    text-wrap: balance;
}

.hero .sub {
    margin: 0 0 28px;
    font-size: 1.06rem;
    color: var(--muted);
    max-width: 56ch;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-visual {
    position: relative;
    width: 100%;
}

.hero-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fefefe;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
    padding: 18px;
}

.hero-slider .slide {
    position: absolute;
    inset: 18px;
    width: calc(100% - 36px);
    height: calc(100% - 36px);
    object-fit: contain;
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.9s ease, transform 1.2s ease;
}

.hero-slider .slide.is-active {
    opacity: 1;
    transform: scale(1);
}

/* ============== SECTIONS ============== */
.section { padding: 64px 0; }

.section-head { margin-bottom: 36px; }
.section-head h2 {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    color: var(--text-strong);
    letter-spacing: -0.3px;
    line-height: 1.18;
}
.section-head p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 1.02rem;
    max-width: 62ch;
}

.section-head-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.section-head-center p { margin-left: auto; margin-right: auto; }

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--brand-2);
    background: rgba(17, 184, 155, 0.10);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
}

/* ============== FEATURES ============== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.feature-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(17, 184, 155, 0.4);
}

.feature-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-3) 100%);
    color: #fff;
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 14px;
    box-shadow: 0 8px 18px rgba(17, 184, 155, 0.28);
}

.feature-card h3 {
    margin: 0 0 6px;
    font-size: 1.08rem;
    color: var(--text-strong);
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
}

/* ============== PRICING ============== */
.section-pricing { background: linear-gradient(180deg, transparent 0%, rgba(17, 184, 155, 0.04) 100%); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    max-width: 880px;
    margin: 0 auto;
}

.plan {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    background: #ffffff;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
}

.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.plan-featured {
    border: 2px solid var(--brand);
    background: linear-gradient(170deg, #ffffff 0%, rgba(17, 184, 155, 0.06) 100%);
    box-shadow: 0 24px 60px rgba(17, 184, 155, 0.18);
}

.ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(120deg, var(--brand) 0%, var(--brand-3) 100%);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(17, 184, 155, 0.36);
}

.plan-head { margin-bottom: 18px; }

.plan-name {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-strong);
}

.plan-tag {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.plan-price {
    margin: 0 0 22px;
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: var(--text-strong);
    font-family: "Sora", sans-serif;
}

.plan-price .cur {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--muted);
}

.plan-price .val {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
}

.plan-price .per {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--muted);
    margin-left: 4px;
}

.plan-list {
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
    display: grid;
    gap: 12px;
    flex: 1;
}

.plan-list li {
    position: relative;
    padding-left: 28px;
    color: var(--text);
    font-size: 0.97rem;
}

.plan-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(17, 184, 155, 0.15);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2311b89b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-size: 12px 12px;
    background-position: center;
    background-repeat: no-repeat;
}

/* ============== CTA FINAL ============== */
.cta-final {
    border-radius: var(--radius-lg);
    padding: 40px clamp(24px, 4vw, 48px);
    background:
        radial-gradient(circle at 90% 20%, rgba(255, 200, 87, 0.28) 0%, transparent 60%),
        linear-gradient(120deg, #0d2842 0%, #0b6d5d 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-final::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.cta-final-text { position: relative; z-index: 1; max-width: 60ch; }

.cta-final h2 {
    margin: 0 0 8px;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    color: #ffffff;
    line-height: 1.18;
}

.cta-final p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
}


.site-toast-host {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9999;
    display: grid;
    gap: 10px;
    max-width: min(360px, calc(100vw - 36px));
}

.site-toast {
    transform: translateY(10px);
    opacity: 0;
    transition: opacity 0.22s ease, transform 0.22s ease;
    border-radius: 14px;
    padding: 14px 16px;
    color: #ffffff;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    background: #0f2740;
}

.site-toast.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.site-toast-success {
    background: linear-gradient(120deg, #11b89b 0%, #0f8f7a 100%);
}

.site-toast-info {
    background: linear-gradient(120deg, #0f2740 0%, #123c64 100%);
}
.cta-final .btn { position: relative; z-index: 1; }
.cta-final .btn-primary {
    background: #ffffff;
    color: var(--brand-2);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}
.cta-final .btn-primary:hover { color: var(--text-strong); }

/* ============== FAQ ============== */
.faq {
    display: grid;
    gap: 12px;
    width: 100%;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px 22px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.faq-item:hover {
    border-color: rgba(17, 184, 155, 0.4);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.faq-item h3 {
    margin: 0 0 6px;
    font-size: 1.02rem;
    color: var(--text-strong);
}

.faq-item p { margin: 0; color: var(--muted); }

/* ============== TEMPLATES ============== */
.section-templates {
    background: linear-gradient(180deg, transparent 0%, rgba(20, 60, 100, 0.04) 100%);
}

.template-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.template-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    padding: 26px 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.template-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(17, 184, 155, 0.4);
}

.template-pill {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 0.7rem;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 14px;
}

.pill-marketing {
    color: #b6471c;
    background: rgba(255, 138, 76, 0.16);
    border: 1px solid rgba(255, 138, 76, 0.32);
}

.pill-utility {
    color: #1f5fa6;
    background: rgba(56, 132, 226, 0.14);
    border: 1px solid rgba(56, 132, 226, 0.32);
}

.pill-auth {
    color: #0b6d5d;
    background: rgba(17, 184, 155, 0.14);
    border: 1px solid rgba(17, 184, 155, 0.34);
}

.template-card h3 {
    margin: 0 0 8px;
    font-size: 1.08rem;
    color: var(--text-strong);
    font-family: "Sora", sans-serif;
}

.template-card .template-title-compact {
    font-size: 0.96rem;
    white-space: nowrap;
}

.template-card > p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 0.96rem;
}

.template-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.template-list li {
    position: relative;
    padding-left: 22px;
    color: var(--text);
    font-size: 0.93rem;
}

.template-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 3px rgba(17, 184, 155, 0.16);
}

.template-note {
    margin: 24px auto 0;
    text-align: center;
    color: var(--muted);
    font-size: 0.92rem;
    max-width: 70ch;
}

/* ============== STEPS ============== */
.steps-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    counter-reset: steps;
    align-items: stretch;
}

.step-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.step-card::after {
    content: "";
    position: absolute;
    top: 42px;
    left: calc(100% - 8px);
    width: 34px;
    height: 2px;
    background: linear-gradient(90deg, rgba(17, 184, 155, 0.5) 0%, rgba(17, 184, 155, 0.15) 100%);
}

.step-card:last-child::after {
    display: none;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(17, 184, 155, 0.34);
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-3) 100%);
    color: #ffffff;
    font-family: "Sora", sans-serif;
    font-weight: 800;
    margin-bottom: 14px;
    box-shadow: 0 8px 18px rgba(17, 184, 155, 0.28);
}

.step-kicker {
    display: block;
    margin-bottom: 8px;
    color: var(--brand-2);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    font-size: 0.7rem;
    font-weight: 800;
}

.step-card h3 {
    margin: 0 0 6px;
    font-size: 1.05rem;
    color: var(--text-strong);
    font-family: "Sora", sans-serif;
}

.step-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
}

/* ============== RISK / OFICIAL ============== */
.section-risk {
    background: linear-gradient(180deg, transparent 0%, rgba(20, 60, 100, 0.04) 100%);    
}

.risk-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.risk-card {
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}

.risk-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.risk-bad {
    background: linear-gradient(170deg, rgba(229, 72, 72, 0.06) 0%, #ffffff 60%);
    border-color: rgba(229, 72, 72, 0.28);
}

.risk-good {
    background: linear-gradient(170deg, rgba(17, 184, 155, 0.08) 0%, #ffffff 60%);
    border-color: rgba(17, 184, 155, 0.32);
    box-shadow: 0 18px 48px rgba(17, 184, 155, 0.14);
}

.risk-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.72rem;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 14px;
}

.risk-tag-bad {
    color: #b22a2a;
    background: rgba(229, 72, 72, 0.12);
    border: 1px solid rgba(229, 72, 72, 0.32);
}

.risk-tag-good {
    color: #0b6d5d;
    background: rgba(17, 184, 155, 0.14);
    border: 1px solid rgba(17, 184, 155, 0.34);
}

.risk-card h3 {
    margin: 0 0 16px;
    font-family: "Sora", sans-serif;
    font-size: 1.18rem;
    color: var(--text-strong);
    line-height: 1.25;
}

.risk-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.risk-list li {
    position: relative;
    padding-left: 30px;
    color: var(--text);
    font-size: 0.96rem;
    line-height: 1.5;
}

.risk-list li strong { color: var(--text-strong); }

.risk-list-bad li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(229, 72, 72, 0.14);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e54848' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><line x1='18' y1='6' x2='6' y2='18'/><line x1='6' y1='6' x2='18' y2='18'/></svg>");
    background-size: 11px 11px;
    background-position: center;
    background-repeat: no-repeat;
}

.risk-list-good li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(17, 184, 155, 0.16);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2311b89b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-size: 12px 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.risk-cta {
    margin-top: 36px;
    margin-bottom: 24px;
    padding: clamp(28px, 4vw, 56px) clamp(22px, 4vw, 64px);
    border-radius: 28px;
    background:
        radial-gradient(120% 160% at 0% 0%, rgba(125, 250, 223, .12) 0%, transparent 55%),
        radial-gradient(120% 160% at 100% 100%, rgba(34, 210, 178, .14) 0%, transparent 55%),
        linear-gradient(135deg, #0a0f14 0%, #111c25 55%, #0d2230 100%);
    border: 1px solid rgba(125, 250, 223, .14);
    box-shadow:
        0 30px 60px -20px rgba(7, 23, 35, .55),
        inset 0 1px 0 rgba(255, 255, 255, .04);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    display: grid;
    grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
    align-items: center;
    column-gap: clamp(28px, 5vw, 64px);
    row-gap: 24px;
}

.risk-cta::before,
.risk-cta::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    z-index: -1;
    pointer-events: none;
}
.risk-cta::before {
    width: 320px; height: 320px;
    background: #11b89b;
    top: -120px; left: -80px;
    opacity: .55;
}
.risk-cta::after {
    width: 280px; height: 280px;
    background: #7dfadf;
    bottom: -120px; right: -60px;
    opacity: .35;
}

.risk-cta-media {
    position: relative;
    grid-column: 1;
    align-self: center;
    justify-self: center;
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.risk-cta-halo {
    position: absolute;
    inset: -10%;
    background: radial-gradient(closest-side, rgba(17, 184, 155, .45) 0%, rgba(17, 184, 155, 0) 70%);
    filter: blur(20px);
    z-index: 0;
    animation: riskCtaPulse 4.5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes riskCtaPulse {
    0%, 100% { transform: scale(1); opacity: .8; }
    50% { transform: scale(1.08); opacity: 1; }
}
.risk-cta-image {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
    background: transparent;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    filter: drop-shadow(0 18px 32px rgba(0, 0, 0, .45));
}

.risk-cta-body {
    grid-column: 2;
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    min-width: 0;
}

.risk-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px 6px 10px;
    border-radius: 999px;
    background: rgba(125, 250, 223, .12);
    border: 1px solid rgba(125, 250, 223, .35);
    color: #b6fbe8;
    font-family: "Sora", sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.risk-cta-badge svg { color: #7dfadf; }

.risk-cta-title {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.5rem, 2.6vw, 2.15rem);
    line-height: 1.18;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.01em;
}
.risk-cta-sub {
    margin: 0;
    font-size: clamp(.95rem, 1.3vw, 1.05rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, .78);
}

.risk-cta-pills {
    list-style: none;
    margin: 4px 0 6px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
}
.risk-cta-pills li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .9);
    font-size: .82rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.risk-cta-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7dfadf;
    box-shadow: 0 0 0 3px rgba(125, 250, 223, .18);
}

.risk-cta .btn-primary {
    margin-top: 6px;
}

.whatsapp-accent {
    color: #7dfadf;
}

/* ============== LEGAL ============== */
.legal {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 4vw, 40px);
    background: #ffffff;
    box-shadow: var(--shadow);
    margin: 40px 0;
}

.legal h1, .legal h2 { font-family: "Sora", sans-serif; color: var(--text-strong); }
.legal h1 { margin-top: 0; }
.legal p, .legal li { color: var(--muted); }

/* ============== FOOTER ============== */
.site-footer {
    margin-top: 0;
    border-top: 1px solid var(--line);
    background: #eaf4ff;
    color: var(--text);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 32px;
    padding: 36px 0 20px;
}

.footer-brand {
    margin: 0 0 10px;
    font-family: "Sora", sans-serif;
    font-size: 1.1rem;
    color: var(--text-strong);
}

.footer-title {
    margin: 0 0 10px;
    font-weight: 800;
    color: var(--text-strong);
    font-size: 0.95rem;
}

.site-footer a {
    display: block;
    color: var(--muted);
    margin-bottom: 6px;
    font-size: 0.94rem;
}

.site-footer a:hover { color: var(--brand-2); }

.footer-text { margin: 0; color: var(--muted); font-size: 0.94rem; }

.footer-copy {
    border-top: 1px solid var(--line);
    font-size: 0.84rem;
    color: var(--muted);
    padding: 14px 0 18px;
}

/* ============== WHATSAPP FLOAT ============== */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 180;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(120deg, #22c96c 0%, #10a35e 100%);
    color: #ffffff;
    font-weight: 800;
    border-radius: 999px;
    padding: 13px 20px;
    box-shadow: 0 14px 30px rgba(16, 163, 94, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: transform 0.2s, box-shadow 0.25s;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(16, 163, 94, 0.5);
}

/* ============== REVEAL ============== */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============== ANIMATIONS ============== */
@keyframes floatOne {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes floatTwo {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(10px) translateX(-12px); }
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-text { max-width: 100%; }
    .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .template-grid { grid-template-columns: 1fr; }
    .template-card .template-title-compact { white-space: normal; }
    .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .step-card::after { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
    body { padding-top: 72px; }
    .topbar-inner { min-height: 72px; }
    .menu-toggle { display: inline-flex; }

    .main-menu {
        position: absolute;
        right: 4vw;
        top: 64px;
        width: min(320px, 92vw);
        border: 1px solid var(--line-strong);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow);
        padding: 10px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
    }
    .main-menu.open { display: flex; }
    .main-menu a { border-radius: 10px; }
    .btn-header { text-align: center; }

    .hero { padding-top: 36px; }
    .section { padding: 44px 0; }

    .feature-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .risk-grid { grid-template-columns: 1fr; }
    .risk-cta {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 28px 18px;
        border-radius: 22px;
        gap: 22px;
    }
    .risk-cta-media { grid-column: 1; max-width: 240px; }
    .risk-cta-body { grid-column: 1; align-items: center; }
    .risk-cta-title { max-width: none; }
    .risk-cta-pills { justify-content: center; }
    .risk-cta-image { max-width: 240px; }
    .footer-grid { grid-template-columns: 1fr; gap: 22px; padding: 28px 0 16px; }

    .cta-final { flex-direction: column; align-items: flex-start; text-align: left; }
    .cta-final .btn { width: 100%; }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        padding: 11px 16px;
    }
}
