/* 🎨 Fondo del slide */
.slide-fondo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transition: background 0.5s ease-in-out, filter 0.3s ease-in-out, transform 0.5s ease-in-out;
}

/* 🧱 Contenedor base del slide */
.slide-base {
  position: relative;
  width: 100%;
  min-height: 500px;
  z-index: 1;
  overflow: hidden;
  border-radius: 12px;
}

/* 📝 Texto sobre el slide */
.carousel-caption {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.carousel-caption h2,
.caption-abajo h2,
.carousel-caption p,
.caption-abajo p {
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.carousel-item {
  min-height: 400px;
}

/* 📍 Posición del caption abajo */
.caption-abajo {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20 !important;
  text-align: center;
}

.carousel-caption.caption-abajo {
  top: auto !important;
  transform: translateX(-50%) !important;
}

/* 🔠 Títulos - Tamaños aumentados */
.titulo-lg { font-size: 4rem; font-weight: 700; line-height: 1.2; }
.titulo-md { font-size: 3.2rem; font-weight: 600; line-height: 1.2; }
.titulo-sm { font-size: 2.5rem; font-weight: 600; line-height: 1.2; }

/* 🔡 Subtítulos - Tamaños aumentados */
.sub-lg { font-size: 2rem; line-height: 1.4; }
.sub-md { font-size: 1.6rem; line-height: 1.4; }
.sub-sm { font-size: 1.3rem; line-height: 1.4; }

/* 🔘 Botones - Estilo mejorado con animación */
.boton-lg,
.boton-md,
.boton-sm,
a.boton-lg,
a.boton-md,
a.boton-sm,
.caption-abajo a {
  display: inline-block !important;
  background-color: #095f5f !important;
  border: 2px solid white !important;
  color: white !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  cursor: pointer !important;
  line-height: 1.5 !important;
}

/* ✨ Movimiento al pasar el cursor */
.boton-lg:hover,
.boton-md:hover,
.boton-sm:hover,
a.boton-lg:hover,
a.boton-md:hover,
a.boton-sm:hover,
.caption-abajo a:hover {
  background-color: #0b7070 !important;
  transform: translateY(-6px) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5) !important;
  text-decoration: none !important;
  color: white !important;
}

/* 🧘‍♀️ Animación de entrada */
.boton-animado {
  animation: subirBoton 0.8s ease-out forwards;
  opacity: 0;
}

@keyframes subirBoton {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


/* 🌟 Efectos visuales desde clase_extra */

/* 🌑 EFECTO SOMBRA MEJORADO - Igual que en los formularios */
.slide-fondo.sombra {
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5) !important;
}

.slide-fondo.sombra::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s ease;
}

/* 🌫️ EFECTO DESENFOQUE */
.slide-fondo.desenfoque {
  filter: blur(3px);
}

.slide-fondo.desenfoque::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(3px);
  z-index: 1;
  pointer-events: none;
}

/* 🔍 EFECTO ZOOM */
.slide-fondo.zoom-in {
  animation: zoomIn 15s ease-in-out infinite alternate;
  transform-origin: center center;
}

@keyframes zoomIn {
  0% { 
    transform: scale(1); 
  }
  100% { 
    transform: scale(1.15); 
  }
}

/* Variante más sutil del zoom */
@media (prefers-reduced-motion: reduce) {
  .slide-fondo.zoom-in {
    animation: none;
    transform: scale(1.05);
  }
}

/* Transiciones en el fondo y sus efectos */
.carousel-item,
.slide-base {
  height: 100vh;
  min-height: 500px;
}

/* 🚨 Alerta cuando no hay slides */
.alerta-vacia {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid #dee2e6;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background-color: #f8f9fa;
}

.alerta-vacia i {
  font-size: 3rem;
  color: #ffc107;
  margin-bottom: 1rem;
}

.alerta-vacia h2 {
  font-size: 1.4rem;
  color: #6c757d;
  margin-bottom: 0.5rem;
}

.alerta-vacia p {
  font-size: 1rem;
  color: #868e96;
}

/* 🎭 EFECTOS COMBINADOS */

/* Sombra + Zoom: mantener ambos efectos */
.slide-fondo.sombra.zoom-in {
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5) !important;
  animation: zoomIn 15s ease-in-out infinite alternate;
}

.slide-fondo.sombra.zoom-in::after {
  animation: none;
  transform: none;
}

/* Desenfoque + Sombra */
.slide-fondo.desenfoque.sombra {
  filter: blur(3px);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5) !important;
}

