:root {
    --bg: #070b18;
    --bg-2: #0f172a;
    --surface: #ffffff;
    --surface-soft: #f8fafc;
    --surface-dark: #111827;
    --text: #0f172a;
    --muted: #64748b;
    --border: #e2e8f0;
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --green: #16a34a;
    --green-dark: #15803d;
    --gold: #f59e0b;
    --danger: #dc2626;
    --radius: 20px;
    --shadow: 0 22px 60px rgba(15, 23, 42, .12);
    --shadow-soft: 0 12px 35px rgba(15, 23, 42, .08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.topbar {
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(226,232,240,.85);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 23px;
    font-weight: 900;
    letter-spacing: -.03em;
    color: var(--bg-2);
}

.brand::before {
    content: "";
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--green));
    box-shadow: 0 10px 22px rgba(37,99,235,.28);
}

.nav nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nav nav a {
    padding: 10px 12px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    color: #334155;
}

.nav nav a:hover {
    background: #eff6ff;
    color: var(--primary-dark);
}

.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 94px 0 82px;
    background:
        radial-gradient(circle at 15% 20%, rgba(37,99,235,.36), transparent 32%),
        radial-gradient(circle at 85% 15%, rgba(22,163,74,.28), transparent 30%),
        linear-gradient(135deg, #070b18 0%, #0f172a 55%, #1e3a8a 100%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto -120px -220px auto;
    width: 460px;
    height: 460px;
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    filter: blur(2px);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.20);
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    color: #dbeafe;
}

.badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(22,163,74,.16);
}

.hero h1 {
    max-width: 920px;
    margin: 20px 0 18px;
    font-size: clamp(36px, 6vw, 72px);
    line-height: .98;
    letter-spacing: -.06em;
}

.hero p {
    max-width: 760px;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.55;
    color: #dbeafe;
}

.hero-actions {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    padding: 14px 18px;
    border-radius: 14px;
    font-weight: 900;
    font-size: 15px;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.btn.primary {
    background: linear-gradient(135deg, var(--green), #22c55e);
    color: #fff;
    box-shadow: 0 14px 30px rgba(22,163,74,.28);
}

.btn.primary:hover {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
}

.btn.secondary {
    background: #fff;
    color: var(--primary-dark);
    box-shadow: 0 14px 30px rgba(15,23,42,.18);
}

.btn.full {
    width: 100%;
}

.price {
    display: inline-flex;
    margin: 22px 0 4px;
    padding: 12px 18px;
    border-radius: 16px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    font-size: 34px;
    font-weight: 950;
    letter-spacing: -.04em;
}

.section {
    padding: 76px 0;
}

.section.alt {
    background: var(--surface-soft);
}

.section h2 {
    margin: 0 0 20px;
    font-size: clamp(28px, 3vw, 42px);
    letter-spacing: -.045em;
}

.section-lead {
    max-width: 760px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.cards {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.card {
    position: relative;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--green));
}

.card h3 {
    margin: 0 0 10px;
    font-size: 21px;
    letter-spacing: -.03em;
}

.card p {
    color: var(--muted);
    line-height: 1.55;
}

.card strong {
    color: var(--primary-dark);
    font-size: 22px;
}

.two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 42px;
    align-items: start;
}

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

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(15,23,42,.04);
}

.checklist li::before {
    content: "✓";
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #dcfce7;
    color: var(--green-dark);
    font-weight: 950;
}

.form-card {
    position: sticky;
    top: 96px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 26px;
    box-shadow: var(--shadow);
}

.form-card h2 {
    margin-top: 0;
}

form label {
    display: block;
    margin: 13px 0 7px;
    font-size: 13px;
    font-weight: 900;
    color: #334155;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 13px;
    font-size: 15px;
    background: #fff;
    outline: none;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}

