.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

/* Estilos generales */
html {
  scroll-behavior: smooth; /* Desplazamiento suave */
  scroll-padding-top: 80px; /* Ajusta el desplazamiento para todo el documento */
}
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #ffffff;
  color: #4a90e2;
}
/* Animaciones personalizadas */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}
.fade-in-up.visible {
  opacity: 1;
}
.slide-in-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.slide-in-right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
.fade-in.visible {
  opacity: 1;
}
/* Asegura que las animaciones se apliquen solo a los elementos de our-services */
.our-services .fade-in-up,
.our-services .slide-in-left,
.our-services .slide-in-right,
.our-services .fade-in {
  opacity: 0;
}
.our-services .visible {
  opacity: 1;
}
/* Estilos para secciones de pantalla completa */
.full-screen-section {
  height: 100vh; /* Altura completa de la pantalla */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  margin: 0; /* Eliminamos márgenes para un diseño más limpio */
}
/* Estilos del botón de subir */
#topBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #00c4cc;
  color: #ffffff;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  transition: background 0.3s;
}
#topBtn:hover {
  background: #4a90e2;
}

/* ---------------------- */
/* Estilos del header.html */
header {
  background: #4a90e2;
  padding: 20px 10px 20px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed; /* Fija el header */
  width: 100%;
  top: 0;
  z-index: 1000;
  gap: 20px; 
}
header img {
  height: 50px;
  width: auto;
}
header div {
  padding: 0 20px;
  display: flex;
}
nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  padding: 0 20px;
}
nav a {
  color: #ffffff;
  margin: 0 15px;
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
nav a:hover {
  color: #ffffff;
  opacity: 0.8;
}
nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #ffffff;
  bottom: -5px;
  left: 0;
  transition: width 0.3s;
}
nav a:hover::after {
  width: 100%;
}

/* Estilos del index.html */
.hero {
  background-color: #1a3c87;
  padding: 180px 20px 100px 20px; /* Aumentamos padding-top para compensar el header */
  text-align: center;
  color: #ffffff;
  border-radius: 0 0 12px 12px;
}
.hero h1 {
  font-size: 2.5em;
  margin: 0;
}
.hero p {
  font-family: "Open Sans", sans-serif;
  color: #ffffff;
  font-size: 1.2em;
}
.hero a {
  background: #00C4CC;
  color: #ffffff;
  padding: 12px 32px;
  font-size: 1.2em;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s, transform 0.3s, color 0.3s;
  border-radius: 8px;
}
.hero a:hover {
  background: #ffffff;
  color: #4A90E2;
  transform: scale(1.05);
}
.services {
  padding: 50px 20px;
  text-align: center;
  background: #ffffff;
}
.services h2 {
  font-size: 2em;
  color: #4a90e2;
}
.service-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.service-card {
  background: #f5f5f5;
  padding: 20px;
  width: 200px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  transition: transform 0.3s;
  margin: 10px;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: transform 0.3s ease-in-out;
}
.service-card img:hover {
  transform: scale(1.05);
}
.service-card i {
  font-size: 2em;
  color: #4a90e2;
  display: block;
  margin-bottom: 10px;
}
.service-card h3 {
  font-size: 1.2em;
  margin: 10px 0;
  color: #4a90e2;
}
.service-card p {
  font-family: "Open Sans", sans-serif;
  color: #757575;
  font-size: 0.9em;
}
.service-card .button {
  background: #00c4cc;
  color: #ffffff;
  border: none;
  padding: 8px 15px;
  margin-top: 10px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s, transform 0.3s;
  border-radius: 8px;
}
.service-card .button:hover {
  background: #4a90e2;
  transform: scale(1.05);
  color: #ffffff;
  text-decoration: none;
}
.works {
  padding: 50px 20px;
  text-align: center;
  background: #f5f5f5;
}
.works h2 {
  font-size: 2em;
  color: #4a90e2;
}
.work-slider {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
}
.work-slider img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  display: none;
  transition: opacity 0.5s ease-in-out;
}
.work-slider img.active {
  display: block;
  opacity: 1;
}
.work-slider p {
  font-family: "Open Sans", sans-serif;
  color: #757575;
  margin-top: 10px;
}
.testimonials {
  padding: 50px 20px;
  text-align: center;
  background: #ffffff;
}
.testimonials h2 {
  font-size: 2em;
  color: #4a90e2;
}
.testimonial-slider {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
}
.testimonial-slider blockquote {
  display: none;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 8px;
  font-family: "Open Sans", sans-serif;
  color: #757575;
  font-style: italic;
  transition: opacity 0.5s ease-in-out;
}
.testimonial-slider blockquote.active {
  display: block;
  opacity: 1;
}
.testimonial-slider h4 {
  margin-top: 10px;
  font-family: "Poppins", sans-serif;
  color: #4a90e2;
  font-style: normal;
}
.cta-section {
  padding: 50px 20px;
  text-align: center;
  background: #4a90e2;
  color: #ffffff;
  margin-top: 3em;
  border-radius: 12px 12px 0 0;
}
.cta-section h2 {
  font-size: 2em;
}
.cta-section a {
  background: #ffffff;
  color: #4a90e2;
  padding: 12px 24px;
  font-size: 1.2em;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition:
    background 0.3s,
    color 0.3s;
}
.cta-section a:hover {
  background: #00c4cc;
  color: #ffffff;
}

