:root {
    --bg: #f5f7fb;
    --surface: #ffffff;
    --text: #14181f;
    --muted: #5d6675;
    --line: #e2e8f3;
    --accent: #1a6dff;
    --accent-2: #00c2a8;
    --accent-3: #ffb347;
    --shadow: 0 24px 60px rgba(20, 24, 31, 0.12);
    --radius: 22px;
    --radius-lg: 32px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(180deg, #f9fbff 0%, #f5f7fb 60%, #f2f4f8 100%);
    color: var(--text);
    line-height: 1.6;
}

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

img {
    max-width: 100%;
    display: block;
}

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

.section {
    padding: 90px 0;
    position: relative;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7em;
    font-weight: 700;
    color: var(--accent);
    display: inline-block;
    margin-bottom: 16px;
}

.section-head h2 {
    font-size: clamp(1.8em, 3vw, 2.6em);
    margin-bottom: 12px;
}

.section-head p {
    color: var(--muted);
    max-width: 580px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(120deg, var(--accent) 0%, #5a9bff 100%);
    color: #fff;
    box-shadow: 0 18px 30px rgba(26, 109, 255, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 45px rgba(26, 109, 255, 0.35);
}

.btn-outline {
    border: 1px solid var(--accent);
    color: var(--accent) !important;
    background: transparent;
    text-shadow: none;
}

.btn-outline:hover {
    background: rgba(26, 109, 255, 0.1);
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 243, 0.6);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand img {
    width: 62px;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand-name {
    font-weight: 800;
    font-size: 1.1em;
}

.brand-tag {
    font-size: 0.85em;
    color: var(--muted);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-weight: 600;
}

.site-nav a {
    color: var(--text);
    font-size: 0.95em;
}

.site-nav .btn {
    font-size: 0.9em;
}

.site-header .btn-primary {
    color: #ffffff;
    background: linear-gradient(120deg, #1a6dff 0%, #46b7ff 100%);
    box-shadow: 0 14px 28px rgba(26, 109, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.site-header .btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    transform: translateX(-120%);
    transition: transform 0.6s ease;
}

.site-header .btn-primary:hover::after {
    transform: translateX(120%);
}

.site-header .btn-outline {
    color: #12335f;
    border-color: rgba(18, 51, 95, 0.35);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 20px rgba(18, 51, 95, 0.12);
    text-shadow: none;
}

.site-header .btn-outline:hover {
    color: #0b1f3d;
    border-color: rgba(18, 51, 95, 0.6);
    background: rgba(26, 109, 255, 0.08);
}

.nav-toggle {
    display: none;
    background: var(--surface);
    border: 1px solid var(--line);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 600;
}

.hero {
    position: relative;
    min-height: 88vh;
    overflow: hidden;
    color: #fff;
}

.hero-slider {
    position: relative;
    min-height: 88vh;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1s ease, transform 2s ease;
}

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

.hero-slide img,
.hero-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(8, 12, 18, 0.7) 0%, rgba(8, 12, 18, 0.4) 45%, rgba(8, 12, 18, 0.65) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 0 120px;
    max-width: 620px;
}

.hero-content h1 {
    font-size: clamp(2.4em, 4vw, 3.6em);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.05em;
    color: rgba(255, 255, 255, 0.85);
}

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

.hero-metrics {
    display: flex;
    gap: 28px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.metric {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 16px;
    border-radius: 16px;
    backdrop-filter: blur(6px);
}

.metric strong {
    font-size: 1.2em;
    display: block;
}

.metric span {
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.8);
}

.hero-dots {
    position: absolute;
    right: 50px;
    bottom: 40px;
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.hero-dots button.is-active {
    background: #fff;
    transform: scale(1.2);
}

.features {
    background: var(--surface);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 36px;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(20, 24, 31, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(20, 24, 31, 0.12);
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.feature-card p {
    color: var(--muted);
}

.whatsapp-proof {
    background: #ffffff;
    padding: 40px 0 90px;
}

.whatsapp-proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: center;
    /* background: #f7f9ff; */
    padding: 18px;
    border-radius: var(--radius-lg);
}

.whatsapp-proof-copy p {
    color: var(--muted);
    margin-bottom: 20px;
}

.whatsapp-proof-email {
    margin-top: 20px;
    margin-bottom: 18px;
    font-weight: 600;
    color: #1b3f5c;
}

.whatsapp-proof-highlight {
    background: linear-gradient(120deg, rgba(26, 109, 255, 0.1) 0%, rgba(0, 194, 168, 0.12) 100%);
    border-radius: 18px;
    padding: 18px 20px;
    display: grid;
    gap: 6px;
    border: 1px solid rgba(26, 109, 255, 0.15);
}

.whatsapp-proof-highlight strong {
    font-size: 1.05em;
}

.whatsapp-proof-media {
    padding: 0;
}

.whatsapp-proof-media img {
    width: 100%;
    max-width: 360px;
    height: auto;
    border-radius: 18px;
    display: block;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.highlight {
    background: linear-gradient(120deg, #f7f4ff 0%, #eef6ff 100%);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: center;
}

.highlight-copy p {
    color: var(--muted);
    margin-bottom: 24px;
}

.bullet-list {
    margin: 20px 0 26px;
    display: grid;
    gap: 12px;
    color: var(--muted);
}

.bullet-list li {
    padding-left: 24px;
    position: relative;
}

.bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    background: var(--accent-2);
    border-radius: 50%;
}

.highlight-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 18px;
}

.highlight-card img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
}

.stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-radius: 16px;
    background: #f6f8ff;
    font-weight: 700;
}

.stat span {
    font-weight: 600;
    color: var(--muted);
    font-size: 0.9em;
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
}

.flow-list {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.flow-list li {
    padding: 16px 18px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid var(--line);
}

.flow-list strong {
    display: block;
    margin-bottom: 6px;
}

.flow-list span {
    color: var(--muted);
}

.flow-panel {
    display: grid;
    gap: 18px;
}

.panel-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    border: 1px solid var(--line);
    box-shadow: 0 18px 38px rgba(20, 24, 31, 0.08);
}

.panel-card p {
    color: var(--muted);
}

.video-cta {
    background: #fdf6ef;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: center;
}

.video-box {
    background: #fff;
    padding: 16px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    /* border-radius: 10px; */
    overflow: hidden;
    background: #000;
}

.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 10px; */
    display: block;
}

.cta-box {
    display: grid;
    gap: 16px;
}

.cta-note {
    color: var(--muted);
    font-size: 0.9em;
}

.stories {
    background: #ffffff;
}

.stories-track {
    margin-top: 32px;
    overflow: hidden;
    padding-bottom: 10px;
}

.stories-inner {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
}

.story-card {
    flex: 0 0 260px;
}

.story-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 20px;
    scroll-snap-align: start;
    box-shadow: 0 18px 40px rgba(20, 24, 31, 0.08);
}

.story-ring {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    padding: 3px;
    background: conic-gradient(from 180deg, var(--accent), var(--accent-2), var(--accent-3), var(--accent));
    margin-bottom: 16px;
}

.story-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    color: var(--accent);
}

.story-body span {
    color: var(--muted);
    font-size: 0.9em;
}

.story-body p {
    margin-top: 10px;
    color: var(--muted);
}

.capture {
    background: linear-gradient(120deg, #ecf5ff 0%, #fef8ef 100%);
}

.capture-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    padding: 40px;
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow);
}

.capture-copy p {
    color: var(--muted);
}

.capture-form {
    display: grid;
    gap: 12px;
}

.capture-form input {
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--line);
    font-size: 1em;
}

