:root {
    --navy-900: #061635;
    --navy-800: #0c2340;
    --navy-700: #12315a;
    --gold: #d5c68a;
    --gold-bright: #e9dca8;
    --text: #f4f1e6;
    --text-muted: #b8c0d0;
}

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

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: var(--text);
    background: var(--navy-900);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    position: relative;
}

/* Fundo com gradiente animado + halos */
.background {
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(1200px 800px at 15% 20%, rgba(213, 198, 138, 0.12), transparent 60%),
        radial-gradient(1000px 700px at 85% 80%, rgba(18, 49, 90, 0.9), transparent 60%),
        linear-gradient(135deg, #061635 0%, #0c2340 50%, #0a1c37 100%);
    animation: bgShift 18s ease-in-out infinite alternate;
}

@keyframes bgShift {
    0%   { filter: hue-rotate(0deg) saturate(1); }
    100% { filter: hue-rotate(12deg) saturate(1.1); }
}

/* Grade sutil sobre o fundo */
.grid-overlay {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, #000 40%, transparent 85%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 85%);
    pointer-events: none;
}

/* Partículas flutuantes */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}
.orb.a {
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(213,198,138,0.55), transparent 70%);
    top: -120px; left: -120px;
    animation: float1 14s ease-in-out infinite;
}
.orb.b {
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(30,80,160,0.6), transparent 70%);
    bottom: -160px; right: -140px;
    animation: float2 16s ease-in-out infinite;
}

@keyframes float1 {
    0%,100% { transform: translate(0,0) scale(1); }
    50%     { transform: translate(60px, 40px) scale(1.08); }
}
@keyframes float2 {
    0%,100% { transform: translate(0,0) scale(1); }
    50%     { transform: translate(-50px, -30px) scale(1.1); }
}

/* Layout principal */
.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 40px 24px;
}

.container {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
}

/* Logo */
.logo-wrap {
    position: relative;
    display: inline-block;
    animation: fadeUp 900ms cubic-bezier(.2,.7,.2,1) both;
}
.logo-wrap::after {
    content: "";
    position: absolute;
    inset: -20px;
    border-radius: 28px;
    background: radial-gradient(circle at center, rgba(213,198,138,0.35), transparent 70%);
    filter: blur(30px);
    z-index: -1;
    opacity: 0.9;
    animation: pulse 4s ease-in-out infinite;
}
.logo {
    width: clamp(220px, 34vw, 340px);
    height: auto;
    display: block;
    border-radius: 18px;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.5),
        0 0 0 1px rgba(213,198,138,0.15);
}

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

/* Badge "EM BREVE" */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border: 1px solid rgba(213,198,138,0.4);
    border-radius: 999px;
    background: rgba(213,198,138,0.06);
    color: var(--gold-bright);
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    letter-spacing: 0.35em;
    font-size: 13px;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: fadeUp 900ms 150ms cubic-bezier(.2,.7,.2,1) both;
}
.badge .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 0 rgba(213,198,138,0.7);
    animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
    0%,100% { box-shadow: 0 0 0 0 rgba(213,198,138,0.7); }
    50%     { box-shadow: 0 0 0 10px rgba(213,198,138,0); }
}

/* Textos */
h1 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5.2vw, 3.6rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    max-width: 20ch;
    background: linear-gradient(180deg, #ffffff 0%, #e9dca8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fadeUp 900ms 250ms cubic-bezier(.2,.7,.2,1) both;
}

.lead {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 62ch;
    animation: fadeUp 900ms 400ms cubic-bezier(.2,.7,.2,1) both;
}

.tagline {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--gold);
    max-width: 62ch;
    padding-top: 6px;
    border-top: 1px solid rgba(213,198,138,0.2);
    animation: fadeUp 900ms 550ms cubic-bezier(.2,.7,.2,1) both;
}
.tagline strong { color: var(--gold-bright); font-weight: 800; }

/* Pilares */
.pillars {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 4px;
    animation: fadeUp 900ms 700ms cubic-bezier(.2,.7,.2,1) both;
}
.pill {
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.pill:hover {
    transform: translateY(-2px);
    background: rgba(213,198,138,0.08);
    border-color: rgba(213,198,138,0.35);
}

/* Rodapé */
footer {
    text-align: center;
    color: rgba(184,192,208,0.6);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    padding-top: 32px;
}

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

@media (max-width: 600px) {
    .page { padding: 32px 20px; }
    .container { gap: 28px; }
    .badge { letter-spacing: 0.28em; font-size: 12px; padding: 8px 18px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
}