/* Estilos del servicios.html */
.our-services {
  text-align: center;
  background: #ffffff;
  min-height: 100vw; /* Asegura que ocupe al menos la altura de la pantalla */
  padding: 80px 10px 50px 10px;
}
.service-intro {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  flex-wrap: wrap;
}
.service-text-intro {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  text-align: left;
  border-radius: 12px;
  transition: transform 0.3s;
  width: 45%;
  min-width: 300px;
  flex-grow: 1;
  max-width: 50%;
  min-height: 200px;
  font-family: 'Montserrat', sans-serif;
}
.service-text-intro h2 {
  font-size: 4rem;
  text-align: center;
}
.service-text-intro p {
  font-size: 2rem;
  text-align: center;
}
.service-image-intro {
  display: flex;
  justify-content: center;
  align-items: center; /* Centramos las imágenes verticalmente */
  width: 50%;
  border-radius: 12px;
  transition: transform 0.3s;
  margin: 10px;
  min-width: 300px;
  flex-grow: 1;
  padding: 10px; /* Añadimos padding para consistencia */
}
.service-image-intro img {
  width: 60%;
  height: auto; /* Permitimos que la altura se ajuste al contenido */
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.3s;
}
.service-text {
  display: flex;
  flex: auto;
  flex-direction: column;
  text-align: center;
  justify-content: center; /* Centramos el texto verticalmente */
  border-radius: 12px;
  transition: transform 0.3s;
  min-width: 300px;
  flex-grow: 1;
  max-width: 50%;
  min-height: 200px;
  padding: 20px; /* Añadimos padding para que el texto respire */
  font-family: 'Montserrat', sans-serif;
}
.service-text h3 {
  font-weight: 700;
  text-align: center;
  font-size: 4rem;
}
.service-text p {
  font-weight: 500;
  font-size: 2rem;
  text-align: center;
}
.service-image {
  display: flex;
  justify-content: center;
  align-items: center; /* Centramos las imágenes verticalmente */
  width: 50%;
  border-radius: 12px;
  transition: transform 0.3s;
  margin: 10px;
  min-width: 300px;
  flex-grow: 1;
  padding: 10px; /* Añadimos padding para consistencia */
}
.service-image img {
  width: 100%;
  height: auto; /* Permitimos que la altura se ajuste al contenido */
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.3s;
}
.service-divider {
  display: none; /* Eliminamos el divisor para el diseño full-screen */
}
.service-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 10px 0px 10px 0px;
  width: 100%;
}
.service-section {
  display: flex;
  flex-direction: row;
  background: #F5F5F5;
  border-radius: 20px;
  margin: 0;
  align-items: center;
  height: 100vh;
  box-sizing: border-box;
}
.gallery-full-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  text-align: center;
  background: #ffffff;
  font-size: 2rem;
}
.gallery-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 75%;
  height: 100vh; /* Altura ajustada para el slider dentro de la sección */
  position: relative;
}
.gallery-slider .slide-fotos { 
  width: 100%; 
  height: 100vh; /* Altura base adaptable */
  min-height: 400px; /* Mínimo para pantallas grandes */
  max-height: 600px; /* Máximo para evitar que crezca demasiado */
  overflow: hidden; 
  position: relative;
  border-radius: 1%;
}
.slide-fotos { 
  width: 100%; 
  height: 70vh; /* Altura base adaptable */
  min-height: 400px; /* Mínimo para pantallas grandes */
  max-height: 600px; /* Máximo para evitar que crezca demasiado */
  overflow: hidden; 
  position: relative;
  border-radius: 1%;
}
.slider--inner { 
  display: flex; 
  height: 100%; 
  transition: transform 0.6s ease-in-out; 
  width: 100%; /* Aseguramos que el ancho inicial sea 100% */
}
.slide-img { 
  width: 100%; 
  height: 100%; /* Ocupa toda la altura del contenedor */
  object-fit: cover; /* Llena el espacio */
  min-width: 0; /* Evita problemas con el flex */
}

