body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f8ff;
}

.nosotros-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.imagenes {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.imagenes img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50% 50% 50% 50% / 60% 40% 60% 40%; /* forma orgánica personalizada */
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.imagenes img:hover {
    transform: scale(1.05);
}

.texto {
    flex: 1 1 40%;
    padding: 20px;
}

.texto h2 {
    color: #009688;
    margin-top: 0;
}

.texto p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

@media (max-width: 768px) {
    .nosotros-section {
        flex-direction: column;
    }

    .imagenes img {
        width: 200px;
        height: 200px;
    }

    .texto {
        text-align: center;
    }
}
.valores-section {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    padding: 60px 20px;
    background: #eaf4fc;
    flex-wrap: wrap;
}

.valores-section .caja {
    flex: 1 1 250px;
    max-width: 300px;
    background-color: #005ea8; /* color base azul fuerte */
    border-radius: 8px;
    padding: 30px 20px;
    color: white;
    text-align: center;
    transition: transform 0.3s ease;
}

.valores-section .caja:nth-child(2) {
    background-color: #468dc4; /* azul medio */
}

.valores-section .caja:nth-child(3) {
    background-color: #7ab0d6; /* azul claro */
}

.valores-section .caja h3 {
    margin-top: 0;
    font-size: 22px;
    font-weight: bold;
    color: #f0f0f0;
}

.valores-section .caja p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .valores-section {
        flex-direction: column;
        align-items: center;
    }

    .valores-section .caja {
        max-width: 90%;
    }
}
.nosotros-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background-color: #eaf4fc;
    gap: 40px;
    flex-wrap: wrap;
}

.imagenes-agrupadas {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex: 1 1 50%;
    justify-content: flex-end;
}