.slide-fondo.desenfoque.sombra::after {
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .slide-base,
  .carousel-item {
    min-height: 400px;
    height: 70vh;
  }
  
  .caption-abajo {
    bottom: 1rem;
    padding: 0 1rem;
  }
  
  .titulo-lg { font-size: 2.8rem; }
  .titulo-md { font-size: 2.2rem; }
  .titulo-sm { font-size: 1.8rem; }
  
  .sub-lg { font-size: 1.5rem; }
  .sub-md { font-size: 1.2rem; }
  .sub-sm { font-size: 1rem; }
}

@media (max-width: 576px) {
  .slide-base,
  .carousel-item {
    min-height: 300px;
    height: 60vh;
  }
  
  .titulo-lg { font-size: 2.2rem; }
  .titulo-md { font-size: 1.8rem; }
  .titulo-sm { font-size: 1.4rem; }
  
  .sub-lg { font-size: 1.2rem; }
  .sub-md { font-size: 1rem; }
  .sub-sm { font-size: 0.9rem; }
  
  .boton-lg { font-size: 1rem; padding: 0.6rem 1.2rem !important; }
  .boton-md { font-size: 0.85rem; padding: 0.45rem 1rem !important; }
  .boton-sm { font-size: 0.75rem; padding: 0.35rem 0.7rem !important; }
}

/* ✨ Animación de entrada para los slides */
.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mejora visual de los controles del carrusel */
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

/* Indicadores del carrusel — FUERA del carrusel */
.carousel-indicators {
  display: none;
}

/* Bolitas externas debajo del carrusel */
.carrusel-dots-externos {
  background-color: #f5f5f5;
  padding: 10px 0;
}

