body {
    margin: 0;
    padding: 0;
    background-color: white;
    overflow-x: hidden;
}

header {
    width: 100%;
    height: 75px;
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    column-gap: 50%;
    background-color: black;
    z-index: 2;
}

#logo {
    cursor: auto;
}

img {
    width: 5%;
    height: 70px;
    cursor: pointer;
}

#opciones {
    width: 30%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

#opcion1, #opcion2, #opcion3 {
    width: 35%;
    height: 75px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    font-family: Helvetica;
    color: white;
    cursor: pointer;
}

#opcion1:hover, #opcion2:hover, #opcion3:hover {
    background-color: goldenrod;

    transition-duration: 0.5s;
}

section {
    width: 100%;
    height: 725px;
}

.caja_general {
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 4%;
}

.caja_pregunta1 {
    width: 30%;
    height: 250px;
    background: linear-gradient(rgba(0, 0, 0, 0.356), rgba(0, 0, 0, 0.356)), url("../img/contactar.jpeg") no-repeat center center;
    background-size: cover;
    font-family: Verdana;
}

.caja_pregunta2 {
    width: 30%;
    height: 250px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img/tramites.PNG") no-repeat center center;
    background-size: cover;
    font-family: Verdana;
}

.caja_pregunta3 {
    width: 30%;
    height: 250px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../img/cancelar.webp") no-repeat center center;
    background-size: cover;
    font-family: Verdana;
}

.caja_pregunta4 {
    width: 30%;
    height: 250px;
    background: linear-gradient(rgba(0, 0, 0, 0.356), rgba(0, 0, 0, 0.356)), url("../img/areas.jpg") no-repeat center center;
    background-size: cover;
    font-family: Verdana;
}

.caja_pregunta5 {
    width: 30%;
    height: 250px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../img/precios.jpg") no-repeat center center;
    background-size: cover;
    font-family: Verdana;
}

.titulo {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 5.5%;
    font-size: 1.5em;
    font-family: Helvetica;
    text-align: center;
    color: black;
}

.pregunta {
    width: 100%;
    height: 100px;
    text-align: center;
    color: goldenrod;
}

.respuesta {
    width: 90%;
    margin-top: 40px;
    margin-left: 5%;
    text-align: justify;
    color: white;
}

.contenedor {
    width: 100%;
    height: 100px;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    font-family: Helvetica;
    font-size: 1.25em;
    text-align: center;
    background-color: black;
    color: white;
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.541);
}

.contenedor a {
    text-decoration: none;
    color: white;
}

.contenedor a:hover {
    text-decoration: none;
    color: goldenrod;
}

.contenedor img {
    width: 15%;
    height: 40px;
    cursor: pointer;
}

#redes {
    font-size: 1.5em;
}

#logo_footer {
    width: 100%;
    height: 90px;
    cursor: auto;
}

@media (max-width:750px) {    
    img {
        width: 7%;
    }
    
    section {
        height: 600px;
    }
    
    .titulo {
        font-size: 1em;
    }

    .caja_pregunta {
        font-size: 0.8em;
    }

    .pregunta {
        height: 50px;
    }

    .respuesta {
        font-size: 0.8em;
    }
    
    .contenedor {
        font-size: 0.9em;
    }
}