:root {
    --bg-dark: #07111f;
    --bg-darker: #030914;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-strong: rgba(255, 255, 255, 0.92);
    --surface-dark: #0f1d30;
    --surface-sidebar: linear-gradient(180deg, #081220 0%, #0f213b 100%);
    --text: #10213b;
    --muted: #68778f;
    --brand-red: #df1f2d;
    --brand-yellow: #ffbe0b;
    --brand-coral: #ff6b4a;
    --brand-cyan: #59d8ff;
    --success: #1f9d66;
    --border: rgba(16, 33, 59, 0.08);
    --shadow: 0 24px 70px rgba(4, 18, 35, 0.14);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --font-body: "Inter", sans-serif;
    --font-display: "Inter", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background: #f4f7fb;
}

h1, h2, h3, h4, h5, .display-4 {
    font-family: var(--font-display);
    letter-spacing: -0.03em;
}

a {
    text-decoration: none;
}

.public-body {
    background:
        radial-gradient(circle at top left, rgba(89, 216, 255, 0.12), transparent 36%),
        linear-gradient(180deg, #f7fbff 0%, #eef4fa 100%);
}

.auth-body,
.login-section {
    background:
        radial-gradient(circle at top, rgba(255, 190, 11, 0.18), transparent 28%),
        linear-gradient(180deg, #091220 0%, #12253f 100%);
}

.admin-body {
    background: #eef3f8;
}

.floating-alert {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1060;
    border: 0;
}

.floating-whatsapp-button {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.95rem 1.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366 0%, #128c4a 100%);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(18, 140, 74, 0.28);
    z-index: 1050;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp-button:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 22px 46px rgba(18, 140, 74, 0.34);
}

.floating-whatsapp-button i {
    font-size: 1.35rem;
    line-height: 1;
}

.page-loader {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(3, 9, 20, 0.55);
    color: white;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 1055;
}

.page-loader.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.loader-orb {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--brand-yellow), var(--brand-red));
    box-shadow: 0 20px 40px rgba(223, 31, 45, 0.35);
    animation: pulse 1.2s infinite ease-in-out;
}

.hero-section {
    color: white;
    background:
        linear-gradient(125deg, #07111f 0%, #132a45 48%, #1d3f66 100%);
}

.hero-glow {
    position: absolute;
    width: 460px;
    height: 460px;
    filter: blur(24px);
    opacity: 0.22;
    border-radius: 50%;
}

.hero-glow-left {
    top: -120px;
    left: -120px;
    background: var(--brand-yellow);
}

.hero-glow-right {
    right: -140px;
    bottom: -160px;
    background: var(--brand-cyan);
}

.brand-mark {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-coral));
    color: white;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(223, 31, 45, 0.28);
}

.brand-inline {
    display: inline-flex;
    gap: 0.85rem;
    align-items: center;
    color: white;
    font-weight: 700;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--brand-red);
    font-weight: 800;
}

.hero-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.hero-proof-grid div,
.stat-card-large,
.mini-timeline div {
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 1rem;
}

.hero-proof-grid strong {
    display: block;
    font-size: 1.3rem;
}

.hero-proof-grid span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
}

