:root {
    --blue: #0f4c81;
    --blue-dark: #0b355a;
    --white: #ffffff;
    --bg: #f4f7fb;
    --bg-soft: #eef3f8;
    --text: #1f2937;
    --muted: #6b7280;
    --line: rgba(15, 76, 129, 0.08);
    --green: #14b85a;
    --green-dark: #0f9448;
    --red: #d7263d;
    --shadow-soft: 0 10px 30px rgba(15, 76, 129, 0.10);
    --shadow-strong: 0 16px 40px rgba(0, 0, 0, 0.14);
    --radius: 18px;
    --radius-lg: 24px;
    --container: 680px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(180deg, #f8fbff 0%, var(--bg-soft) 100%);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

a {
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(100% - 24px, var(--container));
    margin: 0 auto;
}

/* TOPO DE URGÊNCIA */
.top-urgency {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--red);
    color: var(--white);
    text-align: center;
    font-weight: 800;
    font-size: 0.84rem;
    line-height: 1.3;
    padding: 11px 12px;
    letter-spacing: 0.2px;
    box-shadow: 0 6px 16px rgba(215, 38, 61, 0.18);
}

/* ESTRUTURA GERAL */
.page {
    overflow: hidden;
}

/* HERO */
.hero {
    padding: 22px 0 20px;
    text-align: center;
}

.logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.logo-badge {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--blue), #2069a8);
    color: var(--white);
    font-size: 1.85rem;
    box-shadow: var(--shadow-soft);
}

.brand-name {
    font-size: 1.55rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--blue-dark);
}

.proof-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    margin-bottom: 16px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(88, 167, 245, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    color: var(--bg-soft);
    font-size: 0.88rem;
    font-weight: 700;
}

.headline {
    max-width: 100%;
    margin: 0 auto 12px;
    font-size: 1.8rem;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--text);
}

.subheadline {
    max-width: 100%;
    margin: 0 auto 18px;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.5;
    padding: 0 4px;
}

.countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 18px;
    padding: 12px 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
}

.countdown-label {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 600;
}

#countdown {
    color: var(--red);
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 1px;
}

/* CTA */
.cta-area {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 60px;
    padding: 16px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--green), #20cf6b);
    color: var(--white);
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 900;
    text-align: center;
    letter-spacing: 0.2px;
    box-shadow: 0 12px 28px rgba(20, 184, 90, 0.32);
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
    animation: pulseMobile 1.8s infinite;
    -webkit-tap-highlight-color: transparent;
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    width: 58%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
    transform: skewX(-20deg);
    animation: shine 3s infinite;
}

.cta-button:hover,
.cta-button:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 15px 32px rgba(20, 184, 90, 0.38);
    filter: brightness(1.03);
}

.cta-helper {
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--muted);
    max-width: 320px;
    margin: 0 auto;
}

/* BANNER */
.banner-section {
    padding: 16px 0 6px;
}

.banner-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.banner-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* BENEFÍCIOS */
.benefits {
    padding: 26px 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 18px;
}

.section-header h3 {
    font-size: 1.4rem;
    line-height: 1.15;
    color: var(--blue-dark);
    margin-bottom: 8px;
    font-weight: 800;
}

.section-header p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.45;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.benefit-card {
    background: rgba(255,255,255,0.97);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px 16px;
    box-shadow: var(--shadow-soft);
    text-align: left;
}

