
html, body{
    font-family: "Roboto", sans-serif;
    background-color: #f9f9f9;
    width: 100vw;
    overflow-x: hidden;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;  
}


/*BOTON VOLVER ARRIBA*/

#scrollTopBtn {
    
    position: fixed; /* Se mantiene fijo en la pantalla */
    bottom: 20px;    /* Lo posiciona 20px desde la parte inferior */
    left: 20px;      /* Lo coloca 20px desde la izquierda */
    width: 50px;
    height: 50px;
    background-color: #db6415;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: none; /* Oculto por defecto */
    transition: opacity 0.3s ease-in-out;
    z-index: 9999;
    overflow-x: unset;
}


/* CABECERA */

.logo-menu{
    display: flex;
    justify-content:space-around;
    align-items: center;
    margin-top: 14px;
}

.menu__lista {
    display: flex;
}

.menu__lista li{
    list-style: none;
    margin-right: 50px;
    cursor: pointer;
}

.menu__lista li a{
    text-decoration: none;
    font-size: 14px;
    color: #0e3a5d;
    font-weight: 500;
    cursor: pointer;

    padding: 5px 0;
    position: relative;
    display: inline-block;
}

@media (max-width: 1366px){
    .menu__lista li a{
        font-size: 15px;
    }
}

/* Estilo para el botón de hamburguesa */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.hamburger .line {
    height: 4px;
    background-color: #000000; /* Color blanco para las rayas */
    border-radius: 5px;
}

/* Mostrar el botón de hamburguesa en pantallas pequeñas */
@media (max-width: 430px) {
    .hamburger {
        display: flex; /* Mostrar el botón de hamburguesa */
    }

    .menu {
        display: none; /* Ocultamos el menú inicialmente */
        position: absolute;
        top: 85px; /* El menú aparece debajo del logo */
        left: 0;
        right: 0;
        background-color: #000000f1; /* Fondo negro para el menú */
        color: #fff; /* Texto blanco */
        padding: 30px 0; /* Espaciado en el menú */
        text-align: center; /* Centrar el texto */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Sombra suave */
        opacity: 0; /* Empezamos con opacidad 0 para la animación */
        pointer-events: none; /* Evitar interacciones mientras está oculto */
        transition: opacity 0.3s ease-in-out; /* Animación suave */
    }

    .menu.open {
        display: flex; /* Cuando está abierto, lo mostramos como flex */
        opacity: 1; /* Opacidad completa cuando se despliega */
        pointer-events: all; /* Habilitar interacciones */
    }

    .menu__lista {
        flex-direction: column; /* Los ítems del menú se apilan verticalmente */
        padding: 0;
        margin: 0 auto;
        
    }

    .menu__lista li {
        margin-bottom: 20px; /* Separación entre los elementos */
    }

    .menu__lista li a {
        font-size: 18px; /* Aumentamos el tamaño del texto para móviles */
        color: #fff; /* Texto blanco */
        font-weight: 600; /* Font-weight más grueso */
        text-decoration: none; /* Quitamos el subrayado */
        position: relative;
        display: inline-block;
    }

    .menu__lista li a:hover {
        color: #f39c12; /* Color amarillo-naranja en hover */
    }

    .logo-menu {
        justify-content: space-between; /* Espaciamos el logo y el botón */
        padding: 0 10px;
    }

    .logo {
        margin-bottom: 10px;
        width: 200px; /* Ajustamos el tamaño del logo */
        height: 60px;
    }
}



/*  */


/*EFECTO SUBRAYADO MENU */
.menu__lista a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #0e3a5d;
    transition: width 0.3s ease-in-out;
}

.menu__lista a:hover::after {
    width: 100%;
}

/* SLIDER-BANNER */

.slide{
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../img/hombre-laptop-derecha-oscuro.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;    
}

main section .slide__info{
    margin-left: 540px;
    margin-bottom: 30px;
    width: 300px;
    font-weight: 500;
    color: white;
}

main section .slide__info h3{
    font-size: 45px;
    margin-bottom: 20px;
}

