:root {
    --bg-color: #030305;
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --accent: #ff0000;
    --accent-glow: rgba(255, 0, 0, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Efeitos de Fundo (Glows) */
.background-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.6;
    transition: transform 0.2s ease-out;
}

.glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    top: -150px;
    right: -100px;
}

.glow-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    bottom: -200px;
    left: -150px;
}

.glow-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    top: 40%;
    left: 30%;
}

/* Container Principal */
.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Cabeçalho */
header {
    padding-top: 2rem;
    animation: fadeInDown 1s ease-out forwards;
    opacity: 0;
}

.logo-img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

/* Conteúdo central */
.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 700px;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-main);
    margin-bottom: 2.5rem;
    width: max-content;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.2s forwards;
    opacity: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    animation: fadeInUp 1s ease-out 0.4s forwards;
    opacity: 0;
}

.highlight {
    background: linear-gradient(135deg, #ffffff 0%, #71717a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 520px;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

/* Botões Redes Sociais */
.social-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s forwards;
    opacity: 0;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    width: 60px;
    height: 60px;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    position: relative;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: left 0.5s ease;
}

.social-btn:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.social-btn:hover::before {
    left: 100%;
}

.social-btn i {
    font-size: 1.8rem;
    transition: color 0.3s ease;
}

.instagram:hover i {
    color: #E1306C;
}

.whatsapp:hover i {
    color: #25D366;
}

/* Rodapé */
footer {
    padding-bottom: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
    text-align: center;
    animation: fadeIn 1s ease-out 1s forwards;
    opacity: 0;
}

.company-info {
    font-size: 0.75rem;
    margin-top: 0.5rem;
    opacity: 0.7;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsivo */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem 6%;
    }
    
    header {
        padding-top: 1rem;
        margin-bottom: 2rem;
    }
    
    .logo-img {
        max-height: 45px;
    }
    
    .badge {
        margin-bottom: 2rem;
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
        margin-bottom: 1rem;
    }
    
    .description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding-right: 1rem;
    }

    .social-links {
        flex-direction: row;
        justify-content: center;
        width: 100%;
        gap: 1.5rem;
    }
    
    .social-btn {
        width: 60px;
        padding: 1rem;
    }
    
    footer {
        padding-bottom: 1rem;
        margin-top: 2rem;
    }
    
    .glow-1 {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -50px;
    }
    
    .glow-2 {
        width: 400px;
        height: 400px;
        bottom: -150px;
        left: -100px;
    }
}