.capture-form input:focus {
    outline: 2px solid rgba(26, 109, 255, 0.2);
}

.signup-page {
    padding: 110px 0;
    background: linear-gradient(120deg, #f7f9ff 0%, #f5f7fb 100%);
}

.signup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: stretch;
    /* width: 100%; */
    /* max-width: 1100px; */
    margin: 0 auto;
}

.signup-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 20px;
}

.signup-head h1 {
    font-size: clamp(1.8em, 3vw, 2.4em);
    margin-bottom: 8px;
}

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

.signup-step {
    border: 1px solid var(--line);
    background: #f6f8ff;
    padding: 10px 12px;
    border-radius: 14px;
    font-weight: 700;
    color: var(--muted);
    cursor: pointer;
}

.signup-step.is-active {
    background: linear-gradient(120deg, var(--accent) 0%, #5a9bff 100%);
    color: #fff;
    border-color: transparent;
}

.signup-message {
    min-height: 24px;
    font-size: 0.95em;
}

.signup-message.is-error {
    color: #b42318;
    background: #fef3f2;
    border: 1px solid #fecaca;
    padding: 10px 14px;
    border-radius: 12px;
}

.signup-message.is-success {
    color: #027a48;
    background: #ecfdf3;
    border: 1px solid #a6f4c5;
    padding: 10px 14px;
    border-radius: 12px;
}

.signup-message strong {
    color: #1a6dff;
    font-weight: 700;
}

.signup-form {
    display: grid;
    gap: 16px;
}

.signup-form.is-hidden {
    display: none;
}

.is-hidden {
    display: none !important;
}

.sr-ghost-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.payment-loader {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #f8fafc;
    margin-bottom: 10px;
}

.payment-loader .spinner {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #d0e1ff;
    border-top-color: #1a6dff;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.payment-trigger {
    margin-bottom: 10px;
}

.payment-notice {
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #f8fafc;
    color: #1f2937;
}

.payment-notice.is-error {
    color: #b42318;
    background: #fef3f2;
    border-color: #fecaca;
}

.payment-notice.is-success {
    color: #027a48;
    background: #ecfdf3;
    border-color: #a6f4c5;
}

.payment-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: #f8fafc;
}