.columna-izquierda,
.columna-derecha {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.columna-izquierda {
    align-items: flex-end;
}

.columna-derecha {
    align-items: flex-start;
}

.img-grande {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.img-chica {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.texto {
    flex: 1 1 40%;
    max-width: 500px;
    text-align: left;
}

.texto h2 {
    color: #009688;
    margin-bottom: 10px;
}

.texto p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .nosotros-section {
        flex-direction: column;
        padding: 40px 20px;
    }

    .imagenes-agrupadas {
        flex-direction: column;
        align-items: center;
    }

    .columna-izquierda,
    .columna-derecha {
        align-items: center;
    }

    .img-grande,
    .img-chica {
        width: 200px;
        height: 200px;
    }

    .texto {
        text-align: center;
        max-width: 100%;
    }
}
.img-grande {
    width: 400px;
    height: 340px;
    object-fit: cover;
    border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.img-chica {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.nosotros-section {
    margin-top: 80px; /* Ajusta el valor según el alto de tu menú */
}
/* ============================= */
/*           HEADER             */
/* ============================= */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #1C6C6C;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #126365;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
  z-index: 999;
}

.header.scrolled {
  background-color: #126365;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header img {
  height: 50px;
  object-fit: contain;
}


.header img,
.logo img {
  height: 50px;
  object-fit: contain;
}

.header.scrolled {
  background-color: #126365;
  box-shadow: 0 2px 10px #f8f8f8;
}

.menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.menu ul li a {
  color: #1C6C6C;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  padding: 10px;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.menu ul li a:hover {
  color: #000000;
  border-bottom: 2px solid #126365;
}

.header.scrolled .menu ul li a {
  color: #126365;
}

/* Aumenta el alto de la barra de navegación */
.header {
  background-color: #00A859;
  padding: 20px 30px; /* antes: padding más pequeño */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Contenedor de los logos */
.logo-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Primer logo (izquierda) */
.logo img {
  height: 120px;     /* aumenta el alto */
  max-width: 280px;  /* proporción visual más grande */
  object-fit: contain;
}

/* Segundo logo (derecha o al lado) */
.logo-second img {
  height: 120px;
  max-width: 280px;
  object-fit: contain;
}



/* ============================= */
/*           SUBMENÚ            */
/* ============================= */
.submenu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: transparent;
  margin-top: 2px;
}

.submenu:hover .sub-menu {
  display: block;
}

.sub-menu li {
  display: block;
  padding: 5px 0;
}

.sub-menu li a {
  font-size: 16px;
  color: #333;
  text-decoration: none;
}

.sub-menu li a:hover {
  color: #007bff;
}


/* Menú pantalla completa */
.overlay-menu {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  background-color: #1C6C6C;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.overlay-menu .close-btn {
  position: absolute;
  top: 100px; /* Más abajo que el borde superior */
  right: 30px;
  font-size: 36px;
  color: white;
  cursor: pointer;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #1C6C6C;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
  z-index: 999;
}

.overlay-content {
  text-align: center;
  color: white;
}

.overlay-content a {
  display: block;
  margin: 20px 0;
  font-size: 22px;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.overlay-content a:hover {
  color: #ffcc00;
}

.overlay-logo {
  width: 150px;
  margin-bottom: 30px;
}


.timeline-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  max-width: 800px;
  margin: 0 auto 60px;
}

.timeline-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-family: Arial, sans-serif;
  color: #333;
}

.timeline {
  position: relative;
  margin-left: 20px;
  padding-left: 30px;
  border-left: 3px solid #007bff; /* Línea vertical */
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: #007bff;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 2px #007bff;
}

.timeline-content {
  background: white;
  padding: 15px 20px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.timeline-content h3 {
  margin-top: 0;
  color: #007bff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.timeline-content p {
  margin: 8px 0 0;
  font-size: 0.95rem;
  color: #555;
}


.logo-container {
  display: flex;
  align-items: center;
  gap: 15px; /* Espacio entre logos */
}

.logo img,
.logo-second img {
  height: 40px;
  width: auto;
}


  @media (max-width: 768px) {
  /* Header */
  .header {
    padding: 10px 15px;
    height: auto;
    flex-direction: row;
    align-items: center;
    background-color: rgba(82, 147, 196, 0.7);
  }
  .logo-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .logo img,
  .logo-second img {
    height: 40px;
    max-width: 100px;
  }
  
  .menu-toggle {
    display: block;
    position: absolute;
    right: 25px;
    top: 5px;
    
  }


}

.menu-toggle {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 1001;
  cursor: pointer;
}

.menu-toggle .menu-icon {
  width: 32px;
  height: auto;
}








    /* ============================= */
    /*           FOOTER             */
    /* ============================= */
    footer {
      background: #1C6C6C;
      color: #fff;
      text-align: center;
      padding: 0.5em 0;
      margin-top: 30px;
    }

    .footer-lyfsa {
      background-color: #1C6C6C;
      color: white;
      font-family: 'Segoe UI', sans-serif;
    }

    .footer-container {
      padding: 20px 20px 20px;
      max-width: 2000px;
      margin: 0 auto;
      text-align: center;
    }

    .footer-logo img {
      width: 50px;
      margin-bottom: 20px;
    }

    .footer-columns {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      margin-bottom: 20px;
    }

    .footer-column {
      flex: 1 1 200px;
      min-width: 200px;
    }

    .footer-column h3 {
      margin-bottom: 10px;
      font-size: 16px;
      font-weight: bold;
    }

    .footer-column p {
      margin: 5px 0;
    }

    .footer-social {
      margin-top: 20px;
    }

    .footer-social a {
      margin: 0 10px;
      display: inline-block;
    }

    .footer-social img {
      width: 20px;
      height: 20px;
    }

    .footer-rights {
      background-color: #0A4B4C;
      padding: 10px 0;
      font-size: 14px;
      text-align: center;
    }

    .footer-lyfsa {
  font-size: 12px;
  background-color: #16686A;
  color: white;
  font-family: 'Segoe UI', sans-serif;
}

.footer-column h3 {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: bold;
}

.footer-column p {
  font-size: 12px;
  margin: 5px 0;
}

.footer-rights {
  background-color: #0A4B4C;
  padding: 10px 0;
  font-size: 11px;
  text-align: center;
}

.submenu-items a {
  font-size: 0.85rem;  /* Letra más pequeña */
  margin-right: 8px;   /* Espacio pequeño entre enlaces */
  padding: 2px 4px;    /* Algo de espacio interno para que no estén pegados */
  white-space: nowrap; /* Que no se rompan en varias líneas */
}




body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: #333;
}

.nosotros-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  background-color: #f4f4f4;
}

.imagenes-agrupadas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.columna-izquierda,
.columna-derecha {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.columna-izquierda img,
.columna-derecha img {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  border-radius: 16px;
}

.img-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.columna-izquierda img {
  width: 300px;
}

.columna-derecha img {
  width: 140px;
}

.columna-derecha {
  margin-left: 30px;
}

.texto {
  text-align: center;
  max-width: 800px;
}

.texto h2 {
  font-size: 36px;
  margin: 10px 0;
  color: #004c8c;
}

.texto p {
  font-size: 18px;
  line-height: 1.6;
}

.valores-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  background-color: #eaf3fb;
}

.valores-section .caja {
  max-width: 300px;
  text-align: center;
}

.valores-section h3 {
  font-size: 24px;
  color: #004c8c;
}

.timeline-section {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.timeline-section h2 {
  font-size: 36px;
  color: #004c8c;
  margin-bottom: 40px;
}

.timeline {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding-left: 20px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #004c8c;
}

.timeline-item {
  margin-bottom: 40px;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -6px;
  background: white;
  border: 3px solid #004c8c;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: 0;
}

.timeline-content {
  margin-left: 40px;
  text-align: left;
}

.timeline-content h3 {
  margin: 0;
  font-size: 24px;
  color: #004c8c;
}

.timeline-content p {
  margin: 5px 0 0;
  font-size: 16px;
}



/* Responsive */
@media (max-width: 768px) {
  .imagenes-agrupadas {
    flex-direction: column;
    align-items: center;
  }

  .columna-derecha {
    margin-left: 0;
    flex-direction: row;
    gap: 20px;
  }

  .columna-derecha img {
    width: 120px;
  }

  .columna-izquierda img {
    width: 260px;
  }

  .texto h2 {
    font-size: 28px;
  }

  .timeline::before {
    left: 12px;
  }

  .timeline-content {
    margin-left: 30px;
  }
}





/* Estilos para la sección BIO ZOO */
.biozoo-section {
  background-color: #ffffff;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Lato', sans-serif;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.biozoo-imagenes {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.curva-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.curva-img:hover {
  transform: scale(1.05);
}

.biozoo-texto {
  flex: 1;
  min-width: 300px;
}

.biozoo-texto h3 {
  color: #2a5c8d;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

.biozoo-texto h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: #2a5c8d;
}

.biozoo-texto p {
  color: #333333;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Estilos responsivos */
@media (max-width: 768px) {
  .biozoo-section {
    flex-direction: column;
    gap: 30px;
    padding: 40px 20px;
  }
  
  .biozoo-texto h3 {
    font-size: 24px;
  }
  
  .biozoo-texto p {
    font-size: 16px;
  }
  
  .curva-img {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 480px) {
  .biozoo-imagenes {
    gap: 15px;
  }
  
  .curva-img {
    width: 120px;
    height: 120px;
  }
}







/* Estilos para la sección BIO ZOO - Versión texto pequeño y posición baja */
.biozoo-section {
  background-color: #ffffff;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 20px auto 80px; /* Margen superior aumentado para bajar la sección */
  font-family: 'Lato', sans-serif;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
}

/* Opcional: añadir espacio antes de la sección si es el primer elemento */
body :first-child.biozoo-section {
  margin-top: 120px;
}

.biozoo-imagenes {
  flex: 1;
  min-width: 500px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.curva-img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.curva-img:hover {
  transform: scale(1.03);
}

.biozoo-texto {
  flex: 1;
  min-width: 100px;
  margin-top: 40px; /* Añadido para bajar el texto */
}

.biozoo-texto h3 {
  color: #2a5c8d;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 8px;
}

.biozoo-texto h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: #2a5c8d;
}

.biozoo-texto p {
  color: #333333;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 25px;
}

/* Estilos responsivos */
@media (max-width: 768px) {
  .biozoo-section {
    margin: 60px auto 30px;
    gap: 25px;
    padding: 30px 15px;
  }
  
  .biozoo-texto {
    margin-top: 15px;
  }
  
  .biozoo-texto h3 {
    font-size: 20px;
  }
  
  .biozoo-texto p {
    font-size: 14px;
  }
  
  .curva-img {
    width: 130px;
    height: 130px;
  }
}

@media (max-width: 480px) {
  .biozoo-section {
    margin: 40px auto 20px;
  }
  
  .biozoo-imagenes {
    gap: 10px;
  }
  
  .curva-img {
    width: 110px;
    height: 110px;
    border-radius: 12px;
  }
  
  .biozoo-texto h3 {
    font-size: 18px;
  }
  
  .biozoo-texto p {
    font-size: 13px;
  }
}

.biozoo-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: #e8f4fc;
  padding: 60px 30px;
}

.imagenes-biozoo {
  display: flex;
  flex: 1;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.imagen-principal img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  clip-path: ellipse(65% 50% at 50% 50%);
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.imagenes-secundarias {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.imagenes-secundarias img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  clip-path: ellipse(65% 50% at 50% 50%);
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.texto-biozoo {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
  padding: 20px;
}

.texto-biozoo h3 {
  color: #00776b;
  font-size: 24px;
  margin-bottom: 10px;
}

.texto-biozoo p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .biozoo-section {
    flex-direction: column;
    align-items: center;
  }

  .imagenes-biozoo {
    flex-direction: column;
  }

  .imagen-principal img,
  .imagenes-secundarias img {
    width: 220px;
    height: 160px;
  }

  .texto-biozoo {
    text-align: center;
  }
}
/* Transición al hacer scroll */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
.biozoo-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 60px 20px;
  background-color: #e9f5ff;
  gap: 40px;
}

.imagenes-biozoo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  flex: 1;
  max-width: 600px;
}

.imagen-principal img {
  width: 100%;
  height: auto;
  max-width: 100%;
  clip-path: ellipse(100% 70% at 50% 50%);
  object-fit: cover;
}

.imagenes-secundarias {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.imagenes-secundarias img {
  width: 100%;
  height: auto;
  max-width: 100%;
  clip-path: ellipse(100% 70% at 50% 50%);
  object-fit: cover;
}

.texto-biozoo {
  flex: 1;
  max-width: 600px;
  color: #004f4f;
}

.texto-biozoo h3 {
  color: #008080;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.texto-biozoo p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Transiciones al hacer scroll */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .biozoo-section {
    flex-direction: column;
    padding: 40px 20px;
  }

  .imagenes-biozoo, .texto-biozoo {
    max-width: 100%;
  }

  .imagenes-secundarias {
    flex-direction: row;
    gap: 15px;
  }

  .imagenes-secundarias img {
    width: 48%;
  }
}




.biozoo-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 60px 20px;
  background-color: #e9f5ff;
  gap: 40px;
}

.imagenes-biozoo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1;
  max-width: 350px;
}

.imagen-principal img,
.imagenes-secundarias img {
  width: 100%;
  height: auto;
  clip-path: ellipse(100% 70% at 50% 50%);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.imagenes-secundarias {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.imagenes-secundarias img {
  width: 100%;
}

/* Efecto hover opcional */
.imagen-principal img:hover,
.imagenes-secundarias img:hover {
  transform: scale(1.03);
}

.texto-biozoo {
  flex: 1;
  max-width: 500px;
  color: #004f4f;
}

.texto-biozoo h3 {
  color: #008080;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.texto-biozoo p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Animación scroll */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .biozoo-section {
    flex-direction: column;
    padding: 40px 20px;
  }

  .imagenes-biozoo, .texto-biozoo {
    max-width: 100%;
  }

  .imagenes-secundarias {
    flex-direction: row;
    gap: 15px;
  }

  .imagenes-secundarias img {
    width: 48%;
  }

  .texto-biozoo h3 {
    font-size: 1.2rem;
  }

  .texto-biozoo p {
    font-size: 0.9rem;
  }
}
