:root {
    --dark-bg: #0a0a0a;
    --gold: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
}

body {
    margin: 0;
    background-color: var(--dark-bg);
    color: white;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.glow-bg {
    position: fixed;
    top: 50%; left: 50%;
    width: 600px; 
    height: 600px;
    background: radial-gradient(circle, rgba(191, 149, 63, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.main-card {
    text-align: center;
    width: 90%;
    max-width: 450px;
}

/* --- ESTRUTURA DO CABEÇALHO --- */
.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.logo-section {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.plane-decorator {
    position: absolute;
    top: -15px;
    left: -15px;
    transform: rotate(-15deg);
    animation: float 3s ease-in-out infinite;
}

.plane-decorator i {
    color: #bf953f;
    font-size: 22px;
    filter: drop-shadow(0 0 8px rgba(191, 149, 63, 0.5));
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(-15deg); }
    50% { transform: translate(5px, -5px) rotate(-10deg); }
}

.brand-title {
    font-size: 32px;
    letter-spacing: 5px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
}

.gold-text {
    background: var(--gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Badge abaixo da logo */
.premium-badge {
    background: var(--gold);
    color: #000;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 900;
}

/* --- BOTÕES --- */
.button-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.glass-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    transition: 0.4s;
}

.inner-shine {
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: 0.6s;
}

.instagram:hover { border-color: #c13584; box-shadow: 0 0 20px rgba(193, 53, 132, 0.2); }
.whatsapp:hover { border-color: #d4af37; box-shadow: 0 0 20px rgba(212, 175, 55, 0.2); }

.glass-btn:hover .inner-shine { left: 100%; }
.glass-btn:hover { transform: scale(1.02); background: rgba(255, 255, 255, 0.07); }

.glass-btn i { font-size: 18px; }
.fa-instagram { color: #e1306c; }
.fa-whatsapp { color: #d4af37; }

.footer {
    position: absolute;
    bottom: 30px;
    font-size: 10px;
    color: #444;
    letter-spacing: 2px;
}