.payment-summary-item {
    display: grid;
    gap: 6px;
}

.payment-summary-label {
    font-size: 0.68em;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
}

.payment-summary-period {
    color: var(--muted);
    font-size: 0.92em;
}

.payment-summary-price strong {
    font-size: 1.35em;
    color: #1a6dff;
}

.payment-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-tab {
    border: 1px solid var(--line);
    background: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    color: var(--muted);
}

.payment-tab.is-active {
    color: #1a6dff;
    border-color: #b8d3ff;
    background: #eef4ff;
}

.payment-panels {
    display: grid;
    gap: 16px;
}

.payment-panel {
    display: none;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: #fff;
}

.payment-panel.is-active {
    display: block;
}

.payment-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.payment-panel .payment-actions {
    margin-top: 12px;
    justify-content: flex-end;
}

.btn-pay-now {
    padding: 14px 34px;
    font-size: 1.05em;
}

.btn-link {
    border: none;
    background: transparent;
    padding: 0;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
}

.btn-link:hover {
    color: var(--accent);
    text-decoration: underline;
}

.payment-later {
    display: flex;
    justify-content: flex-start;
}

.payment-pix-result {
    display: grid;
    gap: 12px;
    margin-top: 16px;
    justify-items: center;
}

.payment-pix-result img {
    width: 220px;
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
}

.payment-pix-result textarea {
    width: 100%;
    min-height: 120px;
    border-radius: 12px;
    border: 1px solid var(--line);
    padding: 12px 14px;
    font-size: 0.9em;
    text-align: center;
}

.payment-panel[data-payment-panel="pix"] {
    text-align: center;
}

.payment-panel[data-payment-panel="pix"] .payment-actions {
    justify-content: center;
}

.signup-fields {
    display: grid;
    gap: 12px;
}

.input-with-action {
    position: relative;
    display: flex;
    align-items: center;
}

.signup-fields input,
.signup-fields select {
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--line);
    font-size: 1em;
}

.input-with-action input {
    width: 100%;
    padding-right: 70px;
}

.input-action {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #1a6dff;
    padding: 6px;
    cursor: pointer;
}

.input-action:hover {
    filter: brightness(0.98);
}