main section .slide__info .t1{
    font-size: 27px;
    margin-bottom: 14px;
}

main section .slide__info .t2{
    font-weight: 300;
    font-size: 18px;
}


.container__typing {
    color: #fff;
  }
  
  .line1, .line2 {
    display: inline-block;
    width: 0;
    white-space: nowrap;
    overflow: hidden;
  }
  
  /* Primera línea */
  .line1 {
    border-right: 3px solid;
    animation: 
      typing-animation 1.5s steps(19) forwards,
      cursor-blink 0.5s step-end 3,
      remove-cursor 0s 1.5s forwards;
  }

  
  /* Segunda línea - Inicia sin cursor */
  .line2 {
    border-right: 0;
    animation: 
      typing-animation 1.5s steps(15) 1.5s forwards,
      add-cursor 0s 1.5s forwards, /* Añade cursor justo al empezar */
      cursor-blink 0.5s step-end infinite 1.5s,
      remove-cursor 0s 3s forwards;
  }
  
  @keyframes typing-animation {
    to { width: 100%; }
  }
  
  @keyframes cursor-blink {
    50% { border-color: transparent; }
  }
  
  @keyframes add-cursor {
    to { border-right: 3px solid; }
  }
  
  @keyframes remove-cursor {
    to { 
      border-right: 0;
      padding-right: 0;
    }
  }
  
  /* Texto final */
  .t2 {
    opacity: 0;
    animation: fadeIn 0.5s 3s forwards;
  }
  
  @keyframes fadeIn {
    to { opacity: 1; }
  }




@media (max-width: 1366px){

    main section .slide__info{
        width: 300px;
        margin-left: 220px;
        font-weight: 500;
        color: white;
    }
    
    main section .slide__info h3{
        font-size: 45px;
    }
    
    main section .slide__info .t1{
        font-size: 28px;
    }
    
    main section .slide__info .t2{
        font-weight: 300;
        font-size: 21px;
    }


}


@media (max-width: 430px) {

    .slide__info h3{
        margin-top: 60px;
    }

    .line1{
        margin-top: 0px;
    }

    .line2{
        margin-top: -30px;
    }

    .slide{
        flex-direction: column;
        background-image: url(../img/fondo_responsive.webp);
        background-size: cover;
    }
    
  
    main section .slide__info{
        padding: 40px;
        margin: 0;
        width: 400px;
       
    }

    main section .slide__info .t1{
        margin-top: 30px;
    }
    
    main section .slide__info .t2{
        margin-top: 30px;
    }

    .slide{
        height: 550px;
    }

    .slide #Galeria{
        display: none;
    }
}




/* TITULO */

.titulo h3{
    margin-top: 60px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 24px;
    color: #0e3a5d;
    font-weight: 500;
}

@media (max-width: 430px){
    .titulo h3{
        text-align: center;
    }
}

/* CERTIFICACIONES */

.certificaciones{
    height: 700px;   
    display: flex;
    justify-content: center;
    align-items: center;
}

.certificaciones__contenedor{
    width: 1200px;
    height: 550px;
    background-color: rgba(82, 0, 0, 0);
    margin: 100px 0px;
    box-shadow: 0 4px 20px rgba(80, 80, 80, 0.12);
    border: 1px rgba(131, 131, 131, 0.164) solid; 
    border-radius: 20px;
}

.certificaciones__titulo{
    text-align: center;
    margin-top: 65px;
    margin-bottom: 60px;
    font-size: 44px;
    font-weight: 800;
    color: #0e3a5d;

    position: relative;
}

.certificaciones__titulo::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 120%;    
    transform: translate(-50%, -50%);
    width: 20%;
    height: 4px; /* Grosor de la línea */
    background-color: rgb(230, 127, 32); /* Color de la línea */
}

.certificaciones__contenedor p{
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: rgb(138, 138, 138);
}

.certificaciones__certificacion{
    overflow: hidden;
    position: relative;
}

