/* ==========================================================
   Lucas Pinheiro · Locacao de Carros & Leilao
   Pagina de links — banner-style com cantos arredondados
   ========================================================== */

:root {
    --bg-deep:   #06090f;
    --bg-mid:    #0c1220;
    --bg-soft:   #131a2a;

    --gold:        #c9a961;
    --gold-bright: #e6c97a;
    --gold-soft:   rgba(201, 169, 97, 0.20);
    --gold-line:   rgba(201, 169, 97, 0.40);

    --whatsapp:    #25d366;
    --instagram:   #e1306c;
    --youtube:     #ff0000;

    --text:        #f4f4f6;
    --text-muted:  #9aa0ad;
    --text-dim:    #6b7080;

    --card:        rgba(255, 255, 255, 0.04);
    --border:      rgba(255, 255, 255, 0.08);

    --radius:      18px;
    --radius-lg:   24px;
    --radius-xl:   28px;
}

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

html { scroll-behavior: smooth; }

body {
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg-deep);
    background-image:
        radial-gradient(ellipse 70% 50% at 50%   0%, rgba(201, 169, 97, 0.10), transparent 65%),
        radial-gradient(ellipse 60% 45% at 50% 100%, rgba(40, 80, 160, 0.12), transparent 65%),
        radial-gradient(ellipse 90% 60% at 50% 50%, rgba(15, 25, 45, 0.6),  transparent 70%),
        linear-gradient(180deg, #06090f 0%, #0a1020 50%, #06090f 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    padding: 28px 18px 48px;
    overflow-x: hidden;
}

/* fina textura grain sobre o fundo */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.045 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    opacity: 0.5;
    mix-blend-mode: overlay;
}

.page {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}


/* ==========================================================
   BANNER — base
   ========================================================== */
.banner {
    position: relative;
    display: block;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-mid);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.25),
        0 10px 30px rgba(0, 0, 0, 0.30),
        inset 0 0 0 2.5px rgba(230, 201, 122, 0.9),
        inset 0 0 0 3.5px rgba(201, 169, 97, 0.4);
    transform: translateZ(0);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
                box-shadow 0.4s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    animation: fadeUp 0.6s ease both;
}

.banner img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
                filter 0.4s ease;
}

/* moldura dourada sutil no hover */
.banner::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(201, 169, 97, 0);
    transition: box-shadow 0.35s ease;
}

.banner:hover {
    box-shadow:
        0 6px 12px rgba(0, 0, 0, 0.35),
        0 20px 50px rgba(230, 201, 122, 0.35),
        inset 0 0 0 2.5px rgba(255, 220, 140, 1),
        inset 0 0 0 4px rgba(201, 169, 97, 0.55);
}

.banner:hover img {
    transform: scale(1.025);
    filter: brightness(1.05);
}

.banner:hover::after {
    box-shadow: inset 0 0 0 2px rgba(230, 201, 122, 0.9);
}

.banner:active {
    transition-duration: 0.15s;
    transform: scale(0.992) translateY(0) !important;
}

/* delay escalonado para o fade-in */
.banner:nth-child(1) { animation-delay: 0.00s; }
.banner:nth-child(2) { animation-delay: 0.08s; }
.banner:nth-child(3) { animation-delay: 0.16s; }
.banner:nth-child(4) { animation-delay: 0.24s; }
.banner:nth-child(5) { animation-delay: 0.32s; }
.banner:nth-child(6) { animation-delay: 0.40s; }


/* ==========================================================
   HERO BANNER
   ========================================================== */
.banner--hero {
    margin-bottom: 6px;
    border-radius: var(--radius-xl);
}

/* boost de contraste/saturacao pra realcar a frase amarela */
.banner--hero img {
    filter: contrast(1.12) saturate(1.25) brightness(1.03);
}

.banner--hero:hover img {
    filter: contrast(1.15) saturate(1.35) brightness(1.08);
}


/* ==========================================================
   BANNERS GRID (lista vertical)
   ========================================================== */
.banners {
    display: flex;
    flex-direction: column;
    gap: 14px;
}


/* ==========================================================
   BANNER PREMIUM — Consultoria Individual
   foto natural (sem filtro) + moldura roxa/wine premium
   ========================================================== */
.banner--premium {
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.25),
        0 10px 30px rgba(80, 30, 140, 0.35),
        inset 0 0 0 2.5px rgba(230, 201, 122, 0.9),
        inset 0 0 0 3.5px rgba(201, 169, 97, 0.4);
}

/* tint roxo só nas bordas — radial transparente no centro */
.banner--premium::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(ellipse 70% 55% at 50% 50%,
                transparent 40%,
                rgba(120, 60, 180, 0.35) 100%);
    mix-blend-mode: soft-light;
    z-index: 1;
}

.banner--premium:hover {
    box-shadow:
        0 6px 12px rgba(0, 0, 0, 0.35),
        0 20px 50px rgba(140, 70, 200, 0.5),
        inset 0 0 0 2.5px rgba(255, 220, 140, 1),
        inset 0 0 0 4px rgba(201, 169, 97, 0.55);
}

