/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Container principal */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Logo */
.logo-container {
    margin-bottom: 3rem;
}

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

.logo-fallback {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 3px;
    display: none;
}

/* Mostrar texto fallback se logo não carregar */
.logo[style*="display: none"] + .logo-fallback,
.logo:not([src]) + .logo-fallback {
    display: block;
}

/* Conteúdo principal */
.content {
    max-width: 600px;
}

/* Título principal */
.title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: #dc2626;
    font-weight: 700;
}

/* Subtítulo */
.subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Mensagem */
.message {
    margin-bottom: 3rem;
}

.message p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #ffffff;
    opacity: 0.8;
}

.message p:last-child {
    margin-bottom: 0;
}

/* Celebração */
.celebration {
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.celebration-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.celebration-text {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.7;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem 1rem;
    }
    
    .logo {
        max-width: 150px;
    }
    
    .logo-fallback {
        font-size: 1.5rem;
    }
    
    .title {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .message p {
        font-size: 1rem;
    }
    
    .celebration-title {
        font-size: 2rem;
    }
    
    .celebration-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem 0.75rem;
    }
    
    .logo {
        max-width: 120px;
    }
    
    .logo-fallback {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .title {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .message p {
        font-size: 0.95rem;
    }
    
    .celebration-title {
        font-size: 1.6rem;
    }
    
    .celebration-text {
        font-size: 0.9rem;
    }
}

/* Animações suaves */
.container {
    animation: fadeIn 1s ease-out;
}

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

.logo {
    animation: logoAppear 1.2s ease-out 0.2s both;
}

@keyframes logoAppear {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.content > * {
    animation: slideUp 1s ease-out both;
}

.title {
    animation-delay: 0.4s;
}

.subtitle {
    animation-delay: 0.6s;
}

.message {
    animation-delay: 0.8s;
}

.celebration {
    animation-delay: 1s;
}

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

/* Estados de hover sutis */
.logo {
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.highlight {
    transition: color 0.3s ease;
}

.highlight:hover {
    color: #ef4444;
}