.certificaciones__slider{    
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* SLIDER */
    width: calc(300px * 8);
    animation: scroll 10s linear infinite;
}

.certificaciones__certificacion img{
    object-fit: contain;
    width: 300px;
    height: 300px;  
}

/* SLIDER CERTIFICACIONES */
@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-300px * 4)); } /* Desplaza 4 imágenes (800px) */
}

@media (max-width: 430px){

    .certificaciones{
        height: 700px;
    }

    .certificaciones__certificacion{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding-left: 20px;
    }

    .certificaciones__certificacion img{
        width: 150px;
        height: 170px;
        text-align: center;
    }

    .certificaciones__titulo{
        margin-top: 35px;
    }

    .certificaciones__contenedor{
        width: 100vw;

    }
}

@media (max-width: 430px) {
    .certificaciones__slider {
        width: calc(150px * 8); /* Se ajusta a 8 imágenes en responsive */
        animation: scroll-responsive 10s linear infinite;
    }

    /* Nueva animación ajustada para responsive */
    @keyframes scroll-responsive {
        from { transform: translateX(0); }
        to { transform: translateX(calc(-150px * 4)); } /* Desplaza 4 imágenes */
    }
}


/* SERVICIOS */

.servicios {
    height: 720px;
    margin-top: 100px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Evita que el ::before sobresalga */
}

.servicios::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 110%;
    height: 110%;
    background-image: url('../img/fondo-ciudad-3.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    filter: blur(1px) brightness(42%);
    /* transform: scale(1.1); Expande la imagen para evitar bordes blancos */
    z-index: 1;
}

.servicios__contenedor {
    width: 100%;
    position: relative;
    z-index: 2; /* Asegura que el contenido esté por encima */
}

.servicios__titulo{
    position: relative;
    margin-bottom: 100px;
    color: white;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    font-family: Montserrat, sans-serif;
}

.servicios__titulo::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 120%;    
    transform: translate(-50%, -50%);
    width: 20%;
    height: 4px; /* Grosor de la línea */
    background-color: rgb(230, 127, 32); /* Color de la línea */
}

/* SERVICIOS TARJETAS */

.servicios__tarjetas {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 38px;
}

.servicios__tarjeta {
    width: 360px;
    height: 320px; 
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.servicios__tarjeta a {
    position: absolute;
    font-size: 17px;
    font-weight: 200;
    text-align: center;
    top: 82%;
    left: 5%;
    /* transform: translate(-50%, -50%); */
    /* background: rgba(247, 81, 4, 0.856); */
    background: transparent;
    padding: 6px;
    border: rgba(247, 81, 4, 0.856) 1px solid;
    border-radius: 7px;
    color: white;
    text-decoration: none;
    z-index: 2;
    transition: background-color 0.5s ease;
}

.servicios__tarjeta a:hover{
    background-color:  rgba(247, 81, 4, 0.856);
}

.servicios__tarjeta h3 {
    position: absolute;
    font-size: 25px;
    font-weight: 500;
    text-align: center;
    transform: translate(-50%, -50%);
    top: 60%;
    left: 50%;
    border-radius: 7px;
    color: white;
    text-decoration: none;
    z-index: 2;
    opacity: 0; /* Inicia con el texto invisible */
    visibility: hidden; /* Hace que el texto no ocupe espacio */
    transition: ease 0.3s, visibility 0s ease 0.5s; /* Retraso en la opacidad */
}

.servicios__tarjeta:hover h3 {
    opacity: 1; /* Hace que el texto sea visible */
    visibility: visible; /* Asegura que el texto ocupe espacio */
    transition: opacity 2s ease, visibility 0s ease; /* El texto aparece después del retraso */
}


.servicios__tarjeta {
    position: relative;
    width: 360px;
    height: 320px; 
    overflow: hidden;
    border-radius: 10px;
}

.servicios__tarjeta img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease; /* Solo la transición de transformación */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; /* Imagen detrás */
}