.banner--premium:hover::after {
    box-shadow: inset 0 0 0 1.5px rgba(200, 140, 240, 0.7);
}


/* ==========================================================
   CTA WHATSAPP
   ========================================================== */
.cta-whatsapp {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    margin-top: 8px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: #04111a;
    box-shadow:
        0 4px 12px rgba(37, 211, 102, 0.25),
        0 12px 30px rgba(37, 211, 102, 0.15);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    animation: fadeUp 0.6s ease 0.5s both;
    position: relative;
    overflow: hidden;
}

.cta-whatsapp::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.7s ease;
}

.cta-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 20px rgba(37, 211, 102, 0.4),
        0 16px 40px rgba(37, 211, 102, 0.25);
}

.cta-whatsapp:hover::before {
    transform: translateX(100%);
}

.cta-whatsapp svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.cta-whatsapp span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.cta-whatsapp strong {
    font-size: 1rem;
    font-weight: 700;
}

.cta-whatsapp small {
    font-size: 0.78rem;
    font-weight: 500;
    opacity: 0.8;
}


/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
    text-align: center;
    margin-top: 16px;
    padding: 12px 0;
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 0.3px;
    animation: fadeUp 0.6s ease 0.6s both;
}


/* ==========================================================
   ANIMATIONS
   ========================================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 420px) {
    body { padding: 20px 14px 36px; }
    .page { gap: 12px; }
    .banners { gap: 12px; }
    .badge { font-size: 0.78rem; padding: 6px 12px; }
    .badge svg { width: 14px; height: 14px; }
    .social { width: 42px; height: 42px; }
    .social svg { width: 18px; height: 18px; }
    .cta-whatsapp { padding: 14px 16px; }
    .cta-whatsapp strong { font-size: 0.94rem; }
    .cta-whatsapp small  { font-size: 0.74rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .banner { transform: none !important; }
}


/* ==========================================================
   TYPEBOT PAGE — /consultoria/
   ========================================================== */
.page--typebot {
    max-width: 560px;
    min-height: calc(100vh - 76px);
}

.progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    overflow: hidden;
    margin: 4px 0 4px;
}

.progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-bright) 100%);
    border-radius: 999px;
    transition: width 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.step-stage {
    position: relative;
    flex: 1;
    min-height: 380px;
}

.step {
    display: none;
    animation: stepIn 0.45s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.step.is-active { display: block; }

.step.is-leaving { animation: stepOut 0.22s ease both; }

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

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

.step-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px 24px;
    background: rgba(20, 26, 42, 0.7);
    border-radius: var(--radius-lg);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.25),
        0 18px 50px rgba(0, 0, 0, 0.35),
        inset 0 0 0 1.5px rgba(201, 169, 97, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.step-card--center {
    align-items: center;
    text-align: center;
    padding: 48px 24px;
}

.step-card--success {
    align-items: center;
    text-align: center;
    padding: 36px 24px;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.25),
        0 18px 50px rgba(0, 0, 0, 0.35),
        inset 0 0 0 1.5px rgba(37, 211, 102, 0.55);
}

.step-tag {
    display: inline-block;
    align-self: flex-start;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(201, 169, 97, 0.12);
    color: var(--gold-bright);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.step-title {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.step-text {
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.55;
}

.step-text--muted { color: var(--text-muted); font-size: 0.9rem; }

.step-text strong { color: var(--gold-bright); font-weight: 600; }

.step-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 6px 0;
}

.step-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text);
    font-size: 0.93rem;
    line-height: 1.45;
}

.li-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.18);
    color: var(--gold-bright);
    font-size: 0.72rem;
    font-weight: 700;
}

.bot-msg {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.bot-msg strong { color: var(--gold-bright); font-weight: 700; }

.step-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(6, 9, 15, 0.6);
    border: 1.5px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    color: var(--text);
    font: inherit;
    font-size: 1rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.step-input::placeholder { color: var(--text-dim); }

.step-input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(6, 9, 15, 0.85);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.18);
}

.step-input.is-error {
    border-color: rgba(220, 80, 80, 0.7);
    box-shadow: 0 0 0 3px rgba(220, 80, 80, 0.15);
}

textarea.step-input {
    resize: vertical;
    min-height: 110px;
    font-family: inherit;
}

.choices {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.choice {
    width: 100%;
    padding: 15px 18px;
    background: rgba(6, 9, 15, 0.5);
    border: 1.5px solid rgba(201, 169, 97, 0.30);
    border-radius: 12px;
    color: var(--text);
    font: inherit;
    font-size: 0.98rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.choice:hover {
    background: rgba(201, 169, 97, 0.10);
    border-color: var(--gold);
    transform: translateY(-1px);
}

.choice.is-picked {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
    border-color: var(--gold-bright);
    color: #1a1305;
    font-weight: 600;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(201, 169, 97, 0.30);
}

.step-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.step-actions .btn-primary { margin-left: auto; }

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
    border: none;
    border-radius: 12px;
    color: #1a1305;
    text-decoration: none;
    font: inherit;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    cursor: pointer;
    box-shadow:
        0 4px 12px rgba(201, 169, 97, 0.25),
        0 12px 30px rgba(201, 169, 97, 0.20);
    transition: transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1),
                box-shadow 0.22s ease,
                filter 0.22s ease;
}

