@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
    --bg: #ffffff;
    --bg-soft: #f3f8ff;
    --card: #ffffff;
    --text: #15314d;
    --muted: #5f738a;
    --line: #d9e4f2;
    --primary: #0056b3;
    --primary-strong: #004494;
    --primary-soft: #e5f0ff;
    --accent: #d7b45a;
    --accent-strong: #b8922f;
    --ok: #1f8c63;
    --err: #c63a3a;
    --info: #2f69df;
    --clickable-border: #1d5fc3;
    --clickable-shadow: rgba(0, 86, 179, 0.18);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background:
        radial-gradient(circle at 12% 10%, rgba(0, 86, 179, 0.06) 0%, transparent 30%),
        radial-gradient(circle at 88% 0%, rgba(0, 86, 179, 0.08) 0%, transparent 34%),
        linear-gradient(160deg, var(--bg) 0%, #f6faff 100%);
    color: var(--text);
}

a,
button,
.button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
    border: 2px solid var(--clickable-border);
    border-radius: 12px;
    padding: 8px 12px;
    text-decoration: none;
    font-weight: 700;
    transition: box-shadow 120ms ease, transform 120ms ease, background-color 120ms ease;
}

a:hover,
button:hover,
.button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
    box-shadow: 0 8px 18px var(--clickable-shadow);
    transform: translateY(-1px);
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 16px;
    background: linear-gradient(92deg, #004494 0%, var(--primary) 52%, #0f6ccb 100%);
    color: #fff;
    padding: 14px 20px;
    box-shadow: 0 14px 28px rgba(0, 68, 148, 0.24);
    min-height: 92px;
    position: relative;
    z-index: 20;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0.4px;
    font-size: 1.06rem;
    text-decoration: none;
    color: #fff;
    border: none;
    padding: 0;
}

.brand-mark {
    min-width: 0;
    flex: 0 0 auto;
}

.brand-logo {
    height: 64px;
    width: auto;
    display: block;
}

.brand-orb {
    flex: 0 0 auto;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
    color: #fff;
}

.brand-copy strong {
    font-size: 1.35rem;
    letter-spacing: -0.03em;
}

.menu {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    justify-content: flex-end;
    min-width: 0;
}

.menu a {
    display: inline-flex;
    align-items: center;
    color: #eef4ff;
    text-decoration: none;
    font-weight: 700;
    padding: 7px 10px;
    border-radius: 8px;
    border: 2px solid rgba(144, 191, 255, 0.9);
    transition: background-color 120ms ease, border-color 120ms ease;
    white-space: nowrap;
    flex: 0 0 auto;
}

.menu a:hover {
    background-color: rgba(255, 255, 255, 0.14);
    border-color: #d6e8ff;
}

.menu-cta {
    background: rgba(255, 255, 255, 0.16);
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.container {
    max-width: 1180px;
    margin: 40px auto;
    padding: 0 20px 56px;
}

.landing .container {
    position: relative;
}

.landing .container::before {
    display: none;
}

.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
    margin-bottom: 18px;
    box-shadow: 0 12px 28px rgba(17, 63, 117, 0.08);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 12px;
}

h1, h2, h3 { margin-top: 0; }

h1 {
    font-size: 1.7rem;
    color: #1c3f8f;
}

h2 {
    color: #254f9d;
}

.form-grid {
    display: grid;
    gap: 10px;
}

.two-columns {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--muted);
    font-size: 0.93rem;
}

.field-help {
    font-size: 0.8rem;
    color: #4f6ea9;
    line-height: 1.3;
}

.member-rule-hint {
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 0.86rem;
    border: 1px solid var(--line);
    background: #f6f9ff;
    color: #2c4c89;
}

.member-rule-hint-dependent {
    background: #eef7ff;
    border-color: #b9d5f7;
}

.member-rule-hint-titular {
    background: #f4f8ff;
    border-color: #c9daf6;
}

.member-form-group {
    transition: box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
    border-radius: 10px;
    padding: 6px;
}

.member-form-highlight {
    background: #f1f7ff;
    box-shadow: inset 0 0 0 1px #bfd4f5;
}

.member-auto-link-help {
    margin-top: 4px;
    color: #2f578f;
}

.is-hidden {
    display: none;
}