.input-action svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.js-toggle-password .icon-eye-open,
.js-toggle-password .icon-eye-closed {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.js-toggle-password .icon-eye-open {
    display: none;
}

.js-toggle-password[aria-pressed="true"] .icon-eye-open {
    display: inline-flex;
}

.js-toggle-password[aria-pressed="true"] .icon-eye-closed {
    display: none;
}

.input-with-loader {
    position: relative;
}

.input-with-loader input {
    width: 100%;
    padding-right: 44px;
}

.cep-loader {
    position: absolute;
    right: 14px;
    top: 50%;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    border: 2px solid #cbd5e1;
    border-top-color: #1a6dff;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    animation: cep-spin 0.8s linear infinite;
}

.input-with-loader.is-loading .cep-loader {
    opacity: 1;
}

@keyframes cep-spin {
    to {
        transform: rotate(360deg);
    }
}

.plan-table-wrapper {
    overflow-x: auto;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: #fff;
}

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

.plan-card {
    border-radius: 20px;
    border: 1px solid var(--line);
    background: #fff;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
    transition: 0.2s ease;
}

.plan-card.is-selected {
    border-color: #1a6dff;
    box-shadow: 0 16px 34px rgba(26, 109, 255, 0.18);
}

.plan-card-head {
    background: linear-gradient(135deg, #f4f7ff, #eef2ff);
    border: none;
    border-radius: 20px 20px 0 0;
    padding: 16px 22px;
    margin: -22px -22px 0;
    width: calc(100% + 44px);
}

.plan-card-head h3 {
    margin: 0;
    font-size: 1.2em;
    color: #111827;
}

.plan-card-body {
    display: grid;
    gap: 12px;
}

.plan-card-section-title {
    display: block;
    font-weight: 600;
    color: #1d2939;
    font-size: 0.92em;
}

.plan-card-features {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: grid;
    gap: 8px;
}

.plan-card-features li {
    position: relative;
    padding-left: 22px;
    color: #1f2937;
}

.plan-card-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #1a6dff;
    font-weight: 700;
}

.plan-card-empty {
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.95em;
}

.plan-card-empty-card {
    border-radius: 18px;
    border: 1px dashed var(--line);
    background: #fff;
    padding: 18px;
    color: var(--muted);
    text-align: center;
    grid-column: 1 / -1;
}

.plan-card-details {
    margin-top: 12px;
}

.plan-card-details summary {
    cursor: pointer;
    font-weight: 600;
    color: #1a6dff;
}

.plan-card-details summary::marker {
    color: #1a6dff;
}

.plan-card-details p {
    margin: 8px 0 0;
    color: var(--muted);
    text-align: justify;
}

.plan-card-pricing {
    margin-top: auto;
    display: grid;
    gap: 10px;
}

.plan-card-periods {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.plan-card-period {
    position: relative;
}

.plan-card-period input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.plan-card-period-content {
    display: grid;
    gap: 4px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #f9fafb;
    transition: 0.2s ease;
    cursor: pointer;
}

.plan-card-period-name {
    font-weight: 600;
    color: #111827;
    font-size: 0.92em;
}

.plan-card-period-price {
    color: #1a6dff;
    font-weight: 700;
    font-size: 0.95em;
}

.plan-card-period input:checked + .plan-card-period-content {
    background: #1a6dff;
    border-color: transparent;
}

.plan-card-period input:checked + .plan-card-period-content .plan-card-period-name,
.plan-card-period input:checked + .plan-card-period-content .plan-card-period-price {
    color: #fff;
}

.plan-card-period.is-disabled .plan-card-period-content {
    opacity: 0.55;
    cursor: not-allowed;
}

.plans-showcase .plan-card-period.is-featured .plan-card-period-content {
    border-color: #1a6dff;
    background: #eef4ff;
    box-shadow: 0 10px 20px rgba(26, 109, 255, 0.18);
}

.plans-showcase .plan-card-period.is-featured .plan-card-period-name,
.plans-showcase .plan-card-period.is-featured .plan-card-period-price {
    color: #1a6dff;
}

.plans-showcase .plan-card-period.is-featured input:checked + .plan-card-period-content {
    background: #1a6dff;
    border-color: transparent;
    box-shadow: 0 12px 24px rgba(26, 109, 255, 0.28);
}

.plan-period-toggle {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 16px;
}

.plan-period-title {
    font-weight: 600;
    color: #1d2939;
}

.plan-period-option {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.plan-period-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.plan-period-option span {
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.plan-period-option input:checked + span {
    background: #1a6dff;
    border-color: transparent;
    color: #fff;
}

.plan-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 860px;
}

.plan-table th,
.plan-table td {
    padding: 16px;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
}

.plan-table thead th {
    text-align: left;
    font-size: 0.9em;
    color: var(--muted);
    background: #f7f9ff;
}

.plan-table th:not(:first-child),
.plan-table td:not(:first-child) {
    text-align: center;
}

.plan-col {
    min-width: 180px;
}

.plan-col-head {
    display: grid;
    gap: 8px;
    justify-items: center;
}

.plan-col-head h3 {
    margin: 0;
    font-size: 1.05em;
    color: #111827;
}

.plan-col-period {
    font-size: 0.82em;
    color: var(--muted);
}

.plan-feature-name {
    text-align: left;
    min-width: 240px;
}

.plan-feature-name strong {
    display: block;
    color: #111827;
    margin-bottom: 4px;
}

.plan-feature-name span {
    color: var(--muted);
    font-size: 0.9em;
}

.plan-cell {
    text-align: center;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.plan-features li {
    position: relative;
    width: 16px;
    height: 16px;
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -2px;
    color: #1a6dff;
    font-weight: 700;
}

.plan-no {
    color: var(--muted);
}

.plan-col.is-selected,
.plan-cell.is-selected {
    background: rgba(26, 109, 255, 0.06);
}

.plan-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: #1a6dff;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    transition: 0.2s ease;
}

.plan-cta input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.plan-cta:hover {
    filter: brightness(0.96);
}

.plan-cell.is-selected .plan-cta {
    background: #0f5fe8;
}

.signup-fieldset {
    display: grid;
    gap: 12px;
}

.signup-fieldset h4 {
    font-size: 1.05em;
    margin-bottom: 4px;
}

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

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

.field-hint {
    color: var(--muted);
    font-size: 0.92em;
}

.signup-subdomain {
    border: 1px dashed var(--line);
    border-radius: 16px;
    padding: 16px;
}

.signup-subdomain.is-hidden {
    display: none;
}

.subdomain-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.subdomain-status {
    font-weight: 600;
    font-size: 0.9em;
}

.subdomain-status.is-success {
    color: #027a48;
}

.subdomain-status.is-error {
    color: #b42318;
}

.js_nome_unico_res {
    background: #f5f7fb;
    color: var(--muted);
}

.signup-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.signup-side {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--line);
    display: grid;
    gap: 12px;
}

.signup-side ul {
    display: grid;
    gap: 10px;
    color: var(--muted);
}

.signup-note {
    color: var(--muted);
    font-size: 0.95em;
}

.site-footer {
    background: #0f1624;
    color: #ffffff;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    padding-bottom: 40px;
}

.footer-logo {
    width: 70px;
    margin-bottom: 16px;
}

.site-footer h4 {
    margin-bottom: 12px;
}

.site-footer a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0 24px;
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.6);
}

