/* Reset de estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos generales */
body {
    background-color: #0F1330;
    font-family: Arial, sans-serif;
    color: #ffffff;
}

/* Estilos del header */
header {
    background-color: #130946;
    height: 50px;
    display: flex;
    align-items: center;
}

.logo {
    margin-left: 20px;
}

.logo img {
    height: 50px;
}

/* Banner */
.banner {
    text-align: center;
    /* padding: 20px; */
}

.banner img {
    max-width: 100%;
    height: auto;
}

.banner p {
    font-size: 30px;
    margin-top: 10px;
}


/* Footer */
footer {
    color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

/* Logo y redes sociales */
.footer-left img {
    max-height: 50px;
}

.social-icons a {
    margin-right: 10px;
}

/* Enlaces de términos y copyright */
.footer-center a {
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 10px;
}

/* Derechos de autor */
.footer-right {
    font-size: 14px;
}

/* Estilos responsive */
@media (max-width: 768px) {
    .banner img {
        max-width: 100%;
        height: auto;
    }

    .banner p {
        font-size: 18px;
        margin-top: 10px;
    }

    footer {
        padding: 20px;
        display: flex;
        flex-direction: column;
        /* Cambio importante: ahora los elementos se apilarán verticalmente */
        align-items: center;
        text-align: center;
    }

    /* Logo y redes sociales */
    .footer-left img {
        max-height: 50px;
    }

    .social-icons a {
        margin-right: 10px;
    }

    /* Enlaces de términos y copyright */
    .footer-center {
        margin-top: 20px;
        margin-bottom: 20px;
        /* Espacio entre los enlaces */
    }

    .footer-center a {
        color: #ffffff;
        text-decoration: none;
        margin-bottom: 10px;
        /* Espacio entre los enlaces */
    }

    /* Derechos de autor */
    .footer-right {
        font-size: 14px;
        margin-top: 20px;
    }
}