input, select, button {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.95rem;
    font-family: inherit;
}

input:focus,
select:focus {
    outline: 2px solid rgba(31, 87, 214, 0.2);
    border-color: #9db8ef;
}

button, .button {
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--clickable-border);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
}

button:hover, .button:hover {
    background: var(--primary-strong);
}

.full-width {
    grid-column: 1 / -1;
}

table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 8px;
}

th, td {
    border-bottom: 1px solid var(--line);
    padding: 10px;
    text-align: left;
    font-size: 0.92rem;
}

th {
    color: var(--muted);
    background: var(--bg-soft);
}

.billing-row-paid {
    background: #effaf4;
}

.billing-row-pending {
    background: #fff9e9;
}

.billing-row-canceled {
    background: #fff0f0;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
}

.status-badge-paid {
    background: #def6e9;
    color: #16714c;
    border-color: #b8e4cb;
}

.status-badge-pending {
    background: #fff2c9;
    color: #8a6611;
    border-color: #f2d98b;
}

.status-badge-canceled {
    background: #ffe2e2;
    color: #a63333;
    border-color: #f0b3b3;
}

.messages {
    display: grid;
    gap: 8px;
    margin-bottom: 12px;
}

.msg {
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.92rem;
}

.msg.success { background: #e7f8f0; color: var(--ok); }
.msg.error { background: #ffecec; color: var(--err); }
.msg.info { background: var(--primary-soft); color: var(--info); }

.actions {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.billing-pix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.billing-pix-qr,
.billing-pix-copy {
    margin-bottom: 0;
}

.billing-pix-qr {
    display: grid;
    place-items: center;
    min-height: 260px;
}

.billing-pix-qr img {
    width: 100%;
    max-width: 260px;
    height: auto;
    display: block;
}

.billing-pix-copy textarea {
    width: 100%;
    resize: vertical;
    min-height: 180px;
    font-family: "Roboto Mono", Consolas, monospace;
}

.billing-pix-actions {
    margin: 10px 0 8px;
}

.billing-mark-paid-form {
    margin-top: 16px;
}

.inline-form {
    display: flex;
    gap: 10px;
    align-items: end;
}

.auth-card {
    max-width: 460px;
    margin: 40px auto;
}

.auth-links {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--muted);
}

.member-card-shell {
    display: flex;
    justify-content: center;
}

.member-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.digital-card {
    width: min(620px, 100%);
    min-height: 300px;
    border-radius: 28px;
    padding: 26px 28px;
    color: #f8fbff;
    background:
        radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.10), transparent 30%),
        radial-gradient(circle at 12% 88%, rgba(13, 107, 203, 0.16), transparent 38%),
        linear-gradient(135deg, #01285a 0%, #004ea0 48%, #0d67cb 100%);
    box-shadow:
        0 26px 44px rgba(10, 47, 99, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        inset 0 -2px 0 rgba(46, 187, 255, 0.52),
        inset 0 0 0 1px rgba(108, 196, 255, 0.35);
    border: 1px solid rgba(162, 222, 255, 0.56);
    position: relative;
    overflow: hidden;
}

.member-card-grid .digital-card {
    width: 100%;
    min-height: 260px;
}

.digital-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            118deg,
            rgba(177, 221, 255, 0.00) 0,
            rgba(177, 221, 255, 0.00) 10px,
            rgba(177, 221, 255, 0.11) 10px,
            rgba(177, 221, 255, 0.11) 12px
        ),
        linear-gradient(120deg, rgba(255, 255, 255, 0.05) 0%, transparent 42%, rgba(255, 255, 255, 0.03) 100%);
    opacity: 0.42;
    pointer-events: none;
}

.digital-card::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 28px;
    right: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(247, 220, 143, 0.24) 20%, rgba(255, 236, 180, 0.92) 50%, rgba(247, 220, 143, 0.24) 80%, transparent 100%);
    box-shadow: 0 0 12px rgba(255, 218, 122, 0.28);
    pointer-events: none;
}

