body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
}

/* CONTENEDOR GENERAL CENTRADO */
.contenedor {
    width: 100%;
    display: flex;
    justify-content: center;
}

.ancho-max {
    width: 100%;
    max-width: 1350px;
    box-sizing: border-box;
}

/* 1) ENCABEZADO (95px) */
header {
    height: 95px;
    background-color: #CCE3FF;
    display: flex;
    align-items: center;
    padding-left: 20px;
}

header img {
    height: 70px;
}

/* 2) CUERPO — IMAGEN CENTRADA CON SEPARACIÓN */
.banner {
    width: 100%;
    margin-top: 20px;   /* separación del encabezado */
    margin-bottom: 20px; /* separación del pie superior */
    display: flex;
    justify-content: center;
}

.banner img {
    width: 80%;
    max-width: 1350px;
    height: auto;
    display: block;
}

/* 3) PIE SUPERIOR (120px) */
.pie-superior {
    height: 120px;
    background-color: #CCE3FF;
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.pie-superior a {
    font-size: 22px;
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.pie-superior a:hover {
    text-decoration: underline;
}

/* -------------------------------------------------- */
/* 🚀 RESPONSIVE PARA MÓVILES */
/* -------------------------------------------------- */

@media (max-width: 768px) {

    header {
        height: 75px;
        padding-left: 10px;
    }

    header img {
        height: 50px;
    }

    .banner img {
        width: 95%;     /* se amplía para móviles */
    }

    .pie-superior {
        height: 100px;
        padding-left: 10px;
    }

    .pie-superior a {
        font-size: 18px;
    }
}

@media (max-width: 480px) {

    header {
        height: 65px;
        padding-left: 10px;
    }

    header img {
        height: 45px;
    }

    .banner img {
        width: 100%;   /* móvil chico = pantalla completa */
    }

    .pie-superior {
        height: 90px;
    }

    .pie-superior a {
        font-size: 16px;
    }
}