body {
    margin: 0;
}
.banner {
    width: 100vw;
    margin: 0;
    filter: brightness(0.95);
}
p {
    font-family: Montserrat;
    font-weight: 300;
}
h2 {
    font-family: Montserrat;
    font-weight: 900;
    text-transform: uppercase;
}
h3 {
    font-family: Montserrat;
    font-weight: 300;
    padding: 2px 40px 2px 2px;
    background-color: #235982;
    color: white;
}
html {
    scroll-behavior: smooth;
}
/*Menu*/
.nav-container {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px 50px;
    background: transparent;
    transition: background 0.3s ease, color 0.3s ease;
    z-index: 1000;
}
.nav-container.abajo {
    background: white;
}
.nav-links {
    display: flex;
    gap: 40px;
    margin: 0 auto;
}
/* Links visibles en pantallas grandes */
.nav-links a {
    color: white;
    font-family: Montserrat;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-links a:hover {
    color: #e0e0e0;
}
.nav-container.abajo .nav-links a {
    color: black;
}
/* Icono de hamburguesa */
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
    transition: color 0.3s ease;
}
.nav-container.abajo .hamburger {
    color: black;
}
/*menu celu*/
.mobile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    background: white;
    width: 60%;
    padding: 15px;
    box-shadow: -2px 2px 5px rgba(0,0,0,0.2);
    z-index: 999;
}
.mobile-menu a {
    margin-bottom: 15px;
    color: black;
    font-family: Montserrat;
    text-decoration: none;
}
.mobile-menu.active {
    display: flex;
}
.mobile-menu a:hover {
    color: #235982;
}

  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }
    .hamburger {
      display: block;
    }
    .nav-container {
      justify-content: space-between;
    }
}
/*sección quiénes somos*/
.quienes-somos-section {
    padding: 50px 20px;
    background-color: white;
}
.quienes-somos-contenido {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.quienes-somos-contenido img {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.quienes-somos-contenido .texto {
    flex: 1;
    min-width: 280px;
}
.quienes-somos-contenido h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #235982;
}
.quienes-somos-contenido p {
    font-size: 1rem;
    line-height: 1.6;
    color: #545454;
}
@media (max-width: 768px) {
    .quienes-somos-contenido {
      flex-direction: column; /* Pone imagen arriba y texto abajo */
      text-align: center;
    }
    .quienes-somos-contenido img {
      max-width: 90%;
    }
  
    .quienes-somos-contenido h2 {
      font-size: 1.8rem;
    }
}
/*sección servicios*/
.servicios {
    background-color: #235982;
    padding: 50px 20px;
}
.servicios-contenido {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
    flex-wrap: wrap;
}
.servicios-texto {
    flex: 1;
    min-width: 280px;
}
.servicios-texto h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 30px;
    text-wrap: balance;
}
.servicios-grid ul {
    padding: 10% auto 10% 5%;
    margin: 0;
    margin-bottom: 30px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 30px;
}
.servicios-grid li {
    text-align: left;
    font-size: 1.2rem;
    font-family: Montserrat;
    font-weight: 500;
    color: #235982;
    background-color: white;
    font-style: none;
    padding: 2px;
    text-align: center;
}
.servicios-texto p {
    color: white;
    line-height: 1.6;
    font-size: 1rem;
}
.servicios-imagen {
    max-width: 430px;
    flex: 1;
}
.servicios-imagen img {
    width: 100%;
    object-fit: cover;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    margin-bottom: 5px;
    margin-left: 0px;
}
@media (max-width: 768px) {
    .servicios-contenido {
      flex-direction: column;
      text-align: center;
    }
    .servicios-imagen {
        max-width: 100%;
    }
    .servicios-imagen img {
        margin: 0 auto;
        width: 100%;
    }
    .servicios-grid {
      grid-template-columns: 1fr;
      gap: 10px;
    }
    .servicios-texto h2 {
        font-size: 40px;
    }
}
/*sección formulario*/
.form-consulta {
    margin: 5% 5%;
    text-align: center;
}
.form-consulta h2 {
    color: #235982;
    font-size: 40px;
}
.form-consulta p {
    margin-bottom: 2%;
}
form {
    background-color: #235982;
    margin: auto;
    padding: 20px 0;
    max-width: 60%;
    border-color: #545454;
}
input {
    width: 80%;
    padding: 6px 10px;
    margin: 2% 5%;
}
.submit-button {
    background-color: #235982;
    color: white;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 1em;
    border-color: white;
    width: 40%;
}
/*botones*/
.botones-contacto {
    margin-top: 30px;
    text-align: center;
}
.botones-contacto p {
    font-family: Montserrat;
    font-size: 500;
}
.botones-contacto a {
    display: inline-block;
    padding: 10px 20px;
    margin: 4px 15%;
    border-radius: 40px;
    font-weight: 500;
    color: white;
    text-decoration: none;
    font-family: Montserrat;
    font-size: 1em;
    transition: background-color 0.3s ease;
}
.boton-whatsapp {
    background-color: #25D366;
}
.boton-whatsapp:hover {
    background-color: #1DA851;
}
.boton-correo {
    background-color: #D64545;
}
.boton-correo:hover {
    background-color: #B53434;
}
/*div*/
.divisor {
    width: 100%;
    height: 1px;
    margin: 30px 0 10px 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    background-color: transparent;
}
/*Sección preguntas*/
.preguntas {
    padding: 4% 8%;
}
.contenedor-preguntas {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.columna-izquierda {
    flex: 1 1 300px;
    margin: 0;
    font-size: 30px;
    color: #235982;
}
.columna-derecha {
    flex: 2 1 400px;
}
.pregunta {
    margin-bottom: 20px;
}
.pregunta h3 {
    font-family: Montserrat;
    font-weight: 300;
    padding: 8px 16px;
    background-color: #235982;
    color: white;
    border-radius: 4px;
    margin-bottom: 8px;
}
.pregunta p {
    font-family: Montserrat;
    font-weight: 300;
    margin: 0 0 12px 0;
}
/*Sección footer*/
.footer {
    width: 100vw;
    position: relative;
    overflow: hidden;
}
.footer-content {
    position: relative;
    width: 100%;
}
.footer-banner {
    width: 100%;
    display: block;
}
.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
    pointer-events: none;
}
.footer-icons {
    position: absolute;
    top: 50%;
    right: 5%;
    display: flex;
    gap: 20px;
    align-items: center;
    transform: translateY(-50%);
    z-index: 2;
    width: auto;
}
.footer-icons img{
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform 0.2s ease;
    border-radius: 50%;
}
.footer-icons img:hover {
    transform: scale(1.1);
}
@media (min-width: 768px) {
    .footer-icons img {
      width: 60px;
      height: 60px;
    }
}