/* Variáveis de Cor e Reset */
:root {
    --primary-pink: #f70068;
    --dark-bg: #050505;
    --text-light: #ffffff;
    --text-muted: #b3b3b3;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    background-image: linear-gradient(to right, rgba(5,5,5,0.8) 0%, rgba(5,5,5,0.2) 50%, rgba(5,5,5,0.7) 100%), url('background.png');
    background-size: cover;
    background-position: center top; /* Posição padrão para desktop */
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Faixa do Cronômetro */
.top-banner {
    background: var(--primary-pink);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(247, 0, 104, 0.5);
    text-transform: uppercase;
}

.top-banner span {
    font-weight: 800;
    font-size: 1.1rem;
    margin-left: 5px;
}

/* Header & Navegação */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

.logo { font-size: 1.4rem; letter-spacing: 1px; }
.logo strong { font-weight: 800; }
.logo span { color: var(--primary-pink); font-weight: 300; }

.nav-links { display: flex; gap: 2rem; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-size: 0.9rem; text-transform: lowercase; transition: 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--text-light); }
.nav-actions { display: flex; align-items: center; gap: 0.8rem; }

.social-icon { background: white; color: black; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; text-decoration: none; font-size: 1rem; transition: 0.3s; }
.social-icon:hover { background: var(--primary-pink); color: white; box-shadow: 0 0 10px var(--primary-pink); }

.contact-btn { background: white; color: black; text-decoration: none; padding: 0.4rem 0.4rem 0.4rem 1rem; border-radius: 30px; font-weight: 600; font-size: 0.85rem; display: flex; align-items: center; gap: 8px; transition: 0.3s; }
.contact-btn .phone-icon { background: var(--primary-pink); color: white; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.contact-btn:hover { box-shadow: 0 0 15px var(--primary-pink); }

/* Efeito Glassmorphism */
.blur-bg {
    background: var(--glass-bg); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--glass-border);
}

/* Seção Principal (Hero) */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5% 4rem; 
    min-height: calc(100vh - 40px);
    position: relative;
    z-index: 5;
}

.hero-content { max-width: 55%; }
.hero-content h1 { font-size: 4rem; font-weight: 800; line-height: 1.1; margin-bottom: 1rem; text-transform: uppercase; }
.hero-content p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2.5rem; }

/* Botão com Animação Pulse (Neon) */
.cta-button {
    background-color: var(--primary-pink); color: var(--text-light); text-decoration: none; padding: 1rem 3rem; font-size: 1.1rem; font-weight: 700; border-radius: 50px; display: inline-block; transition: 0.3s;
    animation: pulse-neon 2s infinite;
}
.cta-button:hover { transform: translateY(-3px); }

/* Elementos Flutuantes */
.hero-visuals { display: flex; flex-direction: column; align-items: flex-end; gap: 2.5rem; }
.floating-pills { display: flex; flex-direction: column; align-items: flex-end; gap: 0.8rem; }
.pill { padding: 1rem 1.5rem; border-radius: 15px; font-size: 0.95rem; font-weight: 400; text-align: right; }
.small-pill { padding: 0.7rem 1.2rem; border-radius: 30px; font-size: 0.9rem; }

.stats-container { display: flex; gap: 1.2rem; }
.stat-card { padding: 1.5rem; border-radius: 20px; width: 160px; position: relative; }
.stat-card h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 0.3rem; text-shadow: 0 0 10px rgba(255,255,255,0.3); }
.stat-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.3; }

.arrow-btn {
    position: absolute; bottom: -12px; right: 15px; background: var(--primary-pink); color: white; width: 35px; height: 35px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: 0.3s;
    animation: pulse-neon 2.5s infinite;
}

/* --- KEYFRAMES (ANIMAÇÕES) --- */
@keyframes pulse-neon {
    0% { box-shadow: 0 0 0 0 rgba(247, 0, 104, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(247, 0, 104, 0); }
    100% { box-shadow: 0 0 0 0 rgba(247, 0, 104, 0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animated-float { animation: float 6s ease-in-out infinite; }
.delay-1 { animation-delay: 1s; }
.delay-2 { animation-delay: 2s; }
.delay-3 { animation-delay: 3s; }


/* --- AJUSTE MOBILE --- */
@media (max-width: 768px) {
    
    body {
        /* AQUI ESTÁ O SEGREDO: Carrega a imagem exclusiva para celular */
        background-image: linear-gradient(to right, rgba(5,5,5,0.8) 0%, rgba(5,5,5,0.2) 50%, rgba(5,5,5,0.7) 100%), url('background-mobile.png');
        
        /* Como a imagem nova já estará no formato certo, voltamos a posição para o centro padrão */
        background-position: center; 
    }

    header { padding: 1rem 5%; }
    .nav-links, .contact-btn span { display: none; }
    .contact-btn { padding: 0.4rem; border-radius: 50%; }
    .top-banner { font-size: 0.75rem; padding: 8px; }
    .top-banner span { font-size: 0.9rem; }

    .hero {
        flex-direction: column;
        justify-content: flex-end; 
        text-align: center;
        /* Reduzi de 45vh para 35vh para subir o texto e liberar o rosto */
        padding-top: 35vh; 
        padding-bottom: 4rem;
    }

    .hero-content { max-width: 100%; margin-bottom: 3rem; }
    .hero-content h1 { font-size: 2.5rem; } 
    .hero-content p { font-size: 1rem; margin-bottom: 2rem; }

    .hero-visuals, .floating-pills, .stats-container { align-items: center; text-align: center; width: 100%; }
    .pill { text-align: center; }
    .stat-card { width: 80%; max-width: 280px; }
}
