@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #121212;
    color: #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    margin: 0;
    animation: fadeIn 1.5s ease-in-out;
}

.container {
    max-width: 900px;
    padding: 20px;
    border-radius: 10px;
    background-color: #1e1e1e;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
    animation: slideUp 1s ease-out;
}

.logo {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

h1 {
    font-size: 24px;
    color: #ffcc00;
    animation: pulse 1.5s infinite;
}

p {
    font-size: 16px;
    margin: 10px 0;
    opacity: 0;
    animation: fadeInText 2s ease-in-out forwards;
}

.email a {
    color: #4db8ff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.email a:hover {
    text-decoration: underline;
    color: #ffcc00;
}

hr {
    border: 0.5px solid #333;
    margin: 20px 0;
}

/* Animação de fade-in ao carregar a página */
@keyframes fadeIn {
    from {
        opacity: 0.5;
    }
    to {
        opacity: 1;
    }
}

/* Animação para deslizar o container de baixo para cima */
@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0.5;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Efeito de pulsação no título */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Fade-in no texto após um pequeno delay */
@keyframes fadeInText {
    from {
        opacity: 0.5;
    }
    to {
        opacity: 1;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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