/* ==========================================================
   CANAL DE INDICAÇÃO — Agência Rei
   Design System: dark + dourado real
   ========================================================== */

:root {
    --bg-primary: #050505;
    --bg-alt: #0d0d0d;
    --bg-deep: #000;
    --text-base: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.78);
    --color-accent: #FFBC42;
    --color-accent-hover: #e5a432;
    --color-accent-soft: rgba(255, 188, 66, 0.12);
    --color-accent-border: rgba(255, 188, 66, 0.35);

    --font-regular: 'Poppins', sans-serif;
    --fw-light: 300;
    --fw-regular: 400;
    --fw-bold: 700;
    --fw-black: 900;

    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* RESET & BASE */
* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-regular);
    font-weight: var(--fw-regular);
    color: var(--text-base);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* TYPOGRAPHY */
.headline-black { font-size: 3.5rem; font-weight: var(--fw-black); line-height: 1.1; margin-bottom: 1.5rem; }
.headline-bold { font-size: 2.5rem; font-weight: var(--fw-bold); line-height: 1.2; margin-bottom: 1.5rem; }
.sub-headline { font-size: 1.2rem; font-weight: var(--fw-regular); margin-bottom: 2rem; opacity: 0.85; line-height: 1.6; }
.text-accent { color: var(--color-accent); }
.text-center { text-align: center; }

.eyebrow {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--color-accent-soft);
    border: 1px solid var(--color-accent-border);
    border-radius: 100px;
    color: var(--color-accent);
    font-weight: var(--fw-bold);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

/* LAYOUT */
.container { max-width: 1180px; margin: 0 auto; padding: 3.25rem 1.5rem; }
.section-primary { background-color: var(--bg-primary); position: relative; }
.section-alt { background-color: var(--bg-alt); position: relative; }
.section-intro { max-width: 820px; margin: 0 auto 2.5rem; }

/* CTA inline no fim das seções */
.section-cta {
    margin-top: 3rem;
    display: flex; flex-direction: column;
    align-items: center; gap: 0.85rem;
    text-align: center;
}
.section-cta-tight { margin-top: 2rem; }
.section-cta-helper {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

/* BUTTONS */
.btn {
    display: inline-flex; justify-content: center; align-items: center;
    padding: 1rem 2.5rem; font-family: var(--font-regular); font-weight: var(--fw-bold);
    text-transform: uppercase; text-decoration: none; border-radius: 10px;
    cursor: pointer; transition: var(--transition); border: none; letter-spacing: 0.5px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: "";
    position: absolute;
    top: 0; left: -150%;
    width: 150%; height: 100%;
    background: linear-gradient(115deg,
        rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.55) 50%,
        rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0) 100%);
    animation: flair-sweep 3.5s ease-in-out infinite;
    pointer-events: none;
    mix-blend-mode: overlay;
}
@keyframes flair-sweep {
    0%, 15% { transform: translateX(0); }
    85%, 100% { transform: translateX(200%); }
}
.btn-primary { background-color: var(--color-accent); color: #0a0a0a; box-shadow: 0 8px 24px rgba(255, 188, 66, 0.3), 0 0 40px rgba(255, 188, 66, 0.12); }
.btn-primary:hover { background-color: var(--color-accent-hover); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255, 188, 66, 0.4), 0 0 50px rgba(255, 188, 66, 0.2); }
.btn-block { display: flex; width: 100%; justify-content: center; }
.btn-cta { padding: 1.15rem 2.75rem; font-size: 1.05rem; }

/* GLASS CARD */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
}
.glass-card:hover { border-color: var(--color-accent-border); box-shadow: 0 18px 40px rgba(0,0,0,0.35); transform: translateY(-3px); }

/* HEADER */
.main-header { position: absolute; top: 0; left: 0; width: 100%; z-index: 100; }
.header-container { padding: 1.75rem 1.5rem !important; display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.header-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
    justify-content: center;
}
.logo-header { height: 54px; width: auto; max-width: 220px; object-fit: contain; display: inline-block; }
.header-handle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.85rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: #fff;
    font-weight: var(--fw-bold);
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: var(--transition);
}
.header-handle:hover {
    background: rgba(255, 188, 66, 0.08);
    border-color: var(--color-accent-border);
    transform: translateY(-1px);
}
.header-handle-text { line-height: 1; }
.header-handle-verified {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}
.header-alert-tag {
    display: inline-block;
    padding: 0.55rem 1.25rem;
    border: 1.5px solid var(--color-accent);
    border-radius: 100px;
    color: var(--color-accent);
    font-weight: 300;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(255, 188, 66, 0.05);
    line-height: 1.5;
    max-width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.header-alert-tag::before {
    content: "";
    position: absolute; top: 0; left: -150%;
    width: 150%; height: 100%;
    background: linear-gradient(115deg,
        rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 40%,
        rgba(255, 188, 66, 0.35) 50%,
        rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0) 100%);
    animation: flair-sweep 4s ease-in-out infinite;
    pointer-events: none;
}