/* Estilos del sobre-nosotros.html */
.about--hero {
  background: linear-gradient(135deg, #ffffff 70%, #f0f7f4 100%);
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
.about__title {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.about__subtitle {
  font-family: "Open Sans", sans-serif;
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 30px;
}
.about__cta-btn {
  background: var(--dark-color);
  color: var(--light-bg);
  padding: 14px 28px;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-size: 1.3rem;
  display: inline-block;
  transition: var(--transition);
}
.about__cta-btn:hover {
  background: #333333;
  transform: scale(1.03);
}
.about--benefits .about__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;
  align-items: center;
  flex: 1;
  padding: 60px 0px;
}
.about--history,
.about--values,
.about--team,
.about--cta {
  padding: 60px 20px;
}
.about__section-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-align: center;
}
.about__section-text {
  font-family: "Open Sans", sans-serif;
  font-size: 1.2rem;
  color: var(--secondary-color);
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
}
.about__values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.about__value-card {
  background: var(--light-bg);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 2px solid #e8ecef;
  text-align: center;
}
.about__value-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.about__value-text {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  color: var(--secondary-color);
}
.about__team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.about__team-member {
  text-align: center;
}
.about__team-photo {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}
.about__team-name {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}
.about__team-role {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}
.about__team-bio {
  font-family: "Open Sans", sans-serif;
  font-size: 0.9rem;
  color: var(--secondary-color);
}
.about__benefits-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}
.about__benefits-list li {
  font-family: "Open Sans", sans-serif;
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}
.about__benefits-list li::before {
  content: "✔";
  color: var(--primary-color);
  position: absolute;
  left: 0;
}
.about--cta {
  background: var(--whatsapp-bg);
  text-align: center;
}

