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

.contenido{
    margin-top: 5px;
    padding: 20px;
}

.container_logo_contacto { 
    background-image: url('../img/contacto.jpg');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    width: 900px;
    height: 450px;
    margin: 0 auto;
}

/* Título */
.titulo_contacto{
    text-transform: uppercase;
    text-align: center;
    color: #003752;
    font-size: 40px;
    margin-top: 60px;
    margin-bottom: 40px;
}

/* Contenedor principal */
.content_contacto{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    color: #858585;
}

/* Cada bloque de contacto */
.contacto{
    width: 100%;
    max-width: 600px;
}

.contacto h2{
    text-transform: uppercase;
    text-align: center;
    color: #003752;
    font-size: 30px;
    margin-bottom: 30px;
}

/* Texto */

.contacto_descripcion{
    min-height: 220px;
}

/* Mapa */
.iframe{
    width: 100%;
}

iframe{
    width: 100%;
    height: 450px;
    border: 0;
}

/* ========================= */
/* TABLET */
/* ========================= */

@media screen and (max-width: 991px){

    .container_logo_contacto{
        height: 300px;
    }

    .content_contacto{
        flex-direction: column;
        align-items: center;
    }

    .contacto{
        max-width: 700px;
        width: 90%;
    }

    .contacto h2{
        font-size: 24px;
    }

    .contacto_descripcion{
        font-size: 15px;
    }

    iframe{
        height: 320px;
    }
}

/* ========================= */
/* MÓVIL */
/* ========================= */

@media screen and (max-width: 480px){
    .container_logo_contacto{
        width: 100%;
        height: auto;
        aspect-ratio: 2/1;
        background-size: cover;
      }
    

    .contenido{
        padding: 10px;
    }

    .titulo_contacto{
        font-size: 28px;
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .contacto{
        width: 100%;
    }

    .contacto h2{
        font-size: 22px;
        margin-bottom: 20px;
    }

    .contacto_descripcion{
        font-size: 14px;
        line-height: 1.6;
    }

    iframe{
        height: 250px;
    }
}