/* ==========================================================
   HERO
   ========================================================== */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex; align-items: center;
    background-color: var(--bg-deep);
    padding-top: 16rem; padding-bottom: 3.5rem;
    overflow: hidden;
}
.hero-bg-image {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(ellipse 60% 50% at 30% 30%, rgba(255, 188, 66, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 70% 80%, rgba(255, 188, 66, 0.08) 0%, transparent 65%),
        linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
    pointer-events: none;
}
.hero-bg-image::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.015) 0 1px, transparent 1px 18px);
    pointer-events: none;
}
.hero-indica .hero-container {
    display: flex; flex-direction: column; align-items: center;
    gap: 2rem; max-width: 1000px; position: relative; z-index: 2;
}
.hero-title {
    font-size: clamp(2rem, 5.2vw, 3.6rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    max-width: 100%;
    text-shadow: 0 0 60px rgba(255, 188, 66, 0.12);
}
.hero-title .hero-line { display: block; }
.hero-title .text-accent {
    text-shadow:
        0 0 24px rgba(255, 188, 66, 0.45),
        0 0 60px rgba(255, 188, 66, 0.22);
}
.hero-sub { max-width: 760px; margin: 0 auto 1.5rem; font-size: 1.15rem; }
.hero-sub strong { color: #fff; font-weight: var(--fw-bold); }

/* Imagem acima do título — exibida apenas no mobile */
.hero-mobile-img { display: none; }

.hero-badges {
    display: flex; gap: 2rem;
    margin-top: 2.25rem; flex-wrap: wrap; justify-content: center;
}

/* ==========================================================
   BOTÃO FLUTUANTE — Acessar Painel (canto superior direito)
   ========================================================== */
.floating-login {
    position: fixed;
    top: 1.25rem; right: 1.25rem;
    z-index: 110;
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.6rem 1.1rem;
    background: rgba(10, 10, 10, 0.78);
    border: 1px solid var(--color-accent-border);
    border-radius: 100px;
    color: var(--color-accent);
    font-weight: var(--fw-bold);
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
        0 6px 22px rgba(0, 0, 0, 0.45),
        0 0 24px rgba(255, 188, 66, 0.1);
    transition: var(--transition);
}
.floating-login:hover {
    background: var(--color-accent);
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow:
        0 10px 28px rgba(255, 188, 66, 0.4),
        0 0 36px rgba(255, 188, 66, 0.2);
}
.floating-login-icon { width: 16px; height: 16px; flex-shrink: 0; }

@media (max-width: 768px) {
    .floating-login {
        top: 1rem; right: 1rem;
        padding: 0;
        width: 42px; height: 42px;
        justify-content: center;
        gap: 0;
    }
    .floating-login-text { display: none; }
    .floating-login-icon { width: 18px; height: 18px; }
}

/* ==========================================================
   STICKY CTA — Mobile (aparece após rolar o CTA do hero)
   ========================================================== */
.sticky-cta {
    display: none;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    padding: 0.75rem 1rem;
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 188, 66, 0.22);
    box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.55);
    transform: translateY(110%);
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta-btn {
    display: flex !important;
    width: 100%;
    padding: 0.95rem 1rem !important;
    font-size: 0.92rem !important;
    justify-content: center;
}
@media (max-width: 1024px) {
    .sticky-cta { display: block; }
    body { padding-bottom: calc(5.25rem + env(safe-area-inset-bottom)); }
}

/* ==========================================================
   COUNTDOWN — Hero (7 dias)
   ========================================================== */
.countdown-block {
    margin: 0 auto 2rem;
    padding: 1.5rem 1.75rem;
    background: rgba(255, 188, 66, 0.04);
    border: 1px solid var(--color-accent-border);
    border-radius: 18px;
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.35),
        0 0 50px rgba(255, 188, 66, 0.08);
    max-width: 640px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.countdown-title {
    text-align: center;
    font-size: clamp(0.6rem, 1.7vw, 0.92rem);
    font-weight: var(--fw-bold);
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 0.85rem;
    letter-spacing: 0.02em;
    line-height: 1.3;
    white-space: normal;
}
.countdown-title .text-accent { font-weight: var(--fw-black); }
.countdown-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.countdown-unit {
    flex: 1 1 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 0.85rem 0.4rem;
    background: rgba(10, 10, 10, 0.65);
    border: 1px solid rgba(255, 188, 66, 0.18);
    border-radius: 12px;
    min-width: 0;
}
.countdown-num {
    font-family: 'Poppins', sans-serif;
    font-weight: var(--fw-black);
    font-size: clamp(1.6rem, 3.6vw, 2.4rem);
    line-height: 1;
    color: var(--color-accent);
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 20px rgba(255, 188, 66, 0.35);
}
.countdown-label {
    margin-top: 0.4rem;
    font-size: 0.7rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
}
.countdown-sep {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: var(--fw-black);
    color: var(--color-accent);
    line-height: 1;
    padding-bottom: 1rem;
    opacity: 0.5;
    animation: cd-pulse 1.2s ease-in-out infinite;
}
@keyframes cd-pulse {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 0.85; }
}
.countdown-block.is-expired {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
}
.countdown-block.is-expired .countdown-num { color: rgba(255, 255, 255, 0.6); text-shadow: none; }
.countdown-block.is-expired .countdown-sep { animation: none; opacity: 0.25; }

/* Variante header — mais compacto */
.countdown-block-header {
    margin: 0 auto;
    padding: 1rem 1.25rem;
    max-width: 560px;
    width: 100%;
}
.countdown-block-header .countdown-grid { max-width: 460px; margin: 0 auto; }
.countdown-block-header .countdown-unit { padding: 0.55rem 0.35rem; border-radius: 10px; }
.countdown-block-header .countdown-num { font-size: clamp(1.2rem, 2.6vw, 1.85rem); }
.countdown-block-header .countdown-label { font-size: 0.62rem; margin-top: 0.25rem; }
.countdown-block-header .countdown-sep { font-size: clamp(1rem, 2vw, 1.5rem); padding-bottom: 0.7rem; }
.hero-badge {
    display: flex; flex-direction: column; align-items: center;
    padding: 1rem 1.75rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 188, 66, 0.18);
    border-radius: 14px;
    min-width: 130px;
}
.hero-badge-num {
    font-size: 1.7rem; font-weight: var(--fw-black);
    color: var(--color-accent); line-height: 1;
}
.hero-badge-label {
    font-size: 0.78rem; text-transform: uppercase;
    letter-spacing: 0.08em; color: rgba(255, 255, 255, 0.65);
    margin-top: 0.4rem;
}

/* ==========================================================
   STEPS (Como funciona)
   ========================================================== */
.steps-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.step-card {
    display: flex; flex-direction: column;
    padding: 2.5rem 2rem !important;
}
.step-num {
    font-size: 3rem; font-weight: var(--fw-black);
    color: var(--color-accent);
    line-height: 1; margin-bottom: 0.5rem;
    opacity: 0.25;
}
.step-icon {
    width: 60px; height: 60px;
    border-radius: 14px;
    background: var(--color-accent-soft);
    border: 1px solid var(--color-accent-border);
    color: var(--color-accent);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}
.step-card:hover .step-icon {
    background: var(--color-accent);
    color: #0a0a0a;
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 188, 66, 0.4);
}
.step-title {
    font-size: 1.35rem; font-weight: var(--fw-bold);
    margin-bottom: 0.75rem; color: #fff;
    line-height: 1.3;
}
.step-text {
    font-size: 0.98rem; line-height: 1.65;
    color: var(--text-muted);
}
.step-text strong { color: var(--color-accent); font-weight: var(--fw-bold); }

/* ==========================================================
   TIERS (Níveis de Comissão) — jornada progressiva
   ========================================================== */
.tiers-journey {
    position: relative;
    margin-bottom: 1.75rem;
}

/* Trilha visual de progressão (linha + dots numerados) */
.journey-track {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14%;
    pointer-events: none;
    z-index: 1;
}
.journey-line {
    position: absolute;
    top: 50%; left: 8%; right: 8%;
    height: 2px;
    background: linear-gradient(90deg,
        rgba(255, 188, 66, 0.18) 0%,
        rgba(255, 188, 66, 0.55) 50%,
        var(--color-accent) 100%);
    transform: translateY(-50%);
    border-radius: 2px;
}
.journey-dot {
    position: relative;
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: #0a0a0a;
    border: 2px solid var(--color-accent-border);
    color: var(--color-accent);
    font-weight: var(--fw-black);
    font-size: 0.92rem;
    z-index: 2;
}
.journey-dot-1 { opacity: 0.55; }
.journey-dot-2 { opacity: 0.8; border-color: var(--color-accent); }
.journey-dot-3 {
    background: var(--color-accent);
    color: #0a0a0a;
    border-color: var(--color-accent);
    box-shadow: 0 0 25px rgba(255, 188, 66, 0.55);
    transform: scale(1.1);
}

.tiers-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem; align-items: stretch;
    padding-top: 3rem;
    position: relative;
    z-index: 2;
}
.tier-card {
    display: flex; flex-direction: column;
    padding: 2.25rem 1.75rem !important;
    position: relative;
    text-align: left;
}