.benefit-icon {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.benefit-card h4 {
    font-size: 1rem;
    line-height: 1.25;
    margin-bottom: 6px;
    color: var(--text);
    font-weight: 800;
}

.benefit-card p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

/* CTA FINAL */
.final-cta {
    padding: 4px 0 28px;
}

.final-cta-card {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 22px 16px;
    text-align: center;
    box-shadow: var(--shadow-strong);
}

.final-cta-card h3 {
    font-size: 1.35rem;
    line-height: 1.15;
    margin-bottom: 8px;
    font-weight: 900;
}

.final-cta-card p {
    font-size: 0.95rem;
    line-height: 1.45;
    color: rgba(255,255,255,0.88);
    margin-bottom: 16px;
}

/* FOOTER */
.footer {
    background: #0d1726;
    color: rgba(255,255,255,0.84);
    text-align: center;
    padding: 18px 0 24px;
    font-size: 0.92rem;
    font-weight: 700;
}

/* SOCIAL PROOF */
.social-proof-container {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    pointer-events: none;
}

.social-proof-toast {
    width: min(100%, 320px);
    background: rgba(17, 24, 39, 0.96);
    color: var(--white);
    padding: 12px 14px;
    border-radius: 14px;
    border-left: 4px solid var(--green);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    opacity: 0;
    transform: translateY(24px);
    animation: slideUpIn 0.45s ease forwards;
}

.social-proof-toast.hide {
    animation: slideDownOut 0.45s ease forwards;
}

.social-proof-title {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.72);
    margin-bottom: 2px;
}

.social-proof-text {
    font-size: 0.9rem;
    line-height: 1.35;
    font-weight: 800;
}

/* ANIMAÇÕES */
@keyframes pulseMobile {
    0% {
        transform: scale(1);
        box-shadow: 0 12px 28px rgba(20, 184, 90, 0.28);
    }
    50% {
        transform: scale(1.025);
        box-shadow: 0 18px 36px rgba(20, 184, 90, 0.42);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 12px 28px rgba(20, 184, 90, 0.28);
    }
}

@keyframes shine {
    0% {
        left: -130%;
    }
    100% {
        left: 150%;
    }
}

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

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

/* TELAS MAIORES */
@media (min-width: 480px) {
    .top-urgency {
        font-size: 0.9rem;
    }

    .hero {
        padding: 28px 0 24px;
    }

    .brand-name {
        font-size: 1.75rem;
    }

    .headline {
        font-size: 2.05rem;
    }

    .subheadline {
        font-size: 1rem;
    }

    .cta-button {
        max-width: 420px;
    }

    .final-cta-card {
        padding: 26px 20px;
    }
}

@media (min-width: 768px) {
    :root {
        --container: 1100px;
    }

    .container {
        width: min(100% - 32px, var(--container));
    }

    .hero {
        padding: 54px 0 28px;
    }

    .logo-badge {
        width: 76px;
        height: 76px;
        font-size: 2rem;
    }

    .brand-name {
        font-size: 2.2rem;
    }

    .proof-badge {
        font-size: 0.95rem;
        padding: 10px 16px;
        margin-bottom: 20px;
    }

    .headline {
        max-width: 820px;
        font-size: 3rem;
        line-height: 1.08;
        margin-bottom: 14px;
    }

    .subheadline {
        max-width: 720px;
        font-size: 1.12rem;
        margin-bottom: 22px;
    }

    .countdown-box {
        padding: 14px 24px;
        margin-bottom: 22px;
    }

    #countdown {
        font-size: 1.5rem;
    }

    .cta-button {
        width: min(100%, 430px);
        min-height: 58px;
        font-size: 1.04rem;
    }

    .benefits {
        padding: 42px 0 36px;
    }

    .section-header {
        margin-bottom: 24px;
    }

    .section-header h3 {
        font-size: 1.8rem;
    }

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

    .benefit-card {
        padding: 24px 20px;
    }

    .final-cta {
        padding: 8px 0 48px;
    }

    .final-cta-card {
        padding: 30px 24px;
    }

    .final-cta-card h3 {
        font-size: 1.7rem;
    }

    .social-proof-container {
        left: 16px;
        right: auto;
        bottom: 16px;
    }

    .social-proof-toast {
        width: 300px;
    }
}

@media (min-width: 1024px) {
    .headline {
        font-size: 3.3rem;
    }

    .subheadline {
        font-size: 1.15rem;
    }

    .cta-button {
        font-size: 1.06rem;
    }
}
