/* LetGo — página de espera */

:root {
    --bg: #0c0f14;
    --bg-card: rgba(22, 27, 38, 0.72);
    --stroke: rgba(255, 255, 255, 0.08);
    --text: #e8ecf4;
    --muted: #94a3b8;
    --accent: #38bdf8;
    --accent-soft: rgba(56, 189, 248, 0.18);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    font-family: "DM Sans", system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: radial-gradient(ellipse 120% 80% at 50% -20%, #1e293b 0%, var(--bg) 55%);
    overflow-x: hidden;
}

.noise {
    position: fixed;
    inset: 0;
    opacity: 0.035;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1.5rem, 4vw, 3rem);
}

.card {
    width: min(100%, 38rem);
    padding: clamp(2rem, 5vw, 2.75rem);
    border-radius: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--stroke);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.03) inset,
        0 24px 48px -24px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px);
    text-align: center;
}

.badge {
    display: inline-block;
    margin: 0 0 1rem;
    padding: 0.35rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-soft);
    border-radius: 999px;
}

.headline {
    margin: 0 0 1.25rem;
    font-size: clamp(1.35rem, 4vw, 1.85rem);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.headline-wait {
    display: block;
    margin-top: 1rem;
    font-size: clamp(1.5rem, 5vw, 2.15rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--accent);
    text-transform: uppercase;
}

.support {
    margin: 0 auto 1.75rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--muted);
    max-width: 32rem;
}

.pulse-row {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.pulse-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 1.4s ease-in-out infinite;
}

.pulse-dot.delay {
    animation-delay: 0.2s;
}

.pulse-dot.delay2 {
    animation-delay: 0.4s;
}

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

.footer {
    margin-top: 0.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--stroke);
}

.footer-note {
    margin: 0 0 0.5rem;
    font-size: 0.8rem;
    color: var(--muted);
    opacity: 0.85;
}

.footer-signature {
    margin: 0;
    font-size: 0.78rem;
    color: var(--muted);
    opacity: 0.9;
    line-height: 1.5;
}

.footer-signature a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-signature a:hover {
    color: #7dd3fc;
    border-bottom-color: rgba(125, 211, 252, 0.45);
}

.footer-signature a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 2px;
}