/* Elevação e intensidade progressivas */
.tier-step-1 {
    opacity: 0.92;
    transform: translateY(20px);
}
.tier-step-1 .tier-crown { opacity: 0.55; filter: drop-shadow(0 0 8px rgba(255, 188, 66, 0.15)); }
.tier-step-1 .tier-percent-num { color: #fff; opacity: 0.85; }

.tier-step-2 {
    transform: translateY(0);
    border-color: rgba(255, 188, 66, 0.25) !important;
}
.tier-step-2 .tier-crown { opacity: 0.85; }

.tier-step-3.tier-highlight {
    border-color: var(--color-accent) !important;
    background: rgba(255, 188, 66, 0.05) !important;
    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(255, 188, 66, 0.22);
    transform: translateY(-20px);
}
.tier-step-3.tier-highlight:hover { transform: translateY(-24px); }
.tier-step-3 .tier-crown {
    filter: drop-shadow(0 0 20px rgba(255, 188, 66, 0.6));
}

/* Label "Etapa XX" */
.tier-step-label {
    display: block;
    font-size: 0.72rem;
    font-weight: var(--fw-black);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 188, 66, 0.7);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed rgba(255, 188, 66, 0.18);
}
.tier-step-3 .tier-step-label {
    color: var(--color-accent);
    border-bottom-color: rgba(255, 188, 66, 0.4);
}

/* Setas de progressão entre cards (desktop) */
.tier-arrow {
    position: absolute;
    top: 50%; right: -1.35rem;
    transform: translateY(-50%);
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.95);
    border: 1.5px solid var(--color-accent-border);
    color: var(--color-accent);
    display: flex; align-items: center; justify-content: center;
    z-index: 3;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}
.tier-step-2 .tier-arrow { border-color: var(--color-accent); box-shadow: 0 4px 22px rgba(255, 188, 66, 0.25); }

