

/* Estilos generales */
.contactanos-mapa iframe {
    width: 100%;
    height: 500px;
}

.contactanos-box {
    background: #0fa759;
    color: white;
}

.contactanos-info {
    max-width: 1400px;
    margin: auto;
    padding: 50px 20px; /* Ajuste de padding para dispositivos pequeños */
}

.contactanos-info-flex {
    display: flex;
    flex-wrap: wrap; /* Permite que los elementos se acomoden en dispositivos pequeños */
    justify-content: center;
    text-align: center;
}

.contactanos-uni {
    width: 30%;
    margin: 10px 10px;
}

.contactanos-uni i {
    font-size: 50px;
    padding: 10px;
}

.contactanos-uni h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.contactanos-uni h3 {
    font-size: 20px;
}

.contactanos-uni a {
    text-decoration: none;
    color: white;
    text-decoration: solid;
}

/* Estilos para el formulario */
.formulario {
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url(../imagenes/colegio/colegio.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 1px;
}

.formulario-contenedor {
    width: 90%; /* Ajuste de ancho para dispositivos pequeños */
    max-width: 500px;
    padding: 30px;
    margin: auto;
    margin-top: 50px;
    border-radius: 4px;
    color: white;
}

.formulario-contenedor h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: white;
}

.formulario-titulo h2 {
    text-align: center;
    font-size: 32px;
}

label {
    font-size: 18px;    
}

.controls {
    width: 100%;
    padding: 15px;
    border-radius: 30px;
    margin-bottom: 16px;
    border: 1px solid;
    font-size: 16px;
}

.opinion {
    height: 150px;
}

.formulario-contenedor .enviar {
    width: 100%;
    border: none;
    padding: 12px;
    color: white;
    margin: 16px 0;
    font-size: 16px;
}

.enviar {
    width: 100%;
    background: #e0af60;
    padding: 10px;
    border-radius: 4px;
    transition: .2s;
}

.enviar:hover {
    background: #0fa759;
    transition: .2s;
    cursor: pointer;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .contactanos-info-flex {
        flex-direction: column;
        align-items: center;
    }

    .contactanos-uni {
        width: 80%;
        margin: 15px 0;
    }

    .formulario-contenedor {
        width: 95%;
        padding: 20px;
    }

    .formulario-titulo h2 {
        font-size: 28px;
    }

    .contactanos-mapa iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contactanos-uni h2 {
        font-size: 18px;
    }

    .contactanos-uni h3 {
        font-size: 16px;
    }

    .formulario-titulo h2 {
        font-size: 24px;
    }

    .controls {
        font-size: 14px;
        padding: 12px;
    }

    .opinion {
        height: 120px;
    }
}