.servicios__tarjeta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0); /* Sin color inicialmente */
    transition: background 0.5s ease; /* Transición para el color de fondo */
    z-index: 2; /* Asegura que el filtro esté encima de la imagen */
}

.servicios__tarjeta:hover img {
    transform: scale(1.3); /* Escala la imagen al hacer hover */
}

.servicios__tarjeta:hover::before {
    background: rgba(0, 0, 0, 0.5); /* Oscurece la imagen con un filtro oscuro */
}

@media (max-width: 1366px){
    .servicios{
        height: 630px;
    }

    .servicios__titulo{
        margin-bottom: 70px;
    }
}


@media (max-width: 430px){

    .servicios{
        width: 100%;
        height: 990px;
    }

    .servicios::before{
        height: 100%;
    }
    
    .servicios__tarjetas{
        flex-direction: column;
    }

    .servicios__tarjeta{
        width: 315px;
        height: 220px
    }

    .servicios__titulo{
        margin-top: 0px;
    }
}

/* RESEÑAS */

.reseñas {
    height: 400px;
    margin: 0 auto 70px;
    display: flex;
    width: 80%;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }

  .reseñas__estatico {
    flex: 0 0 40%;
    background-color: #4a90e2;
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .reseñas__titulo {
    font-size: 24px;
    margin: 10px 0;
    font-weight: bold;
  }

  .reseñas__slider {
    flex: 1;
    position: relative;
    overflow: hidden;
    padding: 20px;
  }

  @media (max-width: 430px) {
    .reseñas__slider{
        padding: 0;
    }  
  }

  .reseñas__tarjetas {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .reseñas__tarjeta {
    min-width: 100%;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  .reseñas__contenido {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    text-align: center;
  }

  .reseñas__dots {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 8px;
  }

  .reseñas__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d1d1d1;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .reseñas__dot.active {
    background-color: #4a90e2;
  }

@media (max-width: 430px){
    .reseñas{
        height: 400px;
        flex-direction: column;
    }

    .reseñas__tarjeta{
        height: 120px;
    }
}



/* FOOTER */

.footer{
    height: 540px;
    width: 100%;
    /* background-color: #10263f; */
    background-color: #0e3a5d;
    display: flex;
    justify-content: space-evenly;
    padding-top: 60px;
    position: relative;
}

.footer h3{
    font-size: 23px;
    font-weight: 800;
}

.footer li{
    margin-bottom: 18px;
}

.footer ul{
    padding: 0;
}

.footer__servicios{
    text-decoration: none;   
    color: white;
}

.mapa__disolnet{
   border-radius: 10px;
    width: 450px;
    max-width: 100%;
    height: 350px;
    display: block;
}

@media (max-width: 430px){
    .mapa__disolnet{
        border-radius: 0%;
        width: 430px;
    }
}

@media (max-width: 428px){
    .mapa__disolnet{
        border-radius: 0%;
        width: 428px;
    }

}

.footer_servicios{
    width: 150px;
    color: white;
}

.footer_servicios h3{
    margin-bottom: 30px;
}


.footer__contactanos{
    width: 200px;
    color: white;
}

.footer__contactanos h3{
    margin-bottom: 30px;
}

.footer__contactanos img{
    margin-left: 6px;
    object-fit: contain;
    width: 32px;
    height: 32px;
}

/* Línea y derechos reservados */
.footer__derechos {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
}

.footer__linea {
    width: 100%;
    border-top: 1px solid white;
    margin-bottom: 50px;
}

.footer__derechos p {
    color: white;
    font-size: 16px;
    margin: 0;
}


@media (max-width: 430px){
    .footer{
        
        padding-top: 0px;
        flex-direction: column;
        height: 1130px;
        justify-content: start;
        align-items: center;
        gap: 20px;
    }

    .footer__contactanos ul{
        margin-top: 18px;
    }

    .footer_servicios{
        margin-top: 20px;
    }

    .footer_servicios ul{
        margin-top: 18px;
    }

    .footer__derechos p {
        margin-bottom: 70px;
    }
}
  
/* NOSOTROS */

/* SECCION QUIENES SOMOS */
.nosotros{
    margin-top: 20px;
    width: 100%; 
}

.nosotros p{
    font-size: 16px;
    font-family: 'MontSerrat', sans-serif;
    line-height: 1.5;
    letter-spacing: normal;
    color: #6b6b6b;
}

.quienesomos__titulo{
    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #0e3a5d;
    height: 100px;
    margin: 0;
    margin-top: 10px;
    font-weight: 400;
    font-size: 32px;
    color: white;
    margin-bottom: 70px;
    font-weight: 800;
}

.quienesomos__contenedor{
    display: flex;
    justify-content: center;
    align-items: center;
}

.quienesomos__texto{
    width: 560px;
    height: 400px;
}

.quienesomos__texto div{
    padding: 40px 30px;
}

.quienesomos__contenedor h2{
    margin: 0;
    font-size: 34px;
    font-weight: 500;
    color: #0e3a5d;
}

.quienesomos__contenedor p{
    margin: 0;

}

.quienesomos__imagen img{
    width: 560px;
    height: 400px;
    object-fit: contain;
    overflow: hidden;
}

@media (max-width: 430px){


    .quienesomos__imagen img{
        max-width:  100vw;
    }

    .quienesomos__contenedor{
        flex-direction: column;
        
    }

    .quienesomos__texto{
        width: 440px;
        height: 450px;
    }

}


/* SECCION MISION VISION */

.misionvision{
    background-color: #0e3a5d;
    margin-top: 80px;
}

.misionvision_contenedor{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    height: 600px;
}

.mision, .vision{
    width: 560px;
    background-color: white;
}

.mision h3, .vision h3{
    margin-bottom: 30px;
    color: #0e3a5d;
}

.mision div, .vision div{
    width: 540px;
    height: 440px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.mision_img, .vision_img {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
}

@media (max-width: 1366px){
    .misionvision_contenedor{
        height: 580px;
    }
}

@media (max-width: 430px){
    .misionvision_contenedor{
        
        flex-direction: column;
        height: 1000px;
    }

    .mision, .vision{
        width: 428px;
        
    }

    .mision div, .vision div{
        padding: 5px;
        width: 418px;
    }
}

@media (max-width: 380px){
    .misionvision_contenedor{
        
        flex-direction: column;
        height: 1000px;
    }

    .mision, .vision{
        width: 370px;
        
    }

    .mision div, .vision div{
        padding: 5px;
        width: 360px;
    }
}



/* SECCION VALORES */

/* SECCION VALORES */
.valores {
    margin: 80px auto; /* Usamos auto en los márgenes izquierdo y derecho para centrar el contenedor */
    width: 90%; /* Ancho adaptable */
    max-width: 1200px; /* Máximo ancho */
}

.valores__titulo {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px; /* Añadimos un margen inferior para separar del contenido */
    color: #0e3a5d;
}

.valores__texto {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Tres columnas de igual tamaño */
    gap: 30px; /* Espacio entre las cajas */
    justify-items: center; /* Centrar cada caja de texto */
    align-items: start; /* Alineación superior para las cajas */
    padding: 0 20px; /* Un pequeño padding para darle espacio a los lados */
}

.valores__textoCaja {
    width: 100%; /* Aseguramos que las cajas ocupen todo el ancho posible dentro de la columna */
    max-width: 220px; /* Limitar el tamaño máximo de cada caja */
    color: #0e3a5d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    text-align: start; /* Centrar el texto dentro de cada caja */
}

.valores__textoCaja h4 i{
    margin-bottom: 30px;
    margin-right: 10px;
}

/* Para pantallas pequeñas (como móviles), modificamos el layout */
@media (max-width: 768px) {
    .valores__texto {
        grid-template-columns: repeat(2, 1fr); /* Dos columnas en lugar de tres */
        gap: 20px; /* Reducimos el espacio entre las cajas */
    }
}

@media (max-width: 430px) {
    .valores__texto {
        grid-template-columns: 1fr; /* Una sola columna en pantallas más pequeñas */
    }
}




/* CONTACTANOS */

.container {
    display: flex;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 1000px;
    margin: 20px;
    
    margin: 40px auto;
  }

  .form-container {
    flex: 1;
    padding: 40px;
    min-width: 300px;
  }

  .form-container h2 {
    margin-bottom: 25px;
    color: #001f3f;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #74ebd5;
    box-shadow: 0 0 5px rgba(116, 235, 213, 0.6);
    outline: none;
  }

  .form-group textarea {
    resize: vertical;
    min-height: 100px;
  }

  .form-group button {
    background-color: #2a547e;
    color: white;
    font-weight: bold;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 30px;
    width: 150px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .form-group button:hover {
    background-color: #003366;
  }


  .contact-info {
    background: white;
    padding: 40px;
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .contact-info h3 {
    margin-bottom: 20px;
    color: #001f3f;
  }

  .contact-info p {
    margin: 10px 0;
    color: #333;
    font-size: 14px;
  }

  .contact-info i {
    margin-right: 10px;
    color: #007BFF;
  }

  .social-icons {
    margin-top: 20px;
  }

  .social-icons a {
    text-decoration: none;
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #ffffff;
    color: #0e3a5d;
    border-radius: 50%;
    margin-right: 10px;
    text-align: center;
    line-height: 35px;
    border: 1px solid #ccc;
    transition: background 0.3s;
  }

  .social-icons a:hover {
    background: #001f3f;
    color: #fff;
  }

  .contactanos__titulo{
    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #0e3a5d;
    height: 100px;
    margin: 0;
    margin-top: 10px;
    font-weight: 400;
    font-size: 32px;
    color: white;
    margin-bottom: 70px;
    font-weight: 800;
  }

  @media (max-width: 430px){
    .form-group input, textarea{
        max-width: 350px;
      }
  }

  @media (max-width: 380px){
    .form-group input, textarea{
        max-width: 300px;
      }
  }
 

  @media (max-width: 768px) {
    .container {
      flex-direction: column;
      width: 100%;
      overflow-x: hidden;
    }
  }

  @media (max-width: 430px) {
    .container {
      flex-direction: column;
      width: 100vw;
      overflow-x: hidden;
    }
  }



/* FIN CONTACTANOS */



/* SERVICIOS */

.serviciosinfo {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  
  .serviciosinfo__titulo{
    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #0e3a5d;
    height: 100px;
    margin: 0;
    margin-top: 10px;
    font-weight: 400;
    font-size: 32px;
    color: white;
    margin-bottom: 70px;
    font-weight: 800;
    
}
  
  .serviciosinfo_servicio {
    background-color: #ffffff;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    transition: transform 0.3s ease;
    align-items: stretch;
  }
  
  .serviciosinfo_servicio:hover {
    transform: translateY(-5px);
  }
  
  .serviciosinfo_servicio img {
    width: 300px;
    min-height: 100%;
    object-fit: cover;
   
    flex-shrink: 0;
    background-color: #e6eefc;
  }
  
  .contenido {
    padding: 30px;
    flex: 1;
  }
  
  .serviciosinfo_servicio h2 {
    color: #0a2540;
    font-size: 1.9rem;
    margin-bottom: 15px;
  }
  
  .serviciosinfo_servicio p {
    margin-bottom: 15px;
    text-align: justify;
    color: #333;
  }
  
  .serviciosinfo_servicio ul {
    padding-left: 20px;
    margin-bottom: 15px;
  }
  
  .serviciosinfo_servicio ul li {
    margin-bottom: 8px;
    color: #333;
  }
  
  @media (max-width: 768px) {
    .serviciosinfo_servicio {
      flex-direction: column;
    }
  
    .serviciosinfo_servicio img {
      width: 100%;
      height: auto;
    }
  
    .serviciosinfo_servicio {
      padding: 20px;
    }
  
    .serviciosinfo_servicio h2 {
      font-size: 1.5rem;
    }
  }

/* FIN SERVICIOS */
