/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container Principal */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: transparent;
    border-bottom: none;
}

.logo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    height: 120px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
    filter: none;
}

/* Conteúdo Principal */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem;
    text-align: center;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1.2s ease-out;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    position: relative;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #1a1a1a, transparent);
    opacity: 0.3;
}

.subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    color: #4a4a4a;
    margin-bottom: 3rem;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.description {
    margin-bottom: 3rem;
}

.description p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #666666;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 400;
}

.anticipation-text {
    margin-top: 12rem;
}

.anticipation-text p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #888888;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
}

.highlight {
    color: #1a1a1a;
    font-weight: 600;
    position: relative;
    margin: 0 0.5rem;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #1a1a1a, transparent);
    opacity: 0.4;
}

/* Footer */
.footer {
    padding: 3rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #666666;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    color: #1a1a1a;
    border-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}



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

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

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 0.75rem 0;
    }
    
    .logo {
        height: 90px;
    }
    
    .main-content {
        padding: 5rem 1.5rem 3rem;
    }
    
    .main-title::after {
        width: 40px;
    }
    
    .social-links {
        gap: 1.5rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .highlight {
        margin: 0 0.3rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.5rem 0;
    }
    
    .logo {
        height: 70px;
    }
    
    .main-content {
        padding: 4rem 1rem 2rem;
    }
    
    .content-wrapper {
        padding: 0 0.5rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .footer {
        padding: 2rem 1rem 1.5rem;
    }
}

/* Efeitos sutis de hover para interatividade */
.content-wrapper:hover .main-title {
    transform: translateY(-1px);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: none;
    transition: none;
    cursor: pointer;
}

/* Gradiente sutil no fundo para adicionar profundidade */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.01) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}