/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #eafafc, #d2f4f9);
    color: #003843;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    flex-direction: column;
}

.wrapper {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    animation: fadeIn 1s ease-in-out forwards;
}

.logo {
    width: 200px;
    margin-bottom: 25px;
}

h1 {
    font-size: 28px;
    color: #007b8e;
    margin-bottom: 12px;
}

p {
    font-size: 17px;
    color: #333;
}

footer {
    margin-top: 20px;
    font-size: 14px;
    color: #555;
}

/* Animaciones */
@keyframes fadeIn {
    0% {opacity: 0; transform: translateY(20px);}
    100% {opacity: 1; transform: translateY(0);}
}

.fade-in {
    animation: fadeIn 1.5s ease-out;
}

@keyframes pulse {
    0% {transform: scale(1);}
    50% {transform: scale(1.05);}
    100% {transform: scale(1);}
}

.pulse {
    animation: pulse 2.5s infinite ease-in-out;
}

/* Responsivo */
@media screen and (max-width: 600px) {
    .logo {
        width: 140px;
    }

    h1 {
        font-size: 22px;
    }

    p {
        font-size: 15px;
    }
}