.digital-card.variant-classic::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 0%, rgba(117, 208, 255, 0.50), rgba(117, 208, 255, 0) 24%),
        repeating-radial-gradient(
            ellipse at 98% 60%,
            rgba(187, 224, 255, 0.28) 0,
            rgba(187, 224, 255, 0.28) 1px,
            rgba(0, 0, 0, 0) 1px,
            rgba(0, 0, 0, 0) 14px
        ),
        linear-gradient(90deg, transparent 0%, rgba(247, 220, 143, 0.24) 22%, rgba(255, 236, 180, 0.85) 50%, rgba(247, 220, 143, 0.24) 78%, transparent 100%);
    background-repeat: no-repeat;
    background-size: 100% 100%, 58% 82%, calc(100% - 56px) 1px;
    background-position: right top, right 54% top 56%, center 18px;
    pointer-events: none;
}

.digital-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.digital-card-chip {
    width: 58px;
    height: 44px;
    border-radius: 12px;
    background:
        linear-gradient(125deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.0) 46%),
        linear-gradient(140deg, #d0a84b 0%, #f2d989 42%, #d3a649 100%);
    border: 1px solid rgba(255, 244, 212, 0.58);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.75),
        inset 0 -1px 0 rgba(126, 90, 19, 0.30),
        0 10px 16px rgba(7, 26, 58, 0.22);
    margin-bottom: 22px;
    position: relative;
    overflow: hidden;
}

.digital-card-chip::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 8px;
    border: 1px solid rgba(155, 110, 20, 0.58);
    background:
        linear-gradient(90deg, transparent 32%, rgba(148, 104, 22, 0.75) 32%, rgba(148, 104, 22, 0.75) 36%, transparent 36%, transparent 64%, rgba(148, 104, 22, 0.75) 64%, rgba(148, 104, 22, 0.75) 68%, transparent 68%),
        linear-gradient(0deg, transparent 28%, rgba(148, 104, 22, 0.62) 28%, rgba(148, 104, 22, 0.62) 32%, transparent 32%, transparent 68%, rgba(148, 104, 22, 0.62) 68%, rgba(148, 104, 22, 0.62) 72%, transparent 72%);
    opacity: 0.9;
}

.digital-card-chip::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(145, 104, 24, 0.64) 50%, transparent 50%),
        linear-gradient(0deg, rgba(145, 104, 24, 0.42) 50%, transparent 50%);
    background-size: 2px 100%, 100% 2px;
    background-position: center, center;
    background-repeat: no-repeat;
    opacity: 0.8;
}

.digital-card-logo-fixed {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.86rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    max-width: 280px;
    padding: 8px 12px;
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(163, 219, 255, 0.55);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.34),
        inset 0 -1px 0 rgba(0, 52, 116, 0.25),
        0 10px 20px rgba(3, 29, 66, 0.18);
    backdrop-filter: blur(6px);
}

.digital-card-brand-stack {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
}

.digital-card-brand-name {
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #ffffff;
}

.digital-card-brand-cnpj {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
    color: rgba(244, 249, 255, 0.95);
    white-space: nowrap;
}

.digital-card-logo-img {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px;
    min-height: 34px;
    max-width: 34px;
    max-height: 34px;
    display: block;
    flex: 0 0 34px;
    object-fit: contain;
    filter: saturate(1.08) brightness(1.03) drop-shadow(0 6px 10px rgba(0, 0, 0, 0.16));
}

.digital-card-brand {
    margin: 0;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.digital-card-id-label {
    margin: 26px 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    opacity: 0.88;
}

.digital-card-id {
    margin: 28px 0 0;
    font-size: clamp(1.18rem, 2.65vw, 1.65rem);
    letter-spacing: 0.09em;
    font-weight: 900;
    color: #ffffff;
    white-space: nowrap;
    word-break: normal;
    overflow-wrap: normal;
    font-family: "Inter", sans-serif;
}

.digital-card-institution {
    margin: 18px auto 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: min(100%, 430px);
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 243, 194, 0.20), rgba(255, 255, 255, 0.07));
    border: 1px solid rgba(255, 238, 170, 0.42);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 10px 22px rgba(3, 23, 61, 0.12);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.25;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: "Inter", sans-serif;
}