.hero-panel {
    background: rgba(7, 17, 31, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.hero-panel-top {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

.hero-panel-body {
    padding: 1.5rem;
}

.stat-card-large strong {
    display: block;
    font-size: 1.75rem;
    margin: 0.25rem 0 0.75rem;
}

.stat-card-large p,
.mini-timeline div {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.mini-timeline {
    display: grid;
    gap: 0.9rem;
    margin-top: 1rem;
}

.mini-timeline span {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    margin-right: 0.6rem;
    font-weight: 700;
}

.section-heading {
    max-width: 640px;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.85rem;
}

.section-heading p {
    color: var(--muted);
    font-size: 1.05rem;
}

.feature-card,
.testimonial-card,
.simulator-card,
.simulator-result-card,
.capture-card,
.info-card,
.faq-accordion .accordion-item,
.thank-you-card,
.login-card,
.metric-card,
.panel-card {
    background: var(--surface-strong);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.feature-card,
.testimonial-card,
.info-card,
.metric-card {
    padding: 1.5rem;
}

.metric-card-accent {
    background: linear-gradient(135deg, rgba(223, 31, 45, 0.08), rgba(255, 190, 11, 0.12));
    border-color: rgba(223, 31, 45, 0.18);
}

.feature-icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(223, 31, 45, 0.08);
    color: var(--brand-red);
    font-weight: 800;
    margin-bottom: 1rem;
}

.feature-icon i {
    font-size: 1.25rem;
}

.simulator-card,
.capture-card,
.thank-you-card,
.login-card {
    padding: 2rem;
}

.simulator-result-card {
    padding: 2rem;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(243, 247, 252, 0.98));
}

.result-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.result-metrics div {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(8, 18, 32, 0.04);
}

.result-metrics strong {
    display: block;
    font-size: 1.4rem;
}

.info-stack {
    display: grid;
    gap: 1rem;
}

.faq-accordion .accordion-item {
    overflow: hidden;
    margin-bottom: 1rem;
}

.faq-accordion .accordion-button {
    font-weight: 700;
    background: transparent;
}

.footer-section {
    background: var(--bg-darker);
}

.thank-you-section {
    background:
        radial-gradient(circle at top, rgba(89, 216, 255, 0.18), transparent 28%),
        linear-gradient(180deg, #f4f9ff 0%, #ebf2fb 100%);
}

.thank-you-card,
.login-card {
    max-width: 620px;
}

.demo-hint {
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    border-radius: 16px;
    background: rgba(223, 31, 45, 0.06);
    color: var(--muted);
}

.admin-shell {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    min-height: 100vh;
}

.admin-sidebar {
    padding: 1.5rem;
    background: var(--surface-sidebar);
    color: white;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 0;
    height: 100vh;
}

.brand-block {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.brand-block small {
    display: block;
    color: rgba(255, 255, 255, 0.6);
}

.sidebar-nav {
    display: grid;
    gap: 0.45rem;
}

.sidebar-nav a {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.85rem 1rem;
    border-radius: 14px;
    transition: 0.2s ease;
}

.sidebar-nav a.active,
.sidebar-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

.sidebar-user {
    margin-top: auto;
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
}

.sidebar-user small {
    color: rgba(255, 255, 255, 0.68);
}

.admin-main {
    padding: 2rem;
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric-card strong {
    display: block;
    font-size: 2.15rem;
    margin: 0.45rem 0 0.25rem;
}

.metric-card span,
.panel-card-header p,
.metric-card small {
    color: var(--muted);
}

.panel-card {
    padding: 1.5rem;
}

.panel-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.panel-card-header h2 {
    font-size: 1.2rem;
    margin: 0 0 0.25rem;
}

.panel-card-header p {
    margin: 0;
}

.table-modern thead th {
    color: var(--muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom-color: var(--border);
}

.table-modern tbody td {
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom-color: rgba(16, 33, 59, 0.06);
}

.table-link {
    color: var(--text);
    font-weight: 700;
}

.table-link:hover {
    color: var(--brand-red);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    background: rgba(16, 33, 59, 0.08);
    color: var(--text);
}

.status-novo { background: rgba(89, 216, 255, 0.18); color: #0d6a8c; }
.status-contato-iniciado { background: rgba(255, 190, 11, 0.2); color: #8f6400; }
.status-proposta-enviada { background: rgba(223, 31, 45, 0.12); color: #a91722; }
.status-negociacao { background: rgba(102, 117, 255, 0.16); color: #3849be; }
.status-fechado { background: rgba(31, 157, 102, 0.18); color: #137547; }
.status-perdido { background: rgba(16, 33, 59, 0.12); color: #546174; }

.timeline-list {
    display: grid;
    gap: 1rem;
}

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

.timeline-dot {
    width: 14px;
    height: 14px;
    margin-top: 0.35rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-yellow), var(--brand-red));
    box-shadow: 0 0 0 6px rgba(223, 31, 45, 0.08);
}

.summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.summary-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(16, 33, 59, 0.08);
}

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

.upload-card,
.integration-list div {
    padding: 1rem;
    border-radius: 16px;
    background: rgba(8, 18, 32, 0.05);
}

.upload-card {
    display: grid;
    gap: 0.35rem;
}

.integration-list {
    display: grid;
    gap: 0.75rem;
}

.form-control,
.form-select {
    border-radius: 14px;
    border: 1px solid rgba(16, 33, 59, 0.12);
    padding: 0.8rem 1rem;
    font-size: 0.98rem;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(223, 31, 45, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(223, 31, 45, 0.12);
}

.btn {
    border-radius: 14px;
    padding: 0.75rem 1.15rem;
}

@keyframes pulse {
    0%, 100% { transform: scale(0.94); }
    50% { transform: scale(1); }
}

@media (max-width: 1199.98px) {
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: relative;
        height: auto;
    }
}

@media (max-width: 991.98px) {
    .hero-proof-grid,
    .result-metrics {
        grid-template-columns: 1fr;
    }

    .admin-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {
    .capture-card,
    .simulator-card,
    .simulator-result-card,
    .panel-card,
    .login-card,
    .thank-you-card {
        padding: 1.4rem;
    }

    .admin-main {
        padding: 1rem;
    }

    .floating-alert {
        left: 1rem;
        right: 1rem;
    }

    .floating-whatsapp-button {
        right: 1rem;
        bottom: 1rem;
        padding: 0.9rem 1rem;
    }
}

.campaign-page {
    background:
        radial-gradient(circle at top, rgba(255, 184, 0, 0.12), transparent 24%),
        linear-gradient(180deg, #490406 0%, #8d0909 22%, #f6e8e2 62%, #fff7f2 100%);
}

.campaign-strip {
    background: linear-gradient(180deg, #7c0507 0%, #4d0103 100%);
    color: white;
    padding: 0.7rem 0;
    font-weight: 800;
    border-bottom: 2px solid rgba(255, 205, 103, 0.45);
}

.campaign-strip .container {
    display: flex;
    justify-content: center;
}

.campaign-strip-message {
    text-align: center;
    color: #ffffff;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    line-height: 1.35;
    letter-spacing: 0.01em;
}

@media (max-width: 767.98px) {
    .campaign-strip-message {
        font-size: 0.92rem;
    }
}

.campaign-substrip {
    background: linear-gradient(180deg, #fff3ef 0%, #ffe2d6 100%);
    color: #c92b13;
    text-align: center;
    padding: 0.85rem 0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.campaign-hero {
    position: relative;
    color: white;
    background:
        radial-gradient(circle at top right, rgba(255, 190, 11, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(90, 4, 6, 0.98) 0%, rgba(133, 6, 8, 0.96) 100%);
    overflow: hidden;
}

.campaign-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(73, 4, 6, 0.72) 0%, rgba(141, 9, 9, 0.72) 100%),
        url("../img/img-banner.webp") center/cover no-repeat;
    opacity: 0.4;
    pointer-events: none;
}

.campaign-hero > .container {
    position: relative;
    z-index: 1;
}

.clean-hero {
    padding-bottom: 1.25rem;
}

.brand-inline-clean {
    min-height: 48px;
}

.header-logo-image {
    max-height: 42px;
    width: auto;
    display: block;
}

.campaign-copy h1 {
    font-size: clamp(2.5rem, 5vw, 4.6rem);
    line-height: 0.98;
    margin-bottom: 1rem;
}

.clean-copy h1 {
    max-width: 720px;
}

.campaign-badge {
    display: inline-flex;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 208, 102, 0.14);
    border: 1px solid rgba(255, 208, 102, 0.35);
    color: #ffd88f;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.campaign-lead {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 780px;
}

.hero-offer-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.15rem;
}

.hero-offer-pills span {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 215, 136, 0.25);
    color: #fff1d3;
    font-size: 0.92rem;
    font-weight: 700;
}

.hero-offer-pills .hero-pill-featured {
    background: linear-gradient(135deg, rgba(255, 190, 11, 0.26) 0%, rgba(255, 133, 27, 0.24) 100%);
    border-color: rgba(255, 214, 126, 0.5);
    color: #fff7e2;
    font-weight: 800;
    box-shadow: 0 14px 32px rgba(255, 190, 11, 0.14);
}

.clean-hero-points {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.4rem;
}

.clean-hero-points div {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.clean-hero-points i {
    color: #ffd36a;
}

.hero-cta-group {
    align-items: center;
}

.campaign-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.campaign-proof-grid > div {
    padding: 1.1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 212, 117, 0.22);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.campaign-proof-grid strong,
.campaign-mini-features div {
    display: block;
    color: white;
    font-weight: 800;
}

.campaign-proof-grid span {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 0.35rem;
}

.campaign-mini-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.campaign-mini-features div {
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.92rem;
}

.campaign-form-card {
    position: relative;
    padding: 1.8rem;
    border-radius: 28px;
    background:
        radial-gradient(circle at top, rgba(255, 182, 38, 0.14), transparent 32%),
        linear-gradient(180deg, #cf190f 0%, #8c0708 100%);
    border: 2px solid rgba(255, 201, 96, 0.5);
    box-shadow:
        0 0 0 4px rgba(255, 217, 124, 0.08),
        0 30px 80px rgba(53, 0, 0, 0.4);
}

.campaign-form-card h2 {
    color: white;
    font-size: 2rem;
    margin: 0.35rem 0 0.65rem;
}

.campaign-form-card p {
    color: rgba(255, 255, 255, 0.82);
}

.form-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.form-trust-pills span {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 221, 167, 0.2);
    color: #fff1d8;
    font-size: 0.8rem;
    font-weight: 700;
}

.selection-summary {
    display: grid;
    gap: 0.3rem;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 220, 168, 0.25);
    color: #fff;
}

.selection-summary strong {
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #ffe1a4;
}

.selection-summary span {
    font-weight: 700;
}

.form-advanced-toggle {
    color: #ffe1a4;
    font-weight: 700;
    text-decoration: none;
    padding: 0;
}

.form-advanced-toggle:hover,
.form-advanced-toggle:focus {
    color: #fff0c7;
    text-decoration: none;
}

.form-advanced-panel {
    margin-top: 0.25rem;
    padding: 0.95rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 221, 167, 0.2);
}

.form-microcopy {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
    text-align: center;
}

.campaign-form-card .form-control {
    border-color: rgba(255, 212, 141, 0.45);
    background: rgba(255, 255, 255, 0.95);
}

.campaign-form-card .form-select {
    border-color: rgba(255, 212, 141, 0.45);
    background: rgba(255, 255, 255, 0.95);
}

.campaign-form-note {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 232, 198, 0.12);
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 213, 120, 0.26);
    font-size: 0.95rem;
}

.plans-section {
    position: relative;
    z-index: 1;
    margin-top: -24px;
}

.trust-strip {
    background: rgba(255, 255, 255, 0.92);
    border-top: 1px solid rgba(122, 8, 8, 0.08);
    border-bottom: 1px solid rgba(122, 8, 8, 0.08);
}

.trust-item {
    text-align: center;
}

.trust-item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(223, 31, 45, 0.08);
    color: var(--brand-red);
    font-size: 1.55rem;
    margin-bottom: 0.85rem;
}

.trust-item strong,
.trust-item span {
    display: block;
}

.trust-item strong {
    font-size: 2rem;
    color: #14253f;
}

.trust-item span {
    color: #6a7690;
}

.offer-section {
    background: linear-gradient(180deg, #fff8f5 0%, #fff 100%);
}

.proposal-card {
    position: relative;
    height: 100%;
    padding: 2rem;
    border-radius: 28px;
    background: white;
    border: 1px solid rgba(18, 37, 63, 0.12);
    box-shadow: 0 20px 60px rgba(76, 0, 0, 0.08);
}

.proposal-card-primary {
    border: 2px solid #ef1212;
    box-shadow: 0 24px 70px rgba(239, 18, 18, 0.12);
}

.proposal-card .btn-light {
    background: linear-gradient(135deg, #fff2f2 0%, #ffe0e0 100%);
    border: 1px solid rgba(239, 18, 18, 0.18);
    color: #b31520;
    font-weight: 800;
    box-shadow: 0 14px 32px rgba(239, 18, 18, 0.08);
}

.proposal-card .btn-light:hover,
.proposal-card .btn-light:focus {
    background: linear-gradient(135deg, #ef1212 0%, #e7384b 100%);
    border-color: #ef1212;
    color: #fff;
    box-shadow: 0 18px 38px rgba(239, 18, 18, 0.18);
}

.proposal-tag {
    position: absolute;
    top: -14px;
    left: 24px;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.tag-hot {
    background: #ef1212;
    color: white;
}

.tag-neutral {
    background: #eef1f6;
    color: #14253f;
}

.proposal-card-head {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.proposal-icon {
    display: inline-flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(239, 18, 18, 0.08);
    color: #ef1212;
    font-size: 1.45rem;
}

.proposal-card-head h3 {
    margin: 0;
    font-size: 1.9rem;
    color: #1a2840;
}

.proposal-card-head p {
    margin: 0.2rem 0 0;
    color: #6e7a93;
}

.proposal-price {
    margin-bottom: 1.25rem;
}

.proposal-price span,
.proposal-price small {
    display: block;
    color: #6e7a93;
}

.speed-highlight {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.55rem;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ef1212 0%, #ff6a00 100%);
    color: #fff !important;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 0.05em;
    box-shadow: 0 12px 28px rgba(239, 18, 18, 0.22);
    text-transform: uppercase;
    width: max-content;
}

.proposal-price strong {
    display: block;
    font-size: 3rem;
    line-height: 1;
    color: #162640;
}

.proposal-home-benefit {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 1.35rem;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(239, 18, 18, 0.08) 0%, rgba(255, 190, 11, 0.14) 100%);
    border: 1px solid rgba(239, 18, 18, 0.14);
    color: #24324a;
}

.proposal-home-benefit i {
    color: #ef1212;
    font-size: 1.15rem;
    margin-top: 0.1rem;
}

.proposal-home-benefit span {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.45;
}

.proposal-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    gap: 0.9rem;
}

.proposal-list li {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    color: #24324a;
}

.proposal-list i {
    color: #ef1212;
    margin-top: 0.15rem;
}

.offer-note {
    color: #6e7a93;
}

.plans-shell {
    padding: 2rem;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(102, 3, 6, 0.98) 0%, rgba(124, 7, 10, 0.98) 100%);
    border: 3px solid rgba(255, 212, 123, 0.34);
    box-shadow:
        0 0 0 6px rgba(255, 214, 123, 0.06),
        0 34px 90px rgba(82, 0, 0, 0.28);
}

.plans-heading {
    max-width: 900px;
}

.plans-heading h2 {
    color: white;
    font-size: clamp(2rem, 3.6vw, 3.2rem);
}

.plans-heading p {
    color: rgba(255, 255, 255, 0.75);
}

.line-plan-card {
    height: 100%;
    padding: 10px;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffbc68 0%, #ffe7b9 14%, #df3e11 48%, #8d0707 100%);
    box-shadow: 0 0 35px rgba(255, 187, 94, 0.18);
}

.line-plan-card.featured {
    transform: translateY(-10px);
    box-shadow: 0 0 45px rgba(255, 209, 104, 0.35);
}

.line-plan-inner {
    height: 100%;
    border-radius: 22px;
    padding: 1.5rem 1.25rem;
    background:
        radial-gradient(circle at top, rgba(255, 209, 109, 0.08), transparent 26%),
        linear-gradient(180deg, #ff3c13 0%, #cc170d 42%, #8d0607 100%);
    color: white;
    text-align: center;
    border: 2px solid rgba(255, 220, 146, 0.5);
    box-shadow: inset 0 0 20px rgba(255, 230, 192, 0.12);
}

.line-plan-brand {
    display: block;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 245, 221, 0.96);
}

.line-plan-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 0.8rem;
    border-radius: 16px;
    background: rgba(255, 235, 204, 0.14);
    border: 1px solid rgba(255, 224, 177, 0.34);
    color: #fff2d7;
    font-size: 1.35rem;
}

.line-plan-inner h3 {
    font-size: 3.3rem;
    line-height: 0.95;
    margin: 0.35rem 0 1rem;
    color: white;
}

.line-plan-cnpj {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 236, 205, 0.14);
    border: 1px solid rgba(255, 223, 171, 0.28);
    color: #fff3db;
    font-size: 0.78rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.line-plan-split {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.75rem;
    align-items: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 220, 184, 0.4);
    border-bottom: 1px solid rgba(255, 220, 184, 0.4);
}

.line-plan-split strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
}

.line-plan-split span {
    display: block;
    font-size: 0.82rem;
    color: rgba(255, 240, 224, 0.86);
    text-transform: uppercase;
}

.split-mark {
    font-size: 1.6rem;
    font-weight: 900;
    color: #ffe7b9;
}

.line-plan-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: grid;
    gap: 0.55rem;
    color: rgba(255, 241, 222, 0.92);
    font-size: 0.9rem;
}

.line-plan-price {
    margin-top: auto;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(255, 220, 184, 0.4);
}

.line-plan-price span,
.line-plan-price small {
    display: block;
    text-transform: uppercase;
    color: rgba(255, 238, 216, 0.86);
}

.line-plan-price strong {
    display: block;
    font-size: 2.7rem;
    line-height: 1;
    margin: 0.35rem 0;
}

.line-plan-button {
    padding: 0.72rem 0.85rem;
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
}

.line-plan-button i {
    font-size: 0.95rem;
}

.management-banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 1.25rem;
    align-items: center;
    padding: 1.4rem;
    border-radius: 26px;
    background: rgba(255, 242, 226, 0.08);
    border: 1px solid rgba(255, 213, 131, 0.22);
    color: white;
}

.management-banner p {
    margin: 0.4rem 0 0;
    color: rgba(255, 255, 255, 0.78);
}

.management-highlight {
    text-align: center;
    padding: 1rem;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffe8b9 0%, #ffca63 100%);
    color: #7a0808;
}

.management-highlight span,
.management-highlight small {
    display: block;
    text-transform: uppercase;
    font-weight: 800;
}

.management-highlight strong {
    display: block;
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 0.92;
}

.campaign-benefits {
    background: transparent;
}

.campaign-benefit-card {
    height: 100%;
    padding: 1.6rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(126, 13, 15, 0.1);
    box-shadow: 0 24px 60px rgba(76, 0, 0, 0.08);
}

.section-heading-light h2,
.section-heading-light p {
    color: white;
}

.section-heading-light p {
    color: rgba(255, 255, 255, 0.78);
}

.campaign-simulator-card {
    background: rgba(255, 255, 255, 0.95);
}

.campaign-result-card {
    background:
        linear-gradient(180deg, rgba(255, 248, 237, 0.98), rgba(255, 236, 220, 0.98));
    border: 1px solid rgba(194, 42, 17, 0.14);
}

.campaign-faq .accordion-item {
    background: rgba(255, 255, 255, 0.95);
}

.campaign-faq .accordion-button:not(.collapsed) {
    background: rgba(223, 31, 45, 0.05);
    color: #8d0707;
    box-shadow: none;
}

.comparison-section {
    background: linear-gradient(180deg, #fff 0%, #fff5ef 100%);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.comparison-highlight-card {
    padding: 1.4rem;
    border-radius: 24px;
    background: white;
    border: 1px solid rgba(18, 37, 63, 0.1);
    box-shadow: 0 20px 60px rgba(76, 0, 0, 0.08);
    text-align: center;
}

.comparison-highlight-card span,
.comparison-highlight-card small {
    display: block;
    color: #6e7a93;
}

.comparison-highlight-card strong {
    display: block;
    font-size: 2.5rem;
    line-height: 1;
    color: #162640;
    margin: 0.45rem 0;
}

.comparison-table-wrap {
    overflow: hidden;
    border-radius: 24px;
    background: white;
    border: 1px solid rgba(18, 37, 63, 0.1);
    box-shadow: 0 20px 60px rgba(76, 0, 0, 0.08);
}

.comparison-table thead th {
    background: #7c0507;
    color: white;
    border: 0;
    padding: 1rem;
    font-weight: 700;
}

.comparison-table tbody td {
    padding: 1rem;
    border-color: rgba(18, 37, 63, 0.08);
    color: #24324a;
}

.success-modal {
    border: 0;
    border-radius: 28px;
    box-shadow: 0 24px 80px rgba(76, 0, 0, 0.18);
}

.proposal-form-modal .modal-dialog {
    max-width: 720px;
}

.proposal-form-modal .modal-content {
    background: transparent;
    border: 0;
    box-shadow: none;
}

.proposal-form-modal .modal-body {
    position: relative;
}

.campaign-form-card-modal {
    margin: 0;
}

.proposal-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.95);
    opacity: 1;
    box-shadow: 0 10px 24px rgba(31, 8, 8, 0.18);
}

.success-modal-icon {
    font-size: 3.5rem;
    color: #1f9d66;
    line-height: 1;
    margin-bottom: 1rem;
}

.whatsapp-redirect-card {
    max-width: 640px;
}

.redirect-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.redirect-brand strong {
    font-size: 1.1rem;
    color: var(--text);
}

.redirect-status-flow {
    display: grid;
    gap: 0.65rem;
}

.redirect-status-line {
    margin: 0;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: rgba(16, 33, 59, 0.05);
    color: #6e7a93;
    font-weight: 700;
    transition: 0.25s ease;
}

.redirect-status-line.is-active {
    background: linear-gradient(135deg, rgba(239, 18, 18, 0.12) 0%, rgba(255, 190, 11, 0.16) 100%);
    color: #b31520;
    border: 1px solid rgba(239, 18, 18, 0.12);
}

.redirect-status-line.is-completed {
    background: rgba(31, 157, 102, 0.1);
    color: #137547;
}

.redirect-countdown {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef1212 0%, #b90f1c 100%);
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    box-shadow: 0 18px 42px rgba(223, 31, 45, 0.28);
}

.redirect-countdown-label {
    font-weight: 600;
}

.mobile-sticky-cta {
    display: none;
}

.settings-tabs {
    border-bottom: 1px solid rgba(16, 33, 59, 0.1);
    gap: 0.5rem;
}

.settings-tabs .nav-link {
    border: 0;
    border-radius: 999px;
    color: #5b6780;
    font-weight: 700;
    padding: 0.65rem 1rem;
}

.settings-tabs .nav-link.active {
    background: rgba(223, 31, 45, 0.1);
    color: #b31520;
}

.settings-tab-content {
    min-height: 320px;
}

@media (max-width: 991.98px) {
    .campaign-proof-grid {
        grid-template-columns: 1fr;
    }

    .plans-section {
        margin-top: 0;
    }

    .management-banner {
        grid-template-columns: 1fr;
    }

    .line-plan-card.featured {
        transform: none;
    }

    .proposal-card {
        padding: 1.5rem;
    }

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

@media (max-width: 767.98px) {
    .public-body {
        padding-bottom: 88px;
    }

    .campaign-copy h1 {
        font-size: 2.2rem;
    }

    .hero-cta-group {
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
    }

    .hero-offer-pills {
        gap: 0.55rem;
    }

    .hero-offer-pills span {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .proposal-home-benefit {
        padding: 0.9rem;
        border-radius: 16px;
    }

    .proposal-home-benefit span {
        font-size: 0.92rem;
    }

    .plans-shell,
    .campaign-form-card {
        padding: 1.25rem;
    }

    .proposal-modal-close {
        top: 0.85rem;
        right: 0.85rem;
    }

    .line-plan-inner h3 {
        font-size: 2.6rem;
    }

    .management-highlight strong {
        font-size: 3rem;
    }

    .mobile-sticky-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1040;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
        background: rgba(7, 17, 31, 0.94);
        backdrop-filter: blur(10px);
        box-shadow: 0 -10px 30px rgba(3, 9, 20, 0.18);
    }

    .mobile-sticky-cta .btn {
        width: 100%;
        border-radius: 999px;
        font-weight: 800;
    }

    .floating-whatsapp-button {
        bottom: 5.75rem;
    }
}
