* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.titulo {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 30px;
    font-weight: bold;
}

.logo {
    max-width: 500px;
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto 50px auto;
}

.contacto {
    margin-top: 20px;
    color: #333;
    font-size: 1.2em;
    line-height: 1.8;
}

.contacto p {
    margin: 10px 0;
}

.contacto a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contacto a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* ----- TABLETS ----- */
@media (max-width: 768px) {
    body {
        padding: 30px 15px;
    }

    .titulo {
        font-size: 2em;
        margin-bottom: 25px;
    }

    .logo {
        max-width: 280px;
        margin-bottom: 30px;
    }

    .contacto {
        font-size: 1.1em;
    }
}

/* ----- MÓVILES EN VERTICAL ----- */
@media (max-width: 480px) {
    body {
        justify-content: flex-start;
        padding-top: 60px;
    }

    .titulo {
        font-size: 1.7em;
        margin-bottom: 20px;
        word-wrap: break-word;
    }

    .logo {
        max-width: 220px;
        width: 70%;
        margin-bottom: 25px;
    }

    .contacto {
        font-size: 1em;
        line-height: 1.6;
    }

    .contacto p {
        margin: 8px 0;
    }

    a {
        word-break: break-word;
    }
}
