.container-contacto {
    background-color: #f8f9fa;
    /* Fondo limpio y profesional */
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    min-height: 800px;
    width: 100%;
}


.div-contacto {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    color: #002b5c;
}

.div-contacto h2 {
    text-align: center;
}

.div-horarios {
    margin-top: 30px;
    text-align: center;
}

.div-contacto a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-left: 20px;
    color: #002b5c;
}

.txt-contacto {
    margin: 10px;
}

.div-horarios .txt-contacto p {
    margin-bottom: 10px;
}

.div-direccion i {
    color: red;
    font-size: 40px;
    font-weight: bold;
}

.container-direccion-mapa {
    min-height: 450px;
    align-items: center;
}


.div-mapa iframe {
    width: 550px;
    height: 350px;
    border: 0;
}


.container-tel-correo,
.container-direccion-mapa {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 40px;
}


.div-telefonos-contacto i {
    color: red;
    font-size: 25px;
    font-weight: bold;

}

.div-correos-contacto i {
    color: red;
    font-size: 35px;
    font-weight: bold;
}

.div-whats-contacto i {
    color: #25D366;
    font-size: 35px;
    font-weight: bold;
}



.container-contacto-form {
    display: flex;
    margin: 30px 0px;
}


.contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 350px;
    max-width: 550px;
    background: white;
    padding: 30px  40px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    margin: 20px 10px;
    text-align: center;
}

.contact-form label {
    display: block;
    margin: 10px 0 5px;
    font-size: 20px;
    font-weight: bold;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 45px;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.hidden {
    display: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #28a745;
}

.contact-form input[style*="border-color: red"],
.contact-form select[style*="border-color: red"],
.contact-form textarea[style*="border-color: red"] {
    border-color: red;
    background-color: #fdd;
}


#contactServiceForm {
    display: flex;
    flex-direction: column;
    width: 100%; /* Asegura que ocupe todo el ancho disponible del contenedor */
    height: 100%; /* Asegura que ocupe todo el alto disponible del contenedor */
    box-sizing: border-box; /* Incluye el padding y los bordes dentro del tamaño total */
}

#contactServiceForm .boton {
    max-width: 200px;
}


.container-contacto-form .image img {
    height: 100%;
    width: 100%;
    max-width: 550px;
}

.container-contacto-form  .image img:hover {
    transform: scale(1);
}



@media screen and (max-width:575px) {

    .div-mapa {
        width: 100%;

    }

    .div-mapa iframe {
        width: 100%;
        height: 350px;
        border: 0;
    }

    .div-horarios {
        margin-top: 10px;
    }

}


@media screen and (max-width:650px) {
    .container-contacto-form{
        flex-direction: column;
    }

}