/* Estilos del contacto.html */
:root {
  --primary-color: #4a90e2;
  --secondary-color: #757575;
  --accent-color: #25d366;
  --dark-color: #000000;
  --light-bg: #ffffff;
  --whatsapp-bg: #e6f3e6;
  --border-radius: 20px;
  --shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s ease;
}
.contact--section {
  background: var(--light-bg);
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact__container {
  max-width: 1400px;
  width: 100%;
  flex-direction: column;
  gap: 0px;
  padding: 120px 0px;
}
.contact__title {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  text-align: center;
}
.contact__subtitle {
  font-family: "Open Sans", sans-serif;
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 40px;
  text-align: center;
}
.contact__content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0px 20px;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  background: var(--light-bg);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 3px solid #e8ecef;
}
.contact__form-row {
  display: flex;
  gap: 20px;
}
.contact__input {
  flex: 1;
  padding: 14px;
  border: 2px solid #e8ecef;
  border-radius: 10px;
  font-family: "Open Sans", sans-serif;
  font-size: 1.2rem;
  transition: var(--transition);
}
.contact__input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 8px rgba(74, 144, 226, 0.6);
}
.contact__input--textarea {
  resize: vertical;
  min-height: 150px;
}
.contact__submit-btn {
  background: linear-gradient(90deg, var(--dark-color), #333333); /* Gradiente moderno */
  color: var(--light-bg);
  border: none;
  padding: 16px 32px;
  font-size: 1.4rem;
  cursor: pointer;
  border-radius: var(--border-radius);
  width: 100%;
  margin-top: 25px;
  transition: var(--transition);
}
.contact__submit-btn:hover {
  background: linear-gradient(90deg, #333333, #555555);
  transform: scale(1.03);
}
.contact__whatsapp {
  flex: 1;
  background: var(--whatsapp-bg);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 3px solid #e8ecef;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  align-items: center;
  justify-content: space-between;
}
.contact__whatsapp-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  align-items: center;
  flex: 1;
}
.contact__whatsapp-logo {
  width: 50%;
  height: 35%;
  margin-bottom: 25px;
  transition: var(--transition);
}
.contact__whatsapp-logo:hover {
  transform: scale(1.05);
}
.contact__whatsapp-text {
  font-family: "Open Sans", sans-serif;
  font-size: 1.3rem;
  color: var(--primary-color);
  width: 50%;
}
.contact__whatsapp-btn {
  background: linear-gradient(90deg, var(--accent-color), #1da851);
  color: var(--light-bg);
  padding: 16px 32px;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-size: 1.4rem;
  display: inline-block;
  transition: var(--transition);
}
.contact__whatsapp-btn:hover {
  background: linear-gradient(90deg, #1da851, #128c46);
  transform: scale(1.03);
}

/* Estilos del footer.html */
footer {
  background: #1a3c87;
  color: #ffffff;
  text-align: center;
  padding: 50px 20px; /* Padding base */
  font-family: "Open Sans", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-sizing: border-box;
}
footer a {
  color: #e8ecef;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1em; /* Tamaño de fuente base */
}
footer a:hover {
  color: #00c4cc;
}
.links-footer {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
}
.links-footer .links-footer-urls {
  padding: 10px 0;
}
.contact-btn {
  background: none;
  border: none;
}
.contact-btn a {
  background: #ffffff;
  color: #4a90e2;
  padding: 12px 24px;
  font-size: 1.2em;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}
.contact-btn a:hover {
  background: #00c4cc;
  color: #ffffff;
}
.social-links {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  padding: 10px 0;
  gap: 4rem;
}
.social-links .social-links-icons {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  gap: 2rem;
}


/* Estilos responsivos */
/* ---------------------- */
/* Estilos responsivos para index.html*/
@media (max-width: 768px) {
  .service-grid,
  .testimonial-slider,
  .gallery-slider {
    flex-direction: column;
    align-items: center;
  }
  .hero h1 {
    font-size: 2em;
  }
  .hero p {
    font-size: 1em;
  }
  .service-card {
    width: 100%;  
    max-width: 300px;
    padding: 20px 0 20px 0;
  }
  .service-card img {
    width: 95%;
  }
  .work-slider img {
    height: 200px;
  }
  .testimonial-slider blockquote {
    font-size: 0.9em;
  }
  .full-screen-section {
    height: auto; /* Ajusta la altura en pantallas pequeñas */
    min-height: 100vh;
  }
  .service-text,
  .service-image {
    width: 100%;
    max-width: 100%;
    height: auto; /* Permitimos que la altura se ajuste al contenido en móviles */
  }
  .service-section {
    flex-direction: column; /* Cambiamos a columna en móviles */
    height: auto; /* Ajustamos la altura para que se adapte al contenido */
    min-height: 100vh; /* Mínimo una pantalla completa */
  }
  .service-image img {
    height: auto;
  }
  .slide-fotos {
    height: 50vh; /* Ajustamos la altura del slider en móviles */
    min-height: 300px;
    max-height: 400px;
  }
  .gallery-slider {
    height: 60vh; /* Ajusta la altura del slider en móviles */
  }
}
@media (max-width: 480px) {
  .service-card {
    margin: 0;
  }
}

/* Estilos responsivos para servicios.html*/
@media (max-width: 1400px) {
  .slide-fotos {
    height: 60vh; /* Reducimos un poco para pantallas medianas */
    min-height: 350px;
    max-height: 500px;
  }
  .service-text h3 {
    font-size: 3rem; /* Reducimos el tamaño del texto para pantallas medianas */
  }
  .service-text p {
    font-size: 1.5rem;
  }
}
@media (max-width: 1371px) {
  .service-text-intro h2 {
    font-size: 3rem; /* Reducimos el tamaño del texto para pantallas medianas */
  }
  .service-text-intro p {
    font-size: 1.5rem;
  }
}
@media (max-width: 1090px) {
  .slide-fotos {
    height: 60vh; /* Reducimos un poco para pantallas medianas */
    min-height: 350px;
    max-height: 500px;
  }
  .service-text h3 {
    font-size: 3rem; /* Reducimos el tamaño del texto para pantallas medianas */
  }
  .service-text p {
    font-size: 1.5rem;
  }
}
@media (max-width: 900px) {
  .full-screen-section {
    height: auto;
    min-height: 100vh;
  }
}
@media (max-width: 720px) {
  .service-text-intro p {
    font-size: 1rem;
  }
  .service-text h3 {
    font-size: 2rem; /* Reducimos el tamaño del texto para pantallas pequeñas */
  }
  .service-text p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .service-text-intro h2 {
    font-size: 3rem;
  }
}

/* Estilos responsivos del sobre-nosotros.html */
@media (min-width: 1200px) {
  .about__title {
    font-size: 3.5rem;
  }
  .about__subtitle {
    font-size: 1.8rem;
  }
  .about__section-title {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .about--hero {
    padding: 40px 10px;
    min-height: 90vh;
  }
  .about__title {
    font-size: 2rem;
  }
  .about__subtitle {
    font-size: 1.2rem;
  }
  .about__cta-btn {
    font-size: 1.1rem;
    padding: 12px 24px;
  }
  .about--history,
  .about--values,
  .about--team,
  .about--benefits,
  .about--cta {
    padding: 40px 10px;
  }
  .about__section-title {
    font-size: 2rem;
  }
  .about__section-text {
    font-size: 1rem;
  }
  .about__value-title {
    font-size: 1.3rem;
  }
  .about__value-text {
    font-size: 0.9rem;
  }
  .about__team-photo {
    max-width: 150px;
  }
  .about__team-name {
    font-size: 1.2rem;
  }
  .about__team-role,
  .about__team-bio {
    font-size: 0.9rem;
  }
  .about__benefits-list li {
    font-size: 1rem;
  }
}
@media (max-width: 412px) {
  .about--hero {
    padding: 0px 10px;
    min-height: 100vh;
  }
}


/* Estilos responsivos del contacto.html */
@media (max-width: 1358px) {
  .contact__form-row {
    flex-direction: column;
  }
  .contact__whatsapp-logo {
    width: 50%;
    height: auto;
  }
}
@media (max-width: 767px) {
  .contact__title {
    font-size: 2.5rem;
  }
  .contact__subtitle {
    font-size: 1.2rem;
  }
  .contact__form-row {
    flex-direction: column;
    gap: 15px;
  }
  .contact__input {
    font-size: 1rem;
    padding: 12px;
  }
  .contact__input--textarea {
    min-height: 120px;
  }
  .contact__submit-btn {
    font-size: 1.2rem;
    padding: 14px 28px;
  }
  .contact__whatsapp-text {
    font-size: 1.1rem;
  }
  .contact__whatsapp-btn {
    font-size: 1.2rem;
    padding: 14px 28px;
  }
}
@media (min-width: 1200px) {
  .contact__container {
    gap: 50px;
  }
  .contact__form,
  .contact__whatsapp {
    max-width: 650px;
  }
}
.contact--section.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}
.contact--section.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 768px) and (max-width: 1199px) {
  .contact__form-row {
    flex-direction: column;
  }
  .contact__form,
  .contact__whatsapp {
    max-width: 500px;
  }
  .contact__title {
    font-size: 3rem;
  }
  .contact__subtitle {
    font-size: 1.4rem;
  }
}
@media (max-width: 345px) {
  .contact__container {
    padding: 150px 0px 60px 0px;
  }
}

/* Estilos responsivos del footer */
@media (max-width: 890px) {
  footer {
    flex-direction: column;
    padding: 30px 10px; /* Reducimos padding en tablets */
  }
  .links-footer {
    padding: 10px 0;
    width: 100%; /* Ocupa todo el ancho */
  }
  .social-links {
    gap: 2rem; /* Reducimos el espacio entre íconos */
    justify-content: center; /* Centramos en tablets */
    width: 100%;
    margin-top: 10px;
  }
  .social-links .social-links-icons {
    gap: 1.5rem; /* Espacio menor entre íconos */
  }
  .contact-btn a {
    padding: 10px 20px; /* Reducimos padding del botón */
    font-size: 1em; /* Reducimos tamaño de fuente */
  }
}
@media (max-width: 576px) {
  footer {
    padding: 20px 10px; /* Más compacto en móviles pequeños */
  }
  footer a {
    font-size: 0.9em; /* Fuente más pequeña en móviles */
    margin: 0 5px; /* Menos margen */
  }
  .social-links {
    gap: 1.5rem; /* Espacio aún más reducido */
    flex-direction: column; /* Apilamos íconos verticalmente */
    align-items: center;
  }
  .social-links .social-links-icons {
    gap: 1rem; /* Espacio mínimo entre íconos */
    flex-direction: row; /* Apilamos verticalmente */
  }
  .contact-btn a {
    padding: 8px 16px; /* Más compacto */
    font-size: 0.9em; /* Fuente más pequeña */
  }
}
@media (max-width: 480px) {
  .cta-section a {
    font-size: medium;
  }
  .contact-btn {
    padding: 10px 0 10px 0;
  }
}