/* Reset básico */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    color: #333;
}

header {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
}

.logo-container {
    display: inline-block;
    background-color: #fff;
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.logo {
    font-size: 2.5em;
    margin: 0;
    font-weight: bold;
    background: linear-gradient(to right, #0072ff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.tagline {
    display: block;
    font-size: 1em;
    font-weight: normal;
    text-transform: capitalize;
    margin-top: 5px;
    color: rgba(0, 0, 0, 0.6);
}

.contact-info {
    margin-top: 20px;
    font-size: 1em;
}

.contact-info a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Animación flotante */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