/* Badge "Sua meta" no topo do Realeza */
.tier-badge {
    position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
    background: var(--color-accent); color: #0a0a0a;
    padding: 0.45rem 1.25rem; border-radius: 100px;
    font-weight: var(--fw-black); font-size: 0.72rem;
    text-transform: uppercase; letter-spacing: 0.1em;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(255, 188, 66, 0.4), 0 0 30px rgba(255, 188, 66, 0.25);
    display: inline-flex; align-items: center; gap: 0.4rem;
}
.tier-badge::before {
    content: '★';
    font-size: 0.85rem;
}
.tier-crown {
    color: var(--color-accent);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(255, 188, 66, 0.4));
}
.tier-tag {
    display: inline-block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    font-weight: var(--fw-bold);
}
.tier-name {
    font-size: 1.85rem;
    font-weight: var(--fw-black);
    color: #fff;
    margin-bottom: 1.25rem;
    line-height: 1;
}
.tier-percent {
    display: flex; align-items: baseline; gap: 0.5rem;
    padding: 1rem 0; margin-bottom: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.tier-percent-num {
    font-size: 2.75rem; font-weight: var(--fw-black);
    color: var(--color-accent); line-height: 1;
}
.tier-percent-label {
    font-size: 0.92rem; color: var(--text-muted);
    font-weight: var(--fw-bold);
}
.tier-features {
    list-style: none; flex: 1;
    display: flex; flex-direction: column; gap: 0.7rem;
}
.tier-features li {
    font-size: 0.93rem;
    line-height: 1.5;
    color: var(--text-muted);
    padding-left: 1.5rem;
    position: relative;
}
.tier-features li::before {
    content: '';
    position: absolute; left: 0; top: 0.5rem;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 8px rgba(255, 188, 66, 0.5);
}
.tier-features strong { color: #fff; font-weight: var(--fw-bold); }

/* Bonus card */
.bonus-card {
    display: flex; align-items: center;
    gap: 1.75rem;
    padding: 1.75rem 2.25rem !important;
    border-color: var(--color-accent-border) !important;
    background: linear-gradient(135deg, rgba(255, 188, 66, 0.08) 0%, rgba(255, 188, 66, 0.02) 100%) !important;
}
.bonus-star {
    flex-shrink: 0;
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #0a0a0a;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.85rem;
    font-weight: var(--fw-black);
    box-shadow: 0 0 30px rgba(255, 188, 66, 0.45);
}
.bonus-body { flex: 1; }
.bonus-title {
    font-size: 1.25rem;
    font-weight: var(--fw-black);
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
}
.bonus-text {
    font-size: 1.02rem;
    line-height: 1.55;
    color: var(--text-muted);
}
.bonus-text strong { color: #fff; }

/* ==========================================================
   FEATURES (O que entregamos)
   ========================================================== */
.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.feature-card { display: flex; flex-direction: column; padding: 2.5rem 2rem !important; }
.feature-emoji {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: var(--color-accent-soft);
    border: 1px solid var(--color-accent-border);
    color: var(--color-accent);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}
.feature-card:hover .feature-emoji {
    background: var(--color-accent); color: #0a0a0a;
    transform: rotate(-6deg) scale(1.05);
    box-shadow: 0 0 25px rgba(255, 188, 66, 0.4);
}
.feature-emoji-warn {
    background: rgba(255, 80, 80, 0.1);
    border-color: rgba(255, 80, 80, 0.35);
    color: #ff8080;
}
.feature-card.feature-warn:hover .feature-emoji {
    background: rgba(255, 80, 80, 0.85); color: #0a0a0a;
    box-shadow: 0 0 25px rgba(255, 80, 80, 0.4);
}
.feature-warn { border-color: rgba(255, 80, 80, 0.2) !important; }
.feature-warn:hover { border-color: rgba(255, 80, 80, 0.45) !important; }
.feature-title {
    font-size: 1.3rem; font-weight: var(--fw-bold);
    color: #fff; margin-bottom: 0.85rem; line-height: 1.3;
}
.feature-text {
    font-size: 0.98rem; line-height: 1.65;
    color: var(--text-muted);
}
.feature-text strong { color: #fff; font-weight: var(--fw-bold); }

/* ==========================================================
   RULES (Regras de pagamento)
   ========================================================== */
.rules-wrapper {
    max-width: 820px; margin: 0 auto;
    padding: 1.5rem 2rem;
}
.rules-content { padding: 1rem; }
.rules-text {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 700px; margin-left: auto; margin-right: auto;
}
.rules-text strong { color: #fff; font-weight: var(--fw-bold); }
.rules-quote {
    position: relative;
    padding: 2rem 1.5rem;
    background: var(--color-accent-soft);
    border: 1px solid var(--color-accent-border);
    border-radius: 18px;
    margin-top: 2rem;
}
.rules-quote-mark {
    position: absolute;
    top: -0.5rem; left: 1.5rem;
    font-size: 5rem; line-height: 1;
    color: var(--color-accent);
    opacity: 0.6;
    font-family: Georgia, serif;
}
.rules-quote-text {
    font-size: 1.5rem;
    font-weight: var(--fw-bold);
    line-height: 1.4;
    color: #fff;
    margin: 0;
}

/* ==========================================================
   FORM SECTION
   ========================================================== */
.form-section-indica { padding: 2rem 0; }
.form-wrapper-indica {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.form-intro .headline-bold { margin-bottom: 1.25rem; }
.form-checklist {
    list-style: none;
    margin-top: 1.5rem;
    display: flex; flex-direction: column;
    gap: 0.85rem;
}
.form-checklist li {
    display: flex; align-items: center; gap: 0.85rem;
    font-size: 1rem;
    font-weight: var(--fw-bold);
    color: #fff;
}
.form-checklist svg {
    flex-shrink: 0;
    color: var(--color-accent);
    background: var(--color-accent-soft);
    border: 1px solid var(--color-accent-border);
    border-radius: 50%;
    padding: 0.3rem;
    width: 28px; height: 28px;
}

.form-card {
    background: rgba(15, 15, 15, 0.88) !important;
    border: 1px solid var(--color-accent-border) !important;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(255, 188, 66, 0.1);
    padding: 2.5rem !important;
}
.input-group { margin-bottom: 1.25rem; }
.input-group:last-of-type { margin-bottom: 1.75rem; }
label {
    display: block; margin-bottom: 0.5rem;
    font-weight: var(--fw-bold); font-size: 0.85rem;
    color: #ddd; letter-spacing: 0.02em;
}
input {
    width: 100%; padding: 0.95rem 1.1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: var(--text-base);
    font-family: var(--font-regular);
    font-size: 0.98rem;
    transition: var(--transition);
}
input::placeholder { color: rgba(255, 255, 255, 0.35); }
input:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(255, 188, 66, 0.06);
    box-shadow: 0 0 0 3px rgba(255, 188, 66, 0.12);
}
.form-disclaimer {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-top: 1.25rem;
    line-height: 1.45;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer { border-top: 1px solid rgba(255, 255, 255, 0.06); padding: 4rem 0 2rem; }
.footer-container { padding: 0 1.5rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; align-items: start; }
.footer-logo { height: 46px; width: auto; max-width: 180px; object-fit: contain; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-copy { color: rgba(255, 255, 255, 0.45); font-size: 0.88rem; line-height: 1.6; }
.footer-title { font-size: 1.05rem; font-weight: var(--fw-bold); color: var(--color-accent); margin-bottom: 1.25rem; }
.footer-nav, .footer-contact { list-style: none; }
.footer-nav li, .footer-contact li { margin-bottom: 0.7rem; font-size: 0.92rem; }
.footer-nav a { color: var(--text-base); text-decoration: none; opacity: 0.7; transition: var(--transition); }
.footer-nav a:hover { opacity: 1; color: var(--color-accent); padding-left: 5px; }
.footer-contact li { color: rgba(255, 255, 255, 0.65); }

/* ==========================================================
   REVEAL (animação on-scroll)
   ========================================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================
   RESPONSIVO
   ========================================================== */
@media (max-width: 1024px) {
    .container { padding: 2.75rem 1.5rem; }
    .section-intro { margin-bottom: 2rem; }
    .section-cta { margin-top: 2.25rem; }
    .headline-black { font-size: 2.6rem; }
    .headline-bold { font-size: 2rem; }
    .hero-section { min-height: auto; padding-top: 15rem; padding-bottom: 3rem; }
    .hero-title { font-size: clamp(1.8rem, 5vw, 2.6rem); }

    .steps-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }

    /* Jornada: vertical no mobile/tablet */
    .journey-track { display: none; }
    .tiers-grid { grid-template-columns: 1fr; gap: 2.75rem; padding-top: 0; padding-left: 2rem; position: relative; }
    .tiers-grid::before {
        content: '';
        position: absolute;
        left: 0.85rem; top: 1.5rem; bottom: 1.5rem;
        width: 2px;
        background: linear-gradient(180deg,
            rgba(255, 188, 66, 0.2) 0%,
            rgba(255, 188, 66, 0.55) 50%,
            var(--color-accent) 100%);
        border-radius: 2px;
    }
    .tier-card { transform: none !important; }
    .tier-step-1, .tier-step-2, .tier-step-3.tier-highlight { transform: none !important; }
    .tier-step-3.tier-highlight:hover { transform: translateY(-4px) !important; }

    /* Marcador numerado em cada card no eixo da linha */
    .tier-card::before {
        content: attr(data-step);
        position: absolute;
        left: -2.75rem; top: 1.85rem;
        width: 32px; height: 32px;
        border-radius: 50%;
        background: #0a0a0a;
        border: 2px solid var(--color-accent-border);
        color: var(--color-accent);
        font-weight: var(--fw-black);
        font-size: 0.85rem;
        display: flex; align-items: center; justify-content: center;
        z-index: 2;
    }
    .tier-step-1::before { content: '1'; opacity: 0.6; }
    .tier-step-2::before { content: '2'; border-color: var(--color-accent); }
    .tier-step-3::before {
        content: '3';
        background: var(--color-accent);
        color: #0a0a0a;
        border-color: var(--color-accent);
        box-shadow: 0 0 20px rgba(255, 188, 66, 0.5);
    }

    /* Setas entre cards viram chevron para baixo */
    .tier-arrow {
        top: auto; right: auto;
        bottom: -2.1rem; left: 50%;
        transform: translateX(-50%) rotate(90deg);
    }

    .form-wrapper-indica { grid-template-columns: 1fr; gap: 2.5rem; }
    .form-intro { text-align: center; }
    .form-checklist { align-items: center; }

    .footer-container { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .footer-logo { margin: 0 auto 1rem; display: block; }
}

@media (max-width: 600px) {
    html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
    .container { padding: 2.25rem 1.25rem; }
    .section-intro { margin-bottom: 1.75rem; }
    .section-cta { margin-top: 1.75rem; }
    .headline-black { font-size: 2.1rem; }
    .headline-bold { font-size: 1.7rem; }
    .sub-headline { font-size: 1rem; word-wrap: break-word; word-break: break-word; }

    .header-container { gap: 0.85rem; padding: 1.4rem 1rem !important; }
    .header-alert-tag { font-size: 0.65rem; padding: 0.5rem 0.95rem; }
    .logo-header { height: 44px; }

    .hero-section { padding-top: 14rem; }
    .hero-bg-image {
        background: #000000;
    }
    .hero-mobile-img {
        display: block;
        width: 100vw;
        max-width: 100vw;
        height: auto;
        margin: 0 calc(50% - 50vw) 1.5rem;
        position: relative;
        z-index: 1;
    }
    .hero-title { font-size: clamp(2rem, 8.5vw, 2.7rem); line-height: 1.18; letter-spacing: -0.02em; }
    .hero-sub { font-size: 1rem; width: 100%; max-width: 100%; box-sizing: border-box; }

    .header-brand { gap: 0.7rem; }
    .header-handle { padding: 0.35rem 0.75rem; font-size: 0.85rem; gap: 0.3rem; }
    .header-handle-verified svg { width: 16px; height: 16px; }

    .countdown-block { padding: 1.1rem 0.85rem; margin-bottom: 1.5rem; }
    .countdown-title { font-size: 0.82rem; margin-bottom: 0.85rem; white-space: normal; }
    .countdown-grid { gap: 0.3rem; }
    .countdown-unit { padding: 0.65rem 0.25rem; border-radius: 10px; }
    .countdown-label { font-size: 0.6rem; letter-spacing: 0.08em; margin-top: 0.3rem; }
    .countdown-sep { padding-bottom: 0.75rem; }
    .btn-cta { width: 100%; padding: 1rem 1.5rem; font-size: 0.95rem; }

    .hero-badges { gap: 0.75rem; margin-top: 2rem; }
    .hero-badge { padding: 0.85rem 1rem; min-width: 100px; flex: 1; }
    .hero-badge-num { font-size: 1.3rem; }
    .hero-badge-label { font-size: 0.7rem; }

    .glass-card { padding: 2rem 1.5rem !important; }
    .step-card { padding: 2rem 1.5rem !important; }
    .step-num { font-size: 2.5rem; }
    .step-title { font-size: 1.2rem; }

    .tier-card { padding: 2rem 1.5rem !important; }
    .tier-name { font-size: 1.65rem; }
    .tier-percent-num { font-size: 2.4rem; }

    .bonus-card { flex-direction: column; text-align: center; gap: 1rem; padding: 1.75rem 1.5rem !important; }
    .bonus-star { width: 56px; height: 56px; font-size: 1.6rem; }

    .feature-card { padding: 2rem 1.5rem !important; }
    .feature-title { font-size: 1.2rem; }

    .rules-wrapper { padding: 1rem; }
    .rules-text { font-size: 1.02rem; }
    .rules-quote { padding: 1.5rem 1.25rem; }
    .rules-quote-text { font-size: 1.2rem; }
    .rules-quote-mark { font-size: 3.5rem; top: -0.25rem; left: 1rem; }

    .form-card { padding: 1.75rem 1.25rem !important; }
    input { padding: 0.95rem; min-height: 48px; }

    .footer { padding: 3rem 0 2rem; }
}

/* Ultra mobile */
@media (max-width: 380px) {
    .hero-badges { flex-direction: column; }
    .hero-badge { width: 100%; }
}

/* ==========================================================
   PÁGINAS LEGAIS (Política de Privacidade / Termos de Uso)
   ========================================================== */
.legal-body {
    background:
        radial-gradient(ellipse at top, rgba(255, 188, 66, 0.06) 0%, transparent 60%),
        var(--bg-primary);
    min-height: 100vh;
}
.legal-header { position: relative; }
.legal-header .header-container { padding: 1.5rem 1.5rem !important; }
.legal-header a { display: inline-flex; }

.legal-page { padding: 1rem 0 3rem; }
.legal-container { max-width: 820px; padding: 1.5rem 1.5rem 4rem; }

.legal-back {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem; font-weight: var(--fw-bold);
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
    transition: var(--transition);
}
.legal-back:hover { color: var(--color-accent); transform: translateX(-3px); }
.legal-back svg { transition: var(--transition); }

.legal-hero { text-align: left; margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.legal-hero .headline-bold { margin-top: 0.85rem; margin-bottom: 0.75rem; font-size: 2.25rem; }
.legal-meta { font-size: 0.88rem; color: rgba(255, 255, 255, 0.5); margin: 0; }

.legal-content { color: rgba(255, 255, 255, 0.82); line-height: 1.75; font-size: 1rem; }
.legal-lead {
    font-size: 1.08rem;
    line-height: 1.75;
    padding: 1.5rem 1.5rem;
    background: rgba(255, 188, 66, 0.04);
    border-left: 3px solid var(--color-accent);
    border-radius: 0 12px 12px 0;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}
.legal-lead strong { color: var(--color-accent); font-weight: var(--fw-bold); }

.legal-section { margin-bottom: 2.25rem; }
.legal-section h2 {
    font-size: 1.25rem;
    font-weight: var(--fw-bold);
    color: var(--color-accent);
    margin-bottom: 0.9rem;
    line-height: 1.35;
}
.legal-section p { margin-bottom: 0.9rem; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section strong { color: #fff; font-weight: var(--fw-bold); }

.legal-section ul,
.legal-section ol {
    margin: 0.6rem 0 1rem 0;
    padding-left: 1.5rem;
}
.legal-section li {
    margin-bottom: 0.55rem;
    padding-left: 0.35rem;
}
.legal-section ul li::marker { color: var(--color-accent); }
.legal-section ol li::marker { color: var(--color-accent); font-weight: var(--fw-bold); }

.legal-footer-cta {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

@media (max-width: 600px) {
    .legal-page { padding: 0.5rem 0 2rem; }
    .legal-container { padding: 1rem 1.25rem 3rem; }
    .legal-hero .headline-bold { font-size: 1.75rem; }
    .legal-lead { padding: 1.25rem 1.1rem; font-size: 1rem; }
    .legal-section h2 { font-size: 1.12rem; }
    .legal-section { margin-bottom: 1.75rem; }
}

/* ==========================================================
   PÁGINA DE OBRIGADO
   ========================================================== */
.obrigado-page { padding-top: 0; }

/* Hero de sucesso */
.success-hero {
    position: relative;
    padding: 8rem 0 3rem;
    text-align: center;
    background:
        radial-gradient(ellipse 70% 50% at 50% 40%, rgba(255, 188, 66, 0.12) 0%, transparent 60%),
        var(--bg-primary);
    overflow: hidden;
}
.success-container { max-width: 720px; padding: 2rem 1.5rem; display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.success-icon {
    width: 96px; height: 96px;
    border-radius: 50%;
    background: rgba(255, 188, 66, 0.12);
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 50px rgba(255, 188, 66, 0.35);
    animation: success-pop 0.6s cubic-bezier(0.2, 0.9, 0.3, 1.4);
}
@keyframes success-pop {
    0% { transform: scale(0.6); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.success-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.45rem 1rem;
    background: rgba(255, 188, 66, 0.1);
    border: 1px solid var(--color-accent-border);
    border-radius: 100px;
    color: var(--color-accent);
    font-weight: var(--fw-bold);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.success-title { margin: 0; font-size: clamp(1.85rem, 4.2vw, 2.8rem); line-height: 1.15; }
.success-text {
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0;
}
.success-text strong { color: #fff; font-weight: var(--fw-bold); }
.success-actions {
    display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
    margin-top: 0.75rem;
}
.success-actions-helper { font-size: 0.85rem; color: rgba(255, 255, 255, 0.55); margin: 0; }

/* Próximos passos */
.passos-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; align-items: stretch;
}
.passo-card {
    display: flex; flex-direction: column;
    padding: 2.25rem 1.75rem !important;
    text-align: left;
    position: relative;
}
.passo-highlight {
    border-color: var(--color-accent) !important;
    background: rgba(255, 188, 66, 0.05) !important;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35), 0 0 40px rgba(255, 188, 66, 0.12);
}
.passo-num {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: var(--fw-black);
    letter-spacing: 0.14em;
    color: var(--color-accent);
    background: var(--color-accent-soft);
    border: 1px solid var(--color-accent-border);
    border-radius: 100px;
    padding: 0.3rem 0.85rem;
    margin-bottom: 1.25rem;
    width: max-content;
}
.passo-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--color-accent-soft);
    border: 1px solid var(--color-accent-border);
    color: var(--color-accent);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}
.passo-card:hover .passo-icon { background: var(--color-accent); color: #0a0a0a; transform: scale(1.05); box-shadow: 0 0 25px rgba(255, 188, 66, 0.4); }
.passo-title { font-size: 1.25rem; font-weight: var(--fw-bold); margin-bottom: 0.75rem; color: #fff; line-height: 1.3; }
.passo-text { font-size: 0.97rem; line-height: 1.65; color: var(--text-muted); }
.passo-text strong { color: var(--color-accent); font-weight: var(--fw-bold); }

/* CTA WhatsApp */
.contact-cta {
    display: flex; align-items: center;
    gap: 2rem;
    padding: 2.25rem 2.5rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(34, 197, 94, 0.02) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3), 0 0 50px rgba(34, 197, 94, 0.08);
}
.contact-cta-icon {
    flex-shrink: 0;
    width: 72px; height: 72px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: #22c55e;
    display: flex; align-items: center; justify-content: center;
}
.contact-cta-body { flex: 1; }
.contact-cta-title { font-size: 1.35rem; font-weight: var(--fw-bold); color: #fff; margin-bottom: 0.5rem; line-height: 1.3; }
.contact-cta-text { font-size: 0.98rem; color: var(--text-muted); line-height: 1.55; margin: 0; }
.contact-cta-btn {
    flex-shrink: 0;
    background: #22c55e !important;
    color: #062d18 !important;
    padding: 1rem 1.75rem !important;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35), 0 0 30px rgba(34, 197, 94, 0.15);
}
.contact-cta-btn:hover { background: #16a34a !important; transform: translateY(-2px); }

/* Links rápidos */
.quick-links {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem; max-width: 880px; margin: 0 auto;
}
.quick-link {
    display: flex; align-items: center; gap: 1.25rem;
    padding: 1.5rem 1.75rem !important;
    text-decoration: none;
    color: inherit;
}
.quick-link-icon {
    flex-shrink: 0;
    width: 54px; height: 54px;
    border-radius: 14px;
    background: var(--color-accent-soft);
    border: 1px solid var(--color-accent-border);
    color: var(--color-accent);
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.quick-link:hover .quick-link-icon { background: var(--color-accent); color: #0a0a0a; transform: scale(1.05); }
.quick-link-body { flex: 1; min-width: 0; }
.quick-link-title { font-size: 1.05rem; font-weight: var(--fw-bold); color: #fff; margin-bottom: 0.25rem; line-height: 1.35; }
.quick-link-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; margin: 0; }
.quick-link-arrow {
    flex-shrink: 0;
    color: var(--color-accent);
    opacity: 0.5;
    transition: var(--transition);
}
.quick-link:hover .quick-link-arrow { opacity: 1; transform: translate(2px, -2px); }

.back-home { margin-top: 3rem; text-align: center; }
.back-home-link {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.92rem; font-weight: var(--fw-bold);
    letter-spacing: 0.02em;
    transition: var(--transition);
}
.back-home-link:hover { color: var(--color-accent); transform: translateX(-3px); }

@media (max-width: 1024px) {
    .success-hero { padding: 7rem 0 2.5rem; }
    .passos-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .quick-links { grid-template-columns: 1fr; }
    .contact-cta { flex-direction: column; text-align: center; gap: 1.25rem; padding: 2rem 1.75rem; }
    .contact-cta-btn { width: 100%; }
}
@media (max-width: 600px) {
    .success-hero { padding: 6rem 0 2rem; }
    .success-container { padding: 1.5rem 1.25rem; gap: 1rem; }
    .success-icon { width: 76px; height: 76px; }
    .success-icon svg { width: 42px; height: 42px; }
    .success-text { font-size: 1rem; }
    .passo-card { padding: 1.75rem 1.5rem !important; }
    .passo-title { font-size: 1.15rem; }
    .quick-link { padding: 1.25rem !important; gap: 1rem; }
    .quick-link-icon { width: 46px; height: 46px; }
    .quick-link-title { font-size: 0.98rem; }
    .quick-link-text { font-size: 0.84rem; }
    .contact-cta-title { font-size: 1.15rem; }
}

/* ==========================================================
   PÁGINA DE LOGIN
   ========================================================== */
.login-body {
    background:
        radial-gradient(ellipse 70% 50% at 50% 30%, rgba(255, 188, 66, 0.1) 0%, transparent 60%),
        var(--bg-primary);
    min-height: 100vh;
}
.login-page {
    padding: 7rem 1.5rem 3rem;
    min-height: calc(100vh - 4rem);
    display: flex; align-items: flex-start; justify-content: center;
}
.login-container {
    width: 100%; max-width: 480px;
    display: flex; flex-direction: column; gap: 1.25rem;
}
.login-back-link { margin-bottom: 0; }

.login-card {
    padding: 2.5rem 2.25rem !important;
    background: rgba(15, 15, 15, 0.85) !important;
    border: 1px solid var(--color-accent-border) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55), 0 0 60px rgba(255, 188, 66, 0.1);
}
.login-intro { margin-bottom: 2rem; }
.login-crown {
    color: var(--color-accent);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(255, 188, 66, 0.5));
    display: flex; justify-content: center;
}
.login-title {
    font-size: clamp(1.55rem, 3.5vw, 2rem);
    font-weight: var(--fw-black);
    line-height: 1.15;
    margin: 0.4rem 0 0.85rem;
    color: #fff;
}
.login-subtitle {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-muted);
    margin: 0;
}

.login-form { display: flex; flex-direction: column; }
.login-form .input-group:last-of-type { margin-bottom: 1rem; }

.login-password-wrap { position: relative; }
.login-password-wrap input { padding-right: 3rem; }
.login-password-toggle {
    position: absolute;
    top: 50%; right: 0.85rem;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    padding: 0.4rem;
    border-radius: 8px;
    transition: var(--transition);
}
.login-password-toggle:hover { color: var(--color-accent); background: rgba(255, 188, 66, 0.08); }
.login-password-toggle .icon-eye-off { display: none; }
.login-password-toggle.is-visible .icon-eye { display: none; }
.login-password-toggle.is-visible .icon-eye-off { display: block; }

.login-helper-row {
    display: flex; align-items: center; justify-content: space-between;
    gap: 0.85rem; flex-wrap: wrap;
    margin: 0.25rem 0 1.5rem;
    font-size: 0.88rem;
}
.login-remember {
    display: inline-flex; align-items: center; gap: 0.5rem;
    cursor: pointer;
    color: var(--text-muted);
    user-select: none;
}
.login-remember input[type="checkbox"] {
    width: 16px; height: 16px;
    min-height: 0;
    padding: 0;
    accent-color: var(--color-accent);
    cursor: pointer;
}
.login-forgot {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: var(--fw-bold);
    transition: var(--transition);
}
.login-forgot:hover { color: var(--color-accent-hover); text-decoration: underline; }

.login-error {
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    background: rgba(255, 80, 80, 0.08);
    border: 1px solid rgba(255, 80, 80, 0.35);
    border-radius: 10px;
    color: #ff8080;
    font-size: 0.88rem;
    line-height: 1.4;
}

.login-divider {
    display: flex; align-items: center;
    gap: 0.75rem;
    margin: 1.5rem 0 1rem;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.login-signup {
    text-align: center;
    font-size: 0.92rem;
    color: var(--text-muted);
    margin: 0;
}
.login-signup a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: var(--fw-bold);
    transition: var(--transition);
}
.login-signup a:hover { color: var(--color-accent-hover); text-decoration: underline; }

.login-note {
    text-align: center;
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0;
    padding: 0 0.5rem;
}
.login-note strong { color: var(--color-accent); font-weight: var(--fw-bold); }
.login-note a { color: var(--color-accent); text-decoration: none; font-weight: var(--fw-bold); }
.login-note a:hover { text-decoration: underline; }

@media (max-width: 600px) {
    .login-page { padding: 6rem 1rem 2rem; }
    .login-card { padding: 1.85rem 1.4rem !important; }
    .login-intro { margin-bottom: 1.5rem; }
    .login-title { font-size: 1.45rem; }
    .login-subtitle { font-size: 0.9rem; }
    .login-helper-row { font-size: 0.82rem; }
}

/* ==========================================================
   PAINEL DO PARCEIRO (Dashboard)
   ========================================================== */
.dashboard-body {
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 188, 66, 0.05) 0%, transparent 50%),
        var(--bg-primary);
    min-height: 100vh;
}
.dashboard-body .sticky-cta { display: none !important; }

/* Header */
.dashboard-header {
    background: rgba(10, 10, 10, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    position: sticky;
    top: 0;
    z-index: 90;
}
.dash-header-container {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 1.5rem !important;
    gap: 1rem;
    flex-direction: row;
}
.dash-brand {
    display: inline-flex; align-items: center; gap: 0.85rem;
    text-decoration: none;
}
.dash-logo { height: 38px; }
.dash-section-tag {
    padding: 0.3rem 0.75rem;
    background: var(--color-accent-soft);
    border: 1px solid var(--color-accent-border);
    border-radius: 100px;
    color: var(--color-accent);
    font-size: 0.7rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}
.dash-user { display: inline-flex; align-items: center; gap: 0.85rem; }
.dash-user-info { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.2; }
.dash-user-name { font-size: 0.9rem; color: var(--text-muted); }
.dash-user-name strong { color: #fff; font-weight: var(--fw-bold); }
.dash-user-tier {
    font-size: 0.68rem;
    font-weight: var(--fw-black);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-top: 0.2rem;
}
.dash-logout {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: var(--transition);
}
.dash-logout:hover { background: rgba(255, 80, 80, 0.1); border-color: rgba(255, 80, 80, 0.35); color: #ff8080; }

/* Container principal */
.dashboard { padding: 2rem 0 4rem; }
.dash-container { max-width: 1240px; padding: 0 1.5rem; }

/* Saudação + ações */
.dash-greeting {
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 2rem; flex-wrap: wrap;
    margin-bottom: 2rem;
}
.dash-greeting-text { flex: 1 1 320px; }
.dash-h1 { font-size: clamp(1.65rem, 3.2vw, 2.25rem); font-weight: var(--fw-black); line-height: 1.15; margin: 0 0 0.35rem; }
.dash-subtitle { color: var(--text-muted); font-size: 1rem; margin: 0; }
.dash-greeting-actions {
    display: flex; align-items: stretch; gap: 0.85rem;
    flex-wrap: wrap;
    flex: 1 1 420px;
    justify-content: flex-end;
}
.dash-referral {
    display: flex; flex-direction: column;
    flex: 1 1 280px; min-width: 240px;
}
.dash-referral-label {
    font-size: 0.7rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.4rem;
}
.dash-referral-input {
    display: flex; align-items: stretch;
    background: rgba(15, 15, 15, 0.7);
    border: 1px solid rgba(255, 188, 66, 0.25);
    border-radius: 10px;
    overflow: hidden;
}
.dash-referral-input input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.7rem 0.9rem;
    color: #fff;
    font-family: var(--font-regular);
    font-size: 0.88rem;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dash-referral-input input:focus { outline: none; }
.dash-copy-btn {
    display: inline-flex; align-items: center; gap: 0.35rem;
    padding: 0 0.85rem;
    background: var(--color-accent-soft);
    border: none;
    border-left: 1px solid rgba(255, 188, 66, 0.25);
    color: var(--color-accent);
    font-weight: var(--fw-bold);
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.dash-copy-btn:hover { background: var(--color-accent); color: #0a0a0a; }
.dash-copy-btn .icon-check { display: none; }
.dash-copy-btn.is-copied { background: rgba(34, 197, 94, 0.18); color: #22c55e; }
.dash-copy-btn.is-copied:hover { background: rgba(34, 197, 94, 0.25); color: #22c55e; }
.dash-copy-btn.is-copied .icon-copy { display: none; }
.dash-copy-btn.is-copied .icon-check { display: inline-block; }
.dash-new-btn {
    flex-shrink: 0;
    padding: 0.9rem 1.5rem !important;
    font-size: 0.92rem !important;
    align-self: flex-end;
}

/* KPI Cards */
.dash-kpis {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}
.kpi-card {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.4rem 1.35rem;
    background: rgba(15, 15, 15, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: var(--transition);
}
.kpi-card:hover { border-color: rgba(255, 188, 66, 0.25); transform: translateY(-3px); }
.kpi-card-highlight {
    border-color: var(--color-accent-border) !important;
    background: linear-gradient(135deg, rgba(255, 188, 66, 0.07) 0%, rgba(255, 188, 66, 0.02) 100%);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 188, 66, 0.08);
}
.kpi-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}
.kpi-icon-blue { background: rgba(59, 130, 246, 0.12); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.3); }
.kpi-icon-yellow { background: rgba(234, 179, 8, 0.12); color: #facc15; border: 1px solid rgba(234, 179, 8, 0.3); }
.kpi-icon-green { background: rgba(34, 197, 94, 0.12); color: #22c55e; border: 1px solid rgba(34, 197, 94, 0.3); }
.kpi-icon-gold { background: var(--color-accent-soft); color: var(--color-accent); border: 1px solid var(--color-accent-border); }
.kpi-body { display: flex; flex-direction: column; min-width: 0; }
.kpi-label {
    font-size: 0.75rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.4rem;
}
.kpi-value { font-size: 1.85rem; font-weight: var(--fw-black); line-height: 1; color: #fff; }
.kpi-value-money { color: var(--color-accent); text-shadow: 0 0 18px rgba(255, 188, 66, 0.3); }
.kpi-trend { font-size: 0.78rem; color: rgba(255, 255, 255, 0.5); margin-top: 0.45rem; }
.kpi-trend-up { color: #22c55e; }

/* Tier progress */
.dash-tier-progress {
    padding: 1.5rem 1.75rem;
    background: rgba(15, 15, 15, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    margin-bottom: 2rem;
}
.tier-progress-info {
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 1rem; flex-wrap: wrap;
    margin-bottom: 1rem;
}
.tier-progress-eyebrow {
    font-size: 0.7rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
}
.tier-progress-title { font-size: 1.1rem; font-weight: var(--fw-bold); color: #fff; margin: 0.25rem 0 0; }
.tier-progress-status { font-size: 0.92rem; color: var(--text-muted); }
.tier-progress-status strong { color: var(--color-accent); font-weight: var(--fw-bold); }
.tier-progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 0.6rem;
}
.tier-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent) 0%, #ffd07a 100%);
    border-radius: 100px;
    box-shadow: 0 0 16px rgba(255, 188, 66, 0.4);
    transition: width 0.6s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
.tier-progress-tiers { display: flex; justify-content: space-between; gap: 0.5rem; }
.tier-pip {
    font-size: 0.72rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.35);
}
.tier-pip-done { color: var(--color-accent); }
.tier-pip-current { color: #fff; }

/* Tabela */
.dash-table-section {
    padding: 1.5rem 1.75rem;
    background: rgba(15, 15, 15, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    margin-bottom: 2rem;
}
.dash-table-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 1rem; flex-wrap: wrap;
    margin-bottom: 1.25rem;
}
.dash-table-title { font-size: 1.2rem; font-weight: var(--fw-bold); color: #fff; margin: 0; }
.dash-table-sub { font-size: 0.88rem; color: rgba(255, 255, 255, 0.5); margin: 0.25rem 0 0; }
.dash-table-filter { display: flex; align-items: center; gap: 0.6rem; }
.dash-table-filter-label {
    font-size: 0.8rem; font-weight: var(--fw-bold);
    color: rgba(255, 255, 255, 0.55); margin: 0;
    letter-spacing: 0.02em;
}
.dash-table-filter select {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    border-radius: 8px;
    padding: 0.5rem 2rem 0.5rem 0.85rem;
    font-family: var(--font-regular);
    font-size: 0.88rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23FFBC42%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 0.6rem;
}
.dash-table-filter select:focus { outline: none; border-color: var(--color-accent); }
.dash-table-wrap { overflow-x: auto; margin: 0 -0.5rem; }
.dash-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.92rem;
}
.dash-table thead th {
    font-size: 0.74rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.55);
    text-align: left;
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
}
.dash-table tbody td {
    padding: 1rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: #fff;
    vertical-align: middle;
}
.dash-table tbody tr:last-child td { border-bottom: none; }
.dash-table tbody tr { transition: background 0.2s ease; }
.dash-table tbody tr:hover { background: rgba(255, 188, 66, 0.03); }
.dash-th-right, .dash-td-right { text-align: right; font-weight: var(--fw-bold); color: var(--color-accent); }
.dash-lead-cell { display: flex; flex-direction: column; }
.dash-lead-name { font-weight: var(--fw-bold); color: #fff; }
.dash-lead-sub { font-size: 0.82rem; color: rgba(255, 255, 255, 0.45); margin-top: 0.15rem; }

/* Status pills */
.status-pill {
    display: inline-flex; align-items: center; gap: 0.3rem;
    padding: 0.3rem 0.7rem;
    border-radius: 100px;
    font-size: 0.74rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.status-pill::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}
.status-recebido { background: rgba(59, 130, 246, 0.12); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.35); }
.status-negociacao { background: rgba(234, 179, 8, 0.12); color: #facc15; border: 1px solid rgba(234, 179, 8, 0.35); }
.status-ganho { background: rgba(34, 197, 94, 0.12); color: #22c55e; border: 1px solid rgba(34, 197, 94, 0.35); }
.status-perdido { background: rgba(248, 113, 113, 0.12); color: #f87171; border: 1px solid rgba(248, 113, 113, 0.35); }

.dash-table-empty {
    text-align: center;
    padding: 2.5rem 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

/* Suporte */
.dash-support {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem; flex-wrap: wrap;
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.06) 0%, rgba(34, 197, 94, 0.01) 100%);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 16px;
}
.dash-support-body { flex: 1 1 380px; }
.dash-support-title { font-size: 1.15rem; font-weight: var(--fw-bold); color: #fff; margin: 0 0 0.4rem; }
.dash-support-text { font-size: 0.92rem; line-height: 1.55; color: var(--text-muted); margin: 0 0 0.85rem; }
.dash-support-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.dash-support-links a {
    font-size: 0.85rem;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: var(--fw-bold);
    border-bottom: 1px dashed rgba(255, 188, 66, 0.4);
    padding-bottom: 1px;
    transition: var(--transition);
}
.dash-support-links a:hover { color: #ffd07a; border-bottom-style: solid; }
.dash-support-btn {
    flex-shrink: 0;
    background: #22c55e !important;
    color: #062d18 !important;
    padding: 0.95rem 1.5rem !important;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}
.dash-support-btn:hover { background: #16a34a !important; transform: translateY(-2px); }

/* Modal nova indicação */
.dash-modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 200;
    display: flex; align-items: center; justify-content: center;
    padding: 1rem;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.dash-modal-overlay.is-open {
    opacity: 1; visibility: visible;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
}
body.dash-modal-locked { overflow: hidden; }
.dash-modal {
    position: relative;
    width: 100%; max-width: 540px;
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid var(--color-accent-border);
    border-radius: 20px;
    padding: 2.25rem 2rem 2rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(255, 188, 66, 0.15);
    transform: scale(0.96) translateY(10px);
    transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.2);
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
}
.dash-modal-overlay.is-open .dash-modal { transform: scale(1) translateY(0); }
.dash-modal-close {
    position: absolute; top: 1rem; right: 1rem;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.6);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.dash-modal-close:hover { background: rgba(255, 188, 66, 0.12); border-color: var(--color-accent); color: var(--color-accent); transform: rotate(90deg); }
.dash-modal-header { margin-bottom: 1.5rem; }
.dash-modal-title { font-size: 1.55rem; font-weight: var(--fw-black); line-height: 1.2; margin: 0.5rem 0 0.4rem; color: #fff; }
.dash-modal-sub { font-size: 0.95rem; color: var(--text-muted); margin: 0; line-height: 1.55; }
.dash-modal-form .input-group { margin-bottom: 1rem; }
.dash-modal-form .input-row { display: flex; gap: 0.85rem; }
.dash-modal-form .w-50 { width: 50%; }
.dash-modal-form textarea {
    width: 100%; padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-regular);
    font-size: 0.95rem;
    resize: vertical;
    min-height: 80px;
}
.dash-modal-form textarea:focus { outline: none; border-color: var(--color-accent); background: rgba(255, 188, 66, 0.05); }
.dash-label-opt { color: rgba(255, 255, 255, 0.4); font-weight: var(--fw-regular); }

/* Toast */
.dash-toast {
    position: fixed;
    bottom: 1.5rem; left: 50%;
    transform: translateX(-50%) translateY(120%);
    background: rgba(15, 15, 15, 0.96);
    border: 1px solid var(--color-accent-border);
    color: #fff;
    padding: 0.85rem 1.5rem;
    border-radius: 100px;
    font-size: 0.92rem;
    font-weight: var(--fw-bold);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 188, 66, 0.15);
    z-index: 250;
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.2), opacity 0.3s ease;
    pointer-events: none;
    max-width: calc(100vw - 2rem);
    text-align: center;
}
.dash-toast.is-visible { transform: translateX(-50%) translateY(0); opacity: 1; }
.dash-toast.is-success { border-color: rgba(34, 197, 94, 0.5); }

/* Responsivo */
@media (max-width: 1024px) {
    .dash-kpis { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .dash-header-container { padding: 0.85rem 1rem !important; }
    .dash-section-tag { display: none; }
    .dash-user-info { display: none; }
    .dash-greeting { flex-direction: column; align-items: stretch; gap: 1.5rem; margin-bottom: 1.5rem; }
    .dash-greeting-actions { flex-direction: column; align-items: stretch; }
    .dash-new-btn { width: 100%; align-self: stretch; }
    .dash-kpis { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .kpi-card { padding: 1.1rem 1rem; gap: 0.85rem; }
    .kpi-value { font-size: 1.55rem; }
    .dash-table-section { padding: 1.25rem 1rem; }
    .dash-table thead { display: none; }
    .dash-table, .dash-table tbody, .dash-table tr, .dash-table td { display: block; width: 100%; }
    .dash-table tbody tr {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .dash-table tbody tr:last-child { border-bottom: none; }
    .dash-table tbody td {
        padding: 0.3rem 0;
        border-bottom: none;
        display: flex; justify-content: space-between; align-items: center;
        gap: 0.85rem;
    }
    .dash-table tbody td::before {
        content: attr(data-label);
        font-size: 0.72rem;
        font-weight: var(--fw-bold);
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: rgba(255, 255, 255, 0.45);
    }
    .dash-table tbody td:first-child::before { display: none; }
    .dash-table tbody td:first-child { margin-bottom: 0.5rem; }
    .dash-td-right { text-align: right; }
    .dash-support { padding: 1.5rem 1.25rem; flex-direction: column; align-items: stretch; }
    .dash-support-btn { width: 100%; }
    .dash-modal { padding: 1.75rem 1.25rem 1.5rem; max-height: calc(100vh - 1rem); }
    .dash-modal-form .input-row { flex-direction: column; gap: 0; }
    .dash-modal-form .w-50 { width: 100%; }
}