.dot-externo {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  border: 2px solid #aaa;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot-externo.active,
.dot-externo:hover {
  background-color: #00a1b9;
  border-color: #00a1b9;
  transform: scale(1.3);
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.carousel-indicators [data-bs-target].active {
  background-color: rgba(255, 255, 255, 1);
  transform: scale(1.2);
}





/* Fondo institucional solo cuando no hay registros */
.inf-fondo {
  background: linear-gradient(#38c0c0, #ebecf8af), url(../images/contacto.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  text-align: center;
  color: #FFF;
  margin-top: 50px;
  animation: slideFade 1s ease-out;
}

/* Línea decorativa debajo de títulos */
.titulo-linea {
  width: 60px;
  height: 4px;
  background: #00a1b9 !important;
  border: none !important;
  border-radius: 2px;
  margin: 0.5rem auto 1rem auto;
  display: block;
}

/* Degradado en títulos institucionales */
.titulo-grad {
  background: linear-gradient(90deg, #0d6271, #00a1b9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.text-success {
  background: linear-gradient(90deg, #0d6271, #00a1b9) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  display: inline-block !important;
}

.titulo2 {
  background: linear-gradient(90deg, #0d6271, #00a1b9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  text-align: center;
  width: 100%;
}
.e-tarjeta i {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}
.inf-header {
  background-color: transparent;
  text-align: center;
  margin-top: 0;
  animation: slideFade 1s ease-out;
  padding: 3rem 0 !important;
}

/* Título institucional - Tamaño grande como en carrusel */
.inf-title {
  font-size: 3.2rem !important;
  font-weight: 600;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
  color: #ffffff;
}

/* Texto institucional */
.inf-text {
  font-size: 1.6rem !important;
  line-height: 1.6;
  font-weight: 400;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  color: #f0f0f0;
}

/* Título principal "¿Quiénes somos?" - estilo más grueso */
.text-success {
  font-size: 3.2rem !important;
  font-weight: 800 !important; /* Más grueso que 600 */
  color: #0d6271 !important;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif; /* Opcional para estilo más moderno */
}


/* Animación suave */
@keyframes slideFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.inf-header, .inf-fondo {
  animation: slideFade 1s ease-out;
}

/* Sección de información con fondo */
.inf {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
}

/* Responsive */
@media (max-width: 768px) {
  .inf-title {
    font-size: 2.2rem !important;
  }
  
  .inf-text {
    font-size: 1.2rem !important;
  }
  
   .text-success {
    font-size: 2.4rem !important;
  } 
  
  .inf-header {
    padding: 2rem 0 !important;
  }
}

@media (max-width: 576px) {
  .inf-title {
    font-size: 1.8rem !important;
  }
  
  .inf-text {
    font-size: 1rem !important;
  }
  
  .text-success {
    font-size: 2rem !important;
  }
  
  .inf-header {
    padding: 1.5rem 0 !important;
  }
}




/* Tarjetas visuales */
.v-tarjeta {
  width: 100%;
  max-width: 300px;
  height: 300px;
  padding: 10px;
  background: linear-gradient(135deg, #45bdcf, #006474);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  cursor: pointer;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.v-tarjeta i {
  font-size: 80px;
  color: #fff;
  transition: all 0.3s ease;
}

.v-texto h3 {
  text-align: center;
  margin-bottom: 10px;
  color: white;
}

.v-tarjeta:hover {
  background: #006474;
  transform: translateY(-3%);
}




/* Tarjetas de elección */
.eleccion {
  width: 100%;
  margin-top: 4rem;
  padding: 3rem 0;
}

.eleccion .division {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 2rem 0;
}

/* Título principal - Tamaño aumentado */
.eleccion .titulo2 {
  font-size: 3.2rem !important;
  font-weight: 600;
  text-align: center;
  color: #0d6271;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

/* Texto descriptivo - Tamaño aumentado */
.eleccion .textoo {
  font-size: 1.6rem !important;
  text-align: center;
  color: #555;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Clase auxiliar para títulos success */
.text-success {
  font-size: 3.2rem !important;
  font-weight: 600 !important;
  color: #0d6271 !important;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-align: center;
}

/* Tarjetas */
.e-tarjeta {
  width: 300px;
  height: 300px;
  padding: 10px;
  background-color: #31b8c2;
  border-radius: 5px;
  box-shadow: 0 0 6px black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 20px;
}

.e-tarjeta i {
  font-size: 80px;
  color: #095f5f;
  transition: all 0.3s ease;
}

.e-tarjeta .e-texto {
  margin-top: 10px;
  text-align: center;
  color: #FFF;
  transition: all 0.3s ease;
}

.e-tarjeta .e-texto h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.e-tarjeta .e-texto p {
  font-size: 1rem;
  line-height: 1.4;
}

.e-tarjeta:hover {
  background: #001a1a;
  transform: translateY(-3%);
}

.e-tarjeta:hover i,
.e-tarjeta:hover .e-texto {
  transform: scale(1.05);
  color: #FFF;
}

/* Mensaje cuando no hay tarjetas */
.eleccion .text-center {
  padding: 3rem 1rem;
}

.eleccion .text-center .display-1 {
  font-size: 4rem;
}

.eleccion .text-center .fs-4 {
  font-size: 1.5rem !important;
  font-weight: 500;
}

.eleccion .text-center .fs-6 {
  font-size: 1.1rem !important;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .eleccion {
    padding: 2rem 0;
  }

  .eleccion .titulo2 {
    font-size: 2.2rem !important;
  }

  .eleccion .textoo {
    font-size: 1.2rem !important;
    padding: 0 1rem;
  }

  .e-tarjeta {
    width: 280px;
    height: 280px;
    margin: 15px;
  }

  .e-tarjeta i {
    font-size: 60px;
  }

  .e-tarjeta .e-texto h3 {
    font-size: 1.3rem;
  }

  .e-tarjeta .e-texto p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .eleccion {
    margin-top: 2rem;
    padding: 1.5rem 0;
  }

  .eleccion .titulo2 {
    font-size: 1.8rem !important;
  }

  .eleccion .textoo {
    font-size: 1rem !important;
    padding: 0 1rem;
  }

  .e-tarjeta {
    width: 260px;
    height: 260px;
    margin: 10px;
  }

  .e-tarjeta i {
    font-size: 50px;
  }

  .e-tarjeta .e-texto h3 {
    font-size: 1.2rem;
  }

  .e-tarjeta .e-texto p {
    font-size: 0.85rem;
  }

  .eleccion .text-center .display-1 {
    font-size: 3rem;
  }

  .eleccion .text-center .fs-4 {
    font-size: 1.2rem !important;
  }

  .eleccion .text-center .fs-6 {
    font-size: 1rem !important;
  }
}


/* Capacitaciones */
.capacitacion {
  max-width: 80%;
  margin: auto;
  padding: 20px;
}

.capacitacion p {
  text-align: justify;
}

.capacitacion img {
  max-height: 380px;
  width: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capacitacion img:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

/* Listas personalizadas */
.mi-lista {
  list-style: none;
  padding-left: 0;
}

.mi-lista li {
  margin-bottom: 0.6em;
  font-size: 1.05em;
  display: flex;
  align-items: center;
}

.mi-lista li::before {
  content: '❖';
  font-weight: bold;
  font-size: 20px;
  color: #05807b;
  display: inline-block;
  width: 24px;
  margin-right: 8px;
  vertical-align: middle;
}

.mi-lista li.con-icono::before {
  content: none;
}

.mi-lista li i.bi {
  font-size: 20px;
  color: #05807b;
  margin-right: 8px;
  vertical-align: middle;
}

.vista-simbolo {
  font-size: 18px;
  font-weight: bold;
  color: #05807b;
  display: inline-block;
  width: 24px;
  text-align: center;
  vertical-align: middle;
}

/* Subtexto encima del botón título */
.titulo1-subtexto {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Wrapper del botón título */
.titulo1-wrapper {
  display: block;
  text-align: center;
  width: 100%;
}

/* Título institucional - Botón con animación */
.titulo1 {
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #38c0c0, #095f5f);
  color: white !important;
  font-size: 1.8rem;
  font-weight: 500;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(9, 95, 95, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

/* Efecto hover del botón título */
.titulo1:hover {
  background: linear-gradient(135deg, #095f5f, #38c0c0);
  color: white !important;
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(9, 95, 95, 0.4);
}

/* Efecto de ondas al hacer hover */
.titulo1::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.titulo1:hover::before {
  width: 300px;
  height: 300px;
}

/* Animación de pulso sutil */
@keyframes pulsoSutil {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.titulo1:active {
  transform: translateY(-4px) scale(0.98);
}

.text-center .titulo1 {
  margin-top: 1rem;
}

/* Texto llamado a la acción */
.c-a {
  font-size: 1.3rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

/* Mensaje de construcción */
.mensaje-construccion {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.mensaje-construccion i {
  font-size: 4rem;
  color: #6c757d;
}

.mensaje-construccion p {
  font-size: 1.25rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .capacitacion {
    max-width: 95%;
    padding: 15px;
  }

  .titulo1 {
    font-size: 2rem;
    padding: 0.8rem 1.5rem;
  }

  .c-a {
    font-size: 1.1rem;
  }

  .mi-lista li {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .titulo1 {
    font-size: 1.5rem;
    padding: 0.7rem 1.2rem;
    max-width: 100%;
  }

  .capacitacion img {
    max-height: 180px;
  }

  .c-a {
    font-size: 1rem;
  }

  .mensaje-construccion i {
    font-size: 3rem;
  }

  .mensaje-construccion p {
    font-size: 1rem;
  }
}








.container-fluid {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.display-1 {
  font-size: 50px !important;
  color: #00a1b9 !important;
}

.text-success {
  font-size: 50px !important;
  color: #006a7a !important;
}

/* 🦉 Carrusel personalizado */
.owl-carousel {
  position: relative;
  padding: 0 40px;
  min-height: 140px;
}

.owl-carousel .item {
  text-align: center;
}

.owl-carousel .item img {
  width: 150px;
  height: 100px;
  object-fit: contain;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

/* ✅ Fix específico para sección clientes */
.clientes .owl-stage-outer {
  overflow: hidden !important;
}

.clientes .owl-stage {
  display: flex !important;
  align-items: center !important;
}

.clientes .owl-item {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 130px !important;
}

/* 🔵 Dots del carrusel de clientes */
.clientes .owl-dots {
  text-align: center;
  margin-top: 15px;
}

.clientes .owl-dot {
  display: inline-block;
  margin: 0 4px;
  background: none !important;
  border: none !important;
  outline: none !important;
  padding: 0 !important;
}

.clientes .owl-dot span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc !important;
  display: block;
  transition: background-color 0.3s ease;
  border: none !important;
}

.clientes .owl-dot.active span {
  background-color: #00a1b9 !important;
}

.owl-nav {
  position: absolute;
  top: 50%;
  left: -30px;
  right: -30px;
  width: auto;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.owl-nav i {
  font-size: 48px;
  color: #00a1b9;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, color 0.3s ease;
}

.owl-nav i:hover {
  color: #006a7a;
  transform: scale(1.2);
  cursor: pointer;
}

.owl-prev,
.owl-next {
  pointer-events: all;
  background: none;
  border: none;
}

/* 🌫️ Animación de entrada */
@keyframes fadeInSlide {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* 📱 Responsivo */
@media (max-width: 768px) {
  .titulo1 {
    font-size: 30px;
    padding: 0.5rem;
    margin: 1rem 0;
  }

  .carousel-item,
  .slide-base {
    height: auto;
    min-height: 400px;
  }

  .carousel-caption h5 {
    font-size: 1.25rem;
  }

  .carousel-caption p {
    font-size: 1rem;
  }

  .carousel-caption a.btn {
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
  }

  .owl-nav {
    left: 0;
    right: 0;
    top: 55%;
    padding: 0 10px;
  }

  .owl-nav i {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .titulo1 {
    font-size: 24px;
  }
}

/* 🧘 Animación global */
html, body {
  animation-play-state: running;
}
body {
  background-color: #f5f5f5;
}


/* ------------------------------------------- */
/* BOTÓN SECCIÓN ¿QUIÉNES SOMOS?              */
/* ------------------------------------------- */
.btn-quienes {
  background: linear-gradient(135deg, #0d7377 0%, #0a9396 100%);
  border: none;
  color: white;
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(13, 115, 119, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-quienes:hover {
  background: linear-gradient(135deg, #095f5f 0%, #0d7377 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(13, 115, 119, 0.5);
  color: white;
}

.btn-quienes:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(13, 115, 119, 0.4);
  color: white;
}