.digital-card-member-line {
    margin-top: 30px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.digital-card-name {
    margin: 0;
    font-size: 1.22rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #ffffff;
    font-family: "Inter", sans-serif;
}

.digital-card-member-number {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 800;
    color: #ffffff;
    opacity: 1;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.digital-card.variant-classic {
    background:
    radial-gradient(circle at 84% 12%, rgba(255, 237, 180, 0.24), transparent 33%),
    radial-gradient(circle at 24% 84%, rgba(9, 95, 186, 0.32), transparent 45%),
    linear-gradient(112deg, rgba(22, 144, 255, 0.36) 0%, rgba(22, 144, 255, 0) 34%),
        radial-gradient(circle at 12% 88%, rgba(13, 107, 203, 0.24), transparent 42%),
        linear-gradient(135deg, #003a85 0%, #0056b3 50%, #0f6ccb 100%);
}

.hero-sell {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr;
    gap: 20px;
    margin-top: 18px;
    margin-bottom: 22px;
    align-items: stretch;
    background: linear-gradient(140deg, #f8fbff 0%, #f0f6ff 45%, #e6f0ff 100%);
    border: 1px solid #cfe0fa;
    border-radius: 26px;
    padding: 18px;
    box-shadow: 0 16px 36px rgba(19, 72, 148, 0.14);
}

.hero-copy {
    background:
        radial-gradient(circle at 88% 10%, rgba(90, 162, 255, 0.28) 0%, rgba(90, 162, 255, 0) 35%),
        linear-gradient(145deg, #ffffff 0%, #f3f8ff 52%, #eaf3ff 100%);
    border: 1px solid #cfe0fa;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 16px 34px rgba(19, 72, 148, 0.16);
    position: relative;
    overflow: hidden;
}

.hero-copy::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 119, 231, 0.22) 0%, rgba(47, 119, 231, 0) 72%);
    right: -90px;
    top: -90px;
    pointer-events: none;
}

.hero-logo {
    width: min(120px, 28%);
    max-width: 120px;
    height: auto;
    margin-bottom: 12px;
    background: transparent;
}

.hero-orb {
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.12));
}

.eyebrow {
    margin: 0 0 8px;
    color: #1b4f9e;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
    font-size: 0.82rem;
}

