/* ── Tokens ── */
:root {
    --blue:   #2E7FC4;
    --orange: #F6A800;
    --bg:     #0c0f14;
    --text:   #edf2f7;
    --muted:  #5a6a7a;
    --faint:  rgba(255, 255, 255, 0.06);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }

/* ── Base ── */
body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    overflow-x: hidden;
    position: relative;
}

/* ── Particles canvas ── */
#particles-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block;
}

/* ── Background glows ── */
.glow {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.glow--blue {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(46, 127, 196, 0.20) 0%, transparent 65%);
    top: -280px;
    right: -250px;
}

.glow--orange {
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(246, 168, 0, 0.11) 0%, transparent 65%);
    bottom: -180px;
    left: -180px;
}

/* ── Page wrapper ── */
.page {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 740px;
    width: 100%;
    animation: fadeUp .75s cubic-bezier(.22, 1, .36, 1) both;
}

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

/* ── Logo ── */
.logo-wrap {
    margin: 0 0 3rem;
}

.logo {
    width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ── Badge ── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blue);
    border: 1px solid rgba(46, 127, 196, 0.28);
    background: rgba(46, 127, 196, 0.07);
    padding: .38rem 1.1rem;
    border-radius: 99px;
    margin-bottom: 2.25rem;
    user-select: none;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    animation: blink 2.4s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: .2; }
}

/* ── Headline ── */
.headline {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(2.1rem, 5.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.13;
    letter-spacing: -.025em;
    color: var(--text);
    margin-bottom: 1.75rem;
}

/* ── Description ── */
.description {
    font-size: clamp(.875rem, 2vw, 1rem);
    font-weight: 300;
    line-height: 1.85;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto .85rem;
}

.tagline {
    font-size: clamp(.875rem, 2vw, 1rem);
    font-weight: 500;
    font-style: italic;
    color: var(--orange);
    opacity: .85;
    margin-bottom: 2.75rem;
}

/* ── Divider ── */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--faint) 50%, transparent 100%);
    margin-bottom: 2.75rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Contact ── */
.contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: .75rem 2.25rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    text-decoration: none;
    color: var(--muted);
    font-size: .9375rem;
    font-weight: 400;
    transition: color .2s ease, transform .2s ease;
    border-radius: 6px;
    padding: .25rem 0;
}

.contact-link:hover {
    transform: translateY(-2px);
}

.contact-link--email:hover    { color: var(--blue); }
.contact-link--whatsapp:hover { color: #25D366; }
.contact-link--instagram:hover { color: #C13584; }

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 19px;
    height: 19px;
    opacity: .55;
    flex-shrink: 0;
    transition: opacity .2s ease;
}

.contact-link:hover .contact-icon {
    opacity: 1;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

/* ── Responsive ── */
@media (max-width: 520px) {
    body { padding: 2.5rem 1.25rem; }
    .logo { width: 220px; }
    .contact { flex-direction: column; gap: 1.1rem; }
}