.footer {
    background: var(--bg);
    color: #cbd5e1;
    padding: 34px 0;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

/* ADMIN */

.admin-bg {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 20% 20%, rgba(37,99,235,.25), transparent 28%),
        radial-gradient(circle at 80% 80%, rgba(22,163,74,.20), transparent 28%),
        var(--bg);
}

.login-card {
    width: min(430px, 92%);
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 26px;
    padding: 30px;
    box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

.login-card h1 {
    margin-top: 0;
    letter-spacing: -.04em;
}

.admin-layout {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    background: #f1f5f9;
}

.sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    background:
        radial-gradient(circle at 20% 0%, rgba(37,99,235,.25), transparent 30%),
        #0f172a;
    color: #fff;
    padding: 24px;
}

.sidebar h2 {
    margin: 0 0 24px;
    font-size: 24px;
    letter-spacing: -.04em;
}

.sidebar a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 11px 13px;
    margin-bottom: 6px;
    border-radius: 14px;
    color: #cbd5e1;
    font-weight: 800;
}

.sidebar a:hover {
    color: #fff;
    background: rgba(255,255,255,.09);
}

.admin-main {
    padding: 30px;
    overflow-x: auto;
}

.admin-main h1 {
    margin: 0 0 24px;
    font-size: clamp(28px, 3vw, 42px);
    letter-spacing: -.05em;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(6, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.metric {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 10px 28px rgba(15,23,42,.06);
}

.metric span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}

.metric strong {
    display: block;
    margin-top: 8px;
    font-size: 25px;
    letter-spacing: -.04em;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15,23,42,.05);
    margin-bottom: 30px;
}

th,
td {
    padding: 14px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    font-size: 14px;
    vertical-align: top;
}

th {
    background: #f8fafc;
    color: #334155;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

td a {
    color: var(--primary-dark);
    font-weight: 900;
}

.admin-form,
.detail-card {
    max-width: 680px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 10px 28px rgba(15,23,42,.06);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 26px;
}

.status-pill {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: #eff6ff;
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 900;
}

@media (max-width: 1100px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .metrics {
        grid-template-columns: repeat(3, 1fr);
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .form-card {
        position: static;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    .nav {
        min-height: auto;
        padding: 14px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .nav nav {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .nav nav a {
        background: #f8fafc;
        text-align: center;
        font-size: 13px;
        padding: 11px 8px;
    }

    .hero {
        padding: 66px 0 58px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        min-height: 52px;
    }

    .cards,
    .metrics,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .card {
        min-height: auto;
    }

    .section {
        padding: 54px 0;
    }

    .admin-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
        height: auto;
        padding: 16px;
    }

    .sidebar h2 {
        margin-bottom: 12px;
    }

    .sidebar a {
        display: inline-flex;
        margin: 4px;
        font-size: 13px;
    }

    .admin-main {
        padding: 18px;
    }

    table {
        min-width: 760px;
    }
}

.btn.whatsapp,
.mini-btn {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #fff !important;
    box-shadow: 0 14px 30px rgba(22,163,74,.22);
}

.mini-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #fff;
    font-weight: 950;
    box-shadow: 0 18px 42px rgba(22,163,74,.34);
}

.trust-box {
    margin-top: 24px;
    padding: 22px;
    border-radius: 22px;
    background: #f8fafc;
    border: 1px solid var(--border);
}

.trust-box h3 {
    margin-top: 0;
}

.form-help,
.admin-subtitle {
    color: var(--muted);
    line-height: 1.5;
}

.admin-header-line,
.lead-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.filter-pills a {
    display: inline-flex;
    padding: 9px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border);
    color: #334155;
    font-size: 13px;
    font-weight: 900;
}

.filter-pills a.active,
.filter-pills a:hover {
    background: #eff6ff;
    color: var(--primary-dark);
    border-color: #bfdbfe;
}

@media (max-width: 760px) {
    .floating-whatsapp {
        left: 14px;
        right: 14px;
        bottom: 14px;
        width: auto;
    }

    .lead-top,
    .admin-header-line {
        flex-direction: column;
    }

    body {
        padding-bottom: 76px;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 42px;
    align-items: center;
}

.hero-panel {
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 28px 80px rgba(0,0,0,.22);
    backdrop-filter: blur(12px);
}

.panel-label {
    color: #bfdbfe;
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 14px;
}

.panel-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
}

.panel-item:last-child {
    border-bottom: 0;
}

.panel-item strong {
    display: block;
    color: #fff;
    font-size: 17px;
    margin-bottom: 4px;
}

.panel-item span {
    color: #dbeafe;
    line-height: 1.45;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero-proof span {
    display: inline-flex;
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    color: #dbeafe;
    font-size: 13px;
    font-weight: 800;
}

.section-heading {
    max-width: 830px;
    margin-bottom: 30px;
}

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

.eyebrow,
.card-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.section-heading p,
.pain-card p,
.method-step p,
.faq-card p,
.risk-card p {
    color: var(--muted);
    line-height: 1.6;
}

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

.pain-card,
.method-step,
.faq-card,
.risk-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 14px 34px rgba(15,23,42,.06);
}

.pain-card strong {
    display: block;
    font-size: 20px;
    letter-spacing: -.03em;
    margin-bottom: 8px;
}

.service-card {
    min-height: 340px;
}

.service-card .card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
}

.service-card .card-bottom span {
    color: var(--green-dark);
    font-weight: 950;
}

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

.method-step span {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--green));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 950;
    margin-bottom: 18px;
}