.btn-primary svg { width: 18px; height: 18px; }

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 18px rgba(201, 169, 97, 0.35),
        0 16px 40px rgba(201, 169, 97, 0.28);
    filter: brightness(1.05);
}

.btn-primary:active { transform: translateY(0); }

.btn-primary--cta {
    width: 100%;
    padding: 16px 22px;
    font-size: 1.02rem;
    margin-top: 6px;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: var(--text-muted);
    text-decoration: none;
    font: inherit;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.22s ease;
}

.btn-ghost:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
}

.btn-ghost--center {
    align-self: center;
    margin-top: 8px;
}

.big-spinner {
    width: 44px;
    height: 44px;
    border: 3px solid rgba(201, 169, 97, 0.25);
    border-top-color: var(--gold-bright);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

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

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.15);
    color: var(--whatsapp);
    margin-bottom: 4px;
}

.success-icon svg { width: 34px; height: 34px; }

/* Voltar (botão superior) — herda do existente */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    padding: 8px 14px 8px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.back-link svg { width: 16px; height: 16px; }

.back-link:hover {
    color: var(--gold-bright);
    border-color: var(--gold-line);
    transform: translateX(-2px);
}


/* ==========================================================
   FORM PAGE LEGADO — /consultoria/ (form padrão antigo, mantido)
   ========================================================== */
.page--form {
    max-width: 560px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    padding: 8px 14px 8px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.back-link svg { width: 16px; height: 16px; }

.back-link:hover {
    color: var(--gold-bright);
    border-color: var(--gold-line);
    transform: translateX(-2px);
}

.form-header {
    text-align: center;
    margin: 8px 0 4px;
    animation: fadeUp 0.6s ease both;
}

.form-header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}

.form-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 440px;
    margin: 0 auto;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 22px;
    background: rgba(20, 26, 42, 0.7);
    border-radius: var(--radius-lg);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.25),
        0 18px 50px rgba(0, 0, 0, 0.35),
        inset 0 0 0 1.5px rgba(201, 169, 97, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fadeUp 0.6s ease 0.1s both;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.2px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 13px 14px;
    background: rgba(6, 9, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text);
    font: inherit;
    font-size: 0.95rem;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.field textarea {
    resize: vertical;
    min-height: 90px;
    font-family: inherit;
}

.field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239aa0ad' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
}

.field input::placeholder,
.field textarea::placeholder {
    color: var(--text-dim);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(6, 9, 15, 0.85);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.18);
}

.field input:invalid:not(:placeholder-shown) {
    border-color: rgba(220, 80, 80, 0.6);
}

.btn-submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 6px;
    padding: 16px 22px;
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
    border: none;
    border-radius: 14px;
    color: #1a1305;
    font: inherit;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    box-shadow:
        0 4px 12px rgba(201, 169, 97, 0.25),
        0 12px 30px rgba(201, 169, 97, 0.20);
    transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
                box-shadow 0.25s ease,
                filter 0.25s ease;
    overflow: hidden;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 18px rgba(201, 169, 97, 0.35),
        0 16px 40px rgba(201, 169, 97, 0.28);
    filter: brightness(1.05);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    cursor: not-allowed;
    opacity: 0.85;
}

.btn-spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(26, 19, 5, 0.25);
    border-top-color: #1a1305;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

.btn-submit.is-loading .btn-label { opacity: 0.6; }
.btn-submit.is-loading .btn-spinner { display: inline-block; }

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

.form-disclaimer {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.75rem;
    margin-top: 4px;
    letter-spacing: 0.2px;
}


/* SUCCESS */
.success-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 36px 24px;
    background: rgba(20, 26, 42, 0.7);
    border-radius: var(--radius-lg);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.25),
        0 18px 50px rgba(0, 0, 0, 0.35),
        inset 0 0 0 1.5px rgba(37, 211, 102, 0.45);
    animation: fadeUp 0.5s ease both;
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.15);
    color: var(--whatsapp);
    margin-bottom: 4px;
}

.success-icon svg { width: 34px; height: 34px; }

.success-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.success-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 380px;
    line-height: 1.5;
}

.success-card strong { color: var(--gold-bright); font-weight: 600; }

.btn-secondary {
    margin-top: 10px;
    padding: 12px 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gold-line);
    border-radius: 12px;
    color: var(--gold-bright);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

.btn-secondary:hover {
    background: rgba(201, 169, 97, 0.12);
    transform: translateY(-2px);
}


@media (max-width: 420px) {
    .form-header h1 { font-size: 1.5rem; }
    .form-sub      { font-size: 0.88rem; }
    .lead-form     { padding: 20px 16px; gap: 14px; }
    .field input, .field select, .field textarea { padding: 12px 13px; font-size: 0.92rem; }
    .btn-submit    { padding: 15px 18px; font-size: 0.95rem; }
}
