/* style.css - ARA Cosméticos Premium Dark Theme */

:root {
    --bg-color: #000000;
    --text-primary: #FFFFFF;
    --text-secondary: #B3B3B3;
    --accent-orange: #F47E27;
    
    /* Social Colors */
    --whatsapp-color: #25D366;
    --facebook-color: #1877F2;
    
    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Efeitos de Iluminação Ambiente (Premium Aesthetic) */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
}

.glow-1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(244,126,39,0.2) 0%, rgba(0,0,0,0) 70%);
    top: -150px;
    right: -100px;
    animation: pulse 8s infinite alternate ease-in-out;
}

.glow-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0) 70%);
    bottom: -100px;
    left: -50px;
    animation: pulse 6s infinite alternate-reverse ease-in-out;
}

/* Container Principal - Estilo Glassmorphism */
.container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 4rem 3rem;
    max-width: 800px;
    width: 90%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Logotipo */
.logo-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.logo-svg {
    width: 280px;
    height: auto;
    max-width: 100%;
}

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

/* Tipografia */
.title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #FFFFFF, #CCCCCC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.description-container {
    margin-bottom: 3rem;
}

.description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
}

.highlight {
    display: block;
    margin-top: 0.8rem;
    color: var(--accent-orange);
    font-weight: 400;
    font-size: 1.15rem;
}

/* Botões Sociais */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-btn i {
    font-size: 1.3rem;
}

/* Efeitos de Hover nos Botões */
.social-btn:hover {
    transform: translateY(-3px);
}

.social-btn.whatsapp:hover {
    background: var(--whatsapp-color);
    border-color: var(--whatsapp-color);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.25);
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.25);
}

.social-btn.facebook:hover {
    background: var(--facebook-color);
    border-color: var(--facebook-color);
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.25);
}

/* Animações */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.2; }
    100% { transform: scale(1.15); opacity: 0.45; }
}

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

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

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.animate-slide-up {
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
}

/* Responsividade */
@media (max-width: 600px) {
    .container {
        padding: 3rem 1.5rem;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .description, .highlight {
        font-size: 1rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: stretch;
    }
    
    .social-btn {
        width: 100%;
    }
}