.whatsapp-fab {
    position: fixed;
    right: 24px;
    bottom: 24px;
    background: #21c063;
    color: #fff;
    padding: 12px 18px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: 0 16px 30px rgba(33, 192, 99, 0.35);
    cursor: pointer;
    z-index: 40;
}

.whatsapp-fab .icon-whatsapp {
    font-size: 1.1em;
}

.whatsapp-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

.whatsapp-modal.is-open {
    display: flex;
}

.whatsapp-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 20, 30, 0.6);
}

.whatsapp-card {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 28px;
    border-radius: 24px;
    width: min(420px, 90%);
    box-shadow: var(--shadow);
    display: grid;
    gap: 12px;
}

.whatsapp-close {
    position: absolute;
    right: 16px;
    top: 16px;
    background: transparent;
    border: none;
    font-size: 1em;
    cursor: pointer;
}

.whatsapp-form {
    display: grid;
    gap: 12px;
    margin-top: 8px;
}

.whatsapp-form input {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
}

.whatsapp-note {
    font-size: 0.85em;
    color: var(--muted);
}

@media (max-width: 980px) {
    .site-nav {
        position: fixed;
        top: 80px;
        right: 24px;
        background: #ffffff;
        border-radius: 20px;
        padding: 20px;
        flex-direction: column;
        gap: 12px;
        box-shadow: var(--shadow);
        display: none;
    }

    .site-nav.is-open {
        display: flex;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .hero-content {
        padding: 120px 0 90px;
    }

    .hero-dots {
        right: 24px;
        bottom: 20px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .plan-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .hero-metrics {
        flex-direction: column;
        gap: 12px;
    }

    .section {
        padding: 70px 0;
    }

    .capture-box {
        padding: 28px;
    }

    .signup-card,
    .signup-side {
        padding: 22px;
    }

    .signup-steps {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .signup-grid-2 {
        grid-template-columns: minmax(0, 1fr);
    }

    .signup-grid-3 {
        grid-template-columns: minmax(0, 1fr);
    }

    .plan-table th,
    .plan-table td {
        padding: 12px;
    }

    .plan-table {
        min-width: 760px;
    }

    .plan-cta {
        padding: 8px 14px;
    }

    .plan-period-option span {
        padding: 6px 12px;
    }

    .plan-card-periods {
        grid-template-columns: minmax(0, 1fr);
    }

    .plan-card-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}