.hero-copy h1 {
    font-size: clamp(2.2rem, 3.4vw, 3.8rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #113c7f;
    max-width: 14ch;
    font-family: "Inter", sans-serif;
}

.hero-text {
    color: #3b567e;
    line-height: 1.6;
    max-width: 60ch;
    font-size: 1.04rem;
    font-family: "Inter", sans-serif;
}

.hero-price-card {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-top: 16px;
    padding: 20px 22px;
    min-width: 280px;
    border-radius: 22px;
    border: 1px solid #cfe0fa;
    background: linear-gradient(160deg, #ffffff 0%, #edf5ff 100%);
    box-shadow: 0 14px 28px rgba(19, 72, 148, 0.15);
}

.hero-price-card strong {
    color: #0e4aa3;
    font-size: clamp(2.4rem, 5vw, 3rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
    font-family: "Inter", sans-serif;
}

.hero-price-card span {
    color: #47648c;
    font-weight: 700;
    font-size: 0.98rem;
}

.hero-actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.variant-switch {
    margin-top: 14px;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.9rem;
}

.variant-switch a {
    text-decoration: none;
    color: #305db8;
    border: 1px solid #c8daf8;
    border-radius: 20px;
    padding: 5px 10px;
    font-weight: 700;
}

.variant-switch a.active {
    background: #2b5fd4;
    color: #fff;
    border-color: #2b5fd4;
}

.button.ghost {
    background: #ffffff;
    color: #17448b;
    border: 2px solid #6f9fe8;
    box-shadow: none;
}

.button.ghost:hover {
    background: #eef5ff;
}

.button.accent {
    background: linear-gradient(135deg, #0c4eb0 0%, #1a67d3 100%);
    color: #fff;
    border-color: #0a469f;
    box-shadow: 0 14px 24px rgba(11, 77, 172, 0.3);
}

.button.accent:hover {
    background: linear-gradient(135deg, #083f92 0%, #1358bb 100%);
    color: #fff;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.proposal-banner {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 14px;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f4f8ff 60%, #e8f1ff 100%);
    border-left: 6px solid #1d4ed8;
}

.proposal-copy h2 {
    margin-bottom: 8px;
}

.proposal-price {
    color: #1d4ed8;
    font-size: 1.2em;
    font-weight: 900;
}

.proposal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.proposal-actions .button {
    white-space: nowrap;
}

.hero-proof div {
    background: linear-gradient(140deg, #fff 0%, #eff6ff 100%);
    border: 1px solid #cfe0fa;
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 8px 18px rgba(19, 72, 148, 0.12);
}

.hero-proof strong {
    display: block;
    font-size: 1.15rem;
    color: #17448b;
    font-family: "Inter", sans-serif;
}

.hero-proof span {
    color: #4a678f;
    font-size: 0.86rem;
}

.hero-card {
    background:
        radial-gradient(circle at 82% 14%, rgba(130, 186, 255, 0.34) 0%, rgba(130, 186, 255, 0) 40%),
        linear-gradient(165deg, #06357d 0%, #0a4ca6 48%, #1a67d3 100%);
    color: #ffffff;
    border: 1px solid rgba(157, 203, 255, 0.58);
    border-radius: 24px;
    padding: 34px 30px;
    box-shadow: 0 14px 30px rgba(8, 54, 125, 0.34);
}

.hero-card h3 {
    margin-top: 0;
    color: #ffffff;
    font-family: "Inter", sans-serif;
}

.hero-card ul {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 10px;
    line-height: 1.52;
}

.hero-card li::marker {
    color: rgba(255, 255, 255, 0.92);
}

.hero-side-cta {
    margin-top: 18px;
    width: 100%;
    text-align: center;
    background: #eaf3ff;
    color: #154c9c;
    border-color: #8cb8f6;
}

.hero-side-cta:hover {
    background: #dbeafe;
    color: #113f81;
}

.benefits-section {
    margin-top: 28px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(210px, 1fr));
    gap: 12px;
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.section-grid-4 {
    grid-template-columns: repeat(4, minmax(190px, 1fr));
}

.section-grid-4 .card {
    background: linear-gradient(155deg, #fff 0%, #eef6ff 100%);
    border-color: #cfe0fa;
}

.product-zone {
    background: linear-gradient(145deg, #f8fbff 0%, #eef5ff 45%, #e7f1ff 100%);
    border: 1px solid #cfe0fa;
    border-left: 6px solid #0f56ba;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 12px 28px rgba(11, 78, 175, 0.16);
}

.zone-head h2 {
    margin-top: 0;
    color: #113f87;
    font-family: "Inter", sans-serif;
}

.combo-note {
    margin: 8px 0 0;
    background: #eaf3ff;
    border: 1px solid #b9d3f7;
    color: #1f4f95;
    border-radius: 10px;
    padding: 10px 12px;
    font-weight: 700;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    gap: 12px;
}

.product-card {
    background: linear-gradient(160deg, #0a4ca6 0%, #1a67d3 100%);
    border: 2px solid #84b3f8;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 10px 20px rgba(8, 54, 125, 0.3);
}

.product-card.clickable {
    display: block;
    text-decoration: none;
    transition: transform 130ms ease, box-shadow 130ms ease;
}

.product-card.clickable:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(7, 44, 105, 0.34);
}

.product-card h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-family: "Inter", sans-serif;
}

.product-card p {
    color: #ffffff;
    margin: 0;
    line-height: 1.48;
}

.product-card .link-more {
    display: inline-block;
    margin-top: 12px;
    background: #e9f2ff;
    color: #154c9c;
    border: 2px solid #e9f2ff;
    border-radius: 10px;
    padding: 8px 12px;
    font-weight: 800;
}

.product-card.featured {
    background: linear-gradient(160deg, #06357d 0%, #0e53b3 100%);
    color: #fff;
    border-color: #9dc2fb;
}

.product-card.featured h3,
.product-card.featured p {
    color: #fff;
}

.product-card.featured .button {
    margin-top: 12px;
    background: #e9f2ff;
    color: #154c9c;
    border-color: #b9d3f7;
}

.service-page .topbar {
    margin-bottom: 2px;
}

.service-hero {
    border-left: 6px solid #1d4ed8;
}

.service-actions {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.service-commitments {
    margin: 14px 0 2px;
    padding: 14px 16px 14px 34px;
    border: 1px solid #b9d3f7;
    border-radius: 12px;
    background: linear-gradient(160deg, #eff6ff 0%, #e6f1ff 100%);
    color: #1f4f95;
    display: grid;
    gap: 7px;
    line-height: 1.45;
}

.service-commitments li::marker {
    color: #1a67d3;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.partner-card {
    background: #fff;
    border: 1px solid #d5e2fa;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 10px 20px rgba(24, 68, 153, 0.08);
}

.partner-head {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
}

.partner-logo {
    width: 88px;
    height: 58px;
    border-radius: 10px;
    object-fit: contain;
    border: 1px solid #d5e2fa;
    background: #f7fbff;
}

.partner-logo.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4f6890;
    font-size: 0.78rem;
    text-align: center;
    padding: 8px;
}

.partner-card h3 {
    margin: 0;
    color: #1d4ed8;
}

.partner-card h4 {
    margin: 10px 0 8px;
    color: #2d4f85;
}

.partner-card ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 6px;
    color: #4f6483;
}

.muted {
    color: #5f738a;
    margin: 4px 0 0;
    font-size: 0.86rem;
}

.journey {
    margin-bottom: 16px;
    background: linear-gradient(145deg, #fff 0%, #eef6ff 100%);
    border-color: #cfe0fa;
}

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

.steps div {
    border: 1px solid #cfe0fa;
    border-radius: 12px;
    padding: 14px;
    background: #fafdff;
}

.steps span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #1a67d3;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.steps h4 {
    margin: 10px 0 8px;
    color: #17448b;
}

.cta-final {
    text-align: center;
    background: linear-gradient(160deg, #eef6ff 0%, #e3efff 100%);
    border-color: #cfe0fa;
}

.trust-strip {
    margin-bottom: 16px;
    border-left: 6px solid #1d4ed8;
}

.trust-strip h3 {
    margin-top: 0;
    color: #214a96;
}

.trust-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 10px;
}

.trust-points p {
    margin: 0;
    background: #f9fcff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px;
    color: #445b77;
}

.landing .hero-copy,
.landing .hero-card,
.landing .section-grid .card,
.landing .journey,
.landing .cta-final,
.landing .trust-strip {
    animation: rise 420ms ease both;
}

.landing .product-card:nth-child(1) { animation: rise 380ms ease both 120ms; }
.landing .product-card:nth-child(2) { animation: rise 380ms ease both 170ms; }
.landing .product-card:nth-child(3) { animation: rise 380ms ease both 220ms; }
.landing .product-card:nth-child(4) { animation: rise 380ms ease both 270ms; }

.landing .hero-card { animation-delay: 80ms; }
.landing .section-grid .card:nth-child(1) { animation-delay: 120ms; }
.landing .section-grid .card:nth-child(2) { animation-delay: 170ms; }
.landing .section-grid .card:nth-child(3) { animation-delay: 220ms; }

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.variant-serene {
    --primary: #0056b3;
    --primary-strong: #004494;
    --primary-soft: #e5f0ff;
}

@media (max-width: 1024px) {
    .topbar {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        padding: 12px 14px;
        min-height: 76px;
    }

    .menu {
        margin-left: auto;
        gap: 4px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .brand-copy {
        display: none;
    }

    .menu::-webkit-scrollbar {
        display: none;
    }

    .menu a {
        font-size: 0.83rem;
        padding: 6px 8px;
    }

    .brand-logo {
        height: 48px;
    }

    .inline-form {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-sell,
    .proposal-banner,
    .section-grid,
    .section-grid-4,
    .steps,
    .product-grid,
    .benefits-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .proposal-actions {
        justify-content: flex-start;
    }

    .hero-proof {
        grid-template-columns: 1fr;
    }

    .hero-logo {
        width: 96px;
        max-width: 96px;
    }

    .hero-copy {
        padding: 24px;
    }

    .hero-price-card {
        min-width: 100%;
    }

    .digital-card-logo-fixed {
        max-width: 244px;
        padding: 7px 10px;
    }

    .digital-card-brand-name {
        font-size: 0.78rem;
    }

    .digital-card-brand-cnpj {
        font-size: 0.63rem;
    }

    .trust-points {
        grid-template-columns: 1fr;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: all 200ms ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: white;
}

.whatsapp-float:hover {
    background: #1ea853;
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.whatsapp-float .whatsapp-tooltip {
    position: absolute;
    bottom: 80px;
    right: -10px;
    background: #25d366;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 200ms ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: 75px;
}
