
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.container {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    animation: fadeIn 2s ease;
}

.logo img {
    width: 300px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

h1 {
    font-size: 2em;
    margin-bottom: 15px;
}

h1 span {
    color: #caf0f8;
}

.message {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
    margin-top: 50px;
}

.contact p {
    margin: 5px 0;
    font-weight: bold;
}

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

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

/* Responsivo */
@media (max-width: 600px) {
    h1 {
        font-size: 1.5em;
    }

    .message {
        font-size: 1em;
    }
}
