*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } :root { --bg: #080B0E; --bg-2: #0D1219; --text: #F0F0EE; --muted: #6B7786; --accent: #f05a00; --accent-d: #c44800; --wa: #25D366; --wa-d: #1ebe5d; --border: rgba(255,255,255,0.07); --font: 'Bricolage Grotesque', sans-serif; } body { font-family: var(--font); background: var(--bg); color: var(--text); min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 48px 24px; text-align: center; overflow-x: hidden; position: relative; } body::before { content: ''; position: fixed; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px); background-size: 64px 64px; pointer-events: none; z-index: 0; } .aurora { position: fixed; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; } .aurora span { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.45; } .aurora span:nth-child(1) { top: -200px; left: 50%; margin-left: -280px; width: 560px; height: 560px; background: radial-gradient(circle, rgba(240,90,0,0.4) 0%, transparent 70%); animation: drift1 18s ease-in-out infinite; } .aurora span:nth-child(2) { bottom: -180px; right: 8%; width: 420px; height: 420px; background: radial-gradient(circle, rgba(196,72,0,0.3) 0%, transparent 72%); animation: drift2 22s ease-in-out infinite; } @keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-40px,40px) scale(1.15); } } @keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(40px,-30px) scale(0.9); } } .wrap { position: relative; z-index: 1; max-width: 520px; width: 100%; } .check { width: 88px; height: 88px; margin: 0 auto 36px; position: relative; animation: pop 0.5s 0.1s cubic-bezier(.34,1.56,.64,1) both; } @keyframes pop { from { opacity: 0; transform: scale(0.6); } to { opacity: 1; transform: scale(1); } } .check svg { width: 100%; height: 100%; } .check .ring { fill: none; stroke: var(--accent); stroke-width: 4; stroke-dasharray: 264; stroke-dashoffset: 264; animation: draw 0.7s 0.3s ease forwards; } .check .tick { fill: none; stroke: var(--accent); stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 48; stroke-dashoffset: 48; animation: draw 0.4s 0.95s ease forwards; } .check .halo { fill: rgba(240,90,0,0.1); } @keyframes draw { to { stroke-dashoffset: 0; } } h1 { font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 700; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 16px; animation: fadeUp 0.7s 0.4s ease both; } h1 .accent { color: var(--accent); } .lead { color: var(--muted); font-size: 1.05rem; line-height: 1.7; max-width: 420px; margin: 0 auto 40px; animation: fadeUp 0.7s 0.5s ease both; } @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } } .btn-whatsapp { display: inline-flex; align-items: center; gap: 12px; background: var(--wa); color: #fff; font-family: var(--font); font-size: 1rem; font-weight: 700; letter-spacing: 0.01em; padding: 16px 32px; border-radius: 6px; text-decoration: none; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; box-shadow: 0 8px 24px rgba(37,211,102,0.18); animation: fadeUp 0.7s 0.6s ease both; } .btn-whatsapp:hover { background: var(--wa-d); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37,211,102,0.28); } .cta-note { font-size: 0.82rem; color: var(--muted); margin-top: 14px; animation: fadeUp 0.7s 0.65s ease both; } .steps { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--border); text-align: left; animation: fadeUp 0.7s 0.75s ease both; } .steps-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; text-align: center; } .step { display: flex; align-items: flex-start; gap: 16px; padding: 14px 0; position: relative; } .step:not(:last-child)::after { content: ''; position: absolute; left: 13px; top: 38px; bottom: -6px; width: 1px; background: var(--border); } .step-dot { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--bg-2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700; color: var(--accent); } .step-body h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 2px; } .step-body p { font-size: 0.84rem; color: var(--muted); line-height: 1.5; } .back { display: inline-block; margin-top: 40px; font-size: 0.85rem; color: var(--muted); text-decoration: none; border-bottom: 1px solid var(--border); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; animation: fadeUp 0.7s 0.85s ease both; } .back:hover { color: var(--text); border-color: var(--muted); } @media (prefers-reduced-motion: reduce) { .aurora span, .check, .check .ring, .check .tick, h1, .lead, .btn-whatsapp, .cta-note, .steps, .back { animation: none; } .check .ring, .check .tick { stroke-dashoffset: 0; } } @media (max-width: 520px) { .check { width: 72px; height: 72px; } .btn-whatsapp { width: 100%; justify-content: center; } }