.header-general {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.header-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/Imagenes/contactoHeader.jpg') no-repeat center center/cover;
    filter: blur(3px); 
    z-index: 0;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 62, 128, 0.6);
    z-index: 1;
}

.header-content {
    position: absolute;
    top: 40%;
    left: 15%;
    transform: translateY(-50%);
    color: white;
    text-align: left;
    z-index: 2;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(35px); 
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-content h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 5px;
    font-family: 'VTF Justina', sans-serif;
    opacity: 0; 
    animation: fadeInUp 1s ease-out forwards; 
}
    
.underline {
    width: 100px;
    height: 3px;
    background-color: #48b2e8;
    margin-bottom: 20px;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(650px); 
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.breadcrumb {
    font-size: 15px;
    color: #ffffff;
    opacity: 0.8;
    display: flex;
    align-items: center;
    margin-top: 5px;
    font-family: 'Slate', sans-serif;
    opacity: 0; 
    animation: fadeInRight 1s ease-out 0.5s forwards;
}

.breadcrumb i{
    font-size: 15px; 
    margin: 0 8px; 
    color: #48b2e8; 
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.breadcrumb a:hover {
    color: #F8A22F;
}

.breadcrumb span {
    margin-left: 5px;
}

/*-------------------------SECTION DE CONTACTO-------------------*/

.seccion-contacto {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 30px;
    background-color: #ffffff;
}

.contenedor-contacto {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    max-width: 1500px;
    width: 100%;
    gap: 30px;
}

.contacto-mapa {
    flex: 1;
    position: relative;
    height: 800px;
    border-radius: 10px;
    overflow: hidden;
}

.contacto-mapa iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.contacto-info {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    right: 0;
    background: rgba(44, 181, 233, 0.9);
    color: white;
    padding: 10px 20px;
    padding-bottom: 50px;
    max-width: 520px;
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.contacto-info.visible{
    opacity: 1;
    transform: translateY(0);
}

.subrayado-mapa{
    width: 100px;
    height: 4px;
    background-color: #1F4F9C;
    margin-bottom: 30px;
    margin-top: 30px;
}

.contacto-info h2 {
    font-size: 30px;
    margin-bottom: 10px;
    font-family: 'VTF Justina', sans-serif;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(90px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.contacto-info h2.visible{
    opacity: 1;
    transform: translateY(0);
}

.contacto-info p {
    font-size: 16px; 
    font-weight: normal;
    margin: 10px 0; 
    font-family: 'Slate', sans-serif;
    line-height: 1.2;
}

.contacto-info p strong {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

.contacto-info .info-contenedor {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.info-columna {
    flex: 1; 
}

.contacto-form {
    flex: 1;
    text-align: left;
    padding: 80px 0;
    padding-right: 100px;
    max-width: 40%;
}

.contacto-form h2 {
    font-size: 40px;
    color: #1F4F9C;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: 'VTF Justina', sans-serif;
    line-height: 1.2;
    margin-top: 0;
    max-width: 80%;
    opacity: 0;
    transform: translateX(-200px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.contacto-form h2.visible{
    opacity: 1;
    transform: translateX(0);
}

.texto-arriba-titulo {
    font-size: 14px;
    color: #57B5E3;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'VTF Justina', sans-serif;
    display: block;
}


.subrayado-contacto {
    width: 100px;
    height: 4px;
    background-color: #57B5E3;
    margin-bottom: 30px;
    margin-top: 30px;
}

.contacto-form form {
    display: flex;
    flex-direction: column;
}

.contacto-form input,
.contacto-form textarea {
    width: 75%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 14px;
    background-color: #fff;
    font-family: 'Slate', sans-serif;
}

.contacto-form textarea {
    height: 250px;
}

.boton-enviar-formu {
    background: linear-gradient(90deg, #FFA600, #FF6F00);
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 70px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    align-self: flex-start;
}

.boton-enviar-formu:hover {
    background: linear-gradient(90deg, #FF6F00, #FFA600);
}

@media screen and (max-width: 768px) {
    .seccion-contacto {
        flex-direction: column;
        align-items: center;
        padding: 20px 10px;
    }

    .contenedor-contacto {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 0;
    }

    .contacto-mapa {
        width: 100%;
        height: 600px; 
        height: 450px !important; 
    }

    .contacto-mapa iframe {
        width: 100%;
        height: 100%;
        min-height: 250px; 
    }

    .contacto-info {
        width: 90%;
        background: rgba(44, 181, 233, 0.95);
        color: white;
        padding: 20px;
        margin: 30px auto 20px; 
        border-radius: 10px;
        text-align: center;
        position: relative;
    }

    .contacto-info h2 {
        font-size: 22px;
        text-align: center;
        margin-bottom: 10px;
    }

    .contacto-info p {
        font-size: 14px;
        text-align: center;
    }

    .contacto-info p strong {
        font-size: 14px;
        font-weight: bold;
    }

    .subrayado-mapa {
        width: 100px;
        height: 3px;
        margin: 10px auto;
    }

    .info-contenedor {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info-columna {
        width: 100%;
    }

    .contacto-form {
        width: 100%;
        max-width: 90%;
        padding: 20px;
        text-align: center;
    }

    .contacto-form h2 {
        font-size: 22px;
        text-align: center;
        max-width: 100%;
    }

    .contacto-form input,
    .contacto-form textarea {
        width: 100%;
        padding: 12px;
        margin-bottom: 10px;
        font-size: 14px;
    }

    .boton-enviar-formu {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
}