.authority-box {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 36px;
    align-items: center;
    background: #0f172a;
    color: #fff;
    border-radius: 32px;
    padding: 38px;
    box-shadow: 0 28px 80px rgba(15,23,42,.22);
}

.authority-box h2 {
    color: #fff;
}

.authority-box p {
    color: #cbd5e1;
    line-height: 1.6;
}

.authority-list {
    display: grid;
    gap: 10px;
}

.authority-list div {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    padding: 14px;
    border-radius: 16px;
    color: #dbeafe;
    font-weight: 850;
}

.final-cta {
    text-align: center;
    color: #fff;
    background:
        radial-gradient(circle at 20% 20%, rgba(37,99,235,.28), transparent 30%),
        linear-gradient(135deg, #0f172a, #1e3a8a);
}

.final-cta h2 {
    color: #fff;
}

.final-cta p {
    max-width: 760px;
    margin: 0 auto 26px;
    color: #dbeafe;
    line-height: 1.6;
}

.hero-actions.center {
    justify-content: center;
}

.pain-list {
    display: grid;
    gap: 12px;
}

.pain-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 8px 20px rgba(15,23,42,.04);
}

.pain-row span {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #fee2e2;
    color: #b91c1c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
}

.pain-row p {
    margin: 2px 0 0;
    color: #334155;
    line-height: 1.5;
}

.risk-card {
    position: sticky;
    top: 96px;
    background:
        linear-gradient(180deg, #fff, #f8fafc);
}

.mini-benefits {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.mini-benefits div {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--border);
    padding: 14px;
    border-radius: 16px;
    font-weight: 850;
}

.mini-benefits div::before {
    content: "✓";
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #dcfce7;
    color: var(--green-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
}

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

@media (max-width: 1100px) {
    .hero-grid,
    .authority-box {
        grid-template-columns: 1fr;
    }

    .pain-grid,
    .method-grid,
    .faq-grid {
        grid-template-columns: 1fr 1fr;
    }

    .risk-card {
        position: static;
    }
}

@media (max-width: 760px) {
    .hero-grid {
        gap: 26px;
    }

    .hero-panel {
        padding: 18px;
        border-radius: 22px;
    }

    .pain-grid,
    .method-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .authority-box {
        padding: 24px;
        border-radius: 24px;
    }

    .service-card {
        min-height: auto;
    }
}
