/* Hero Nosotros */
.about-hero {
  background: linear-gradient(rgba(0, 31, 84, 0.75), rgba(0, 31, 84, 0.75)),
              url('../img/about/hero-bg.jpg') center/cover no-repeat;
  min-height: 50vh;
}

/* Sección Misión / Visión / Valores */
.about-page .fa-2x {
  color: #f1c40f; /* íconos dorados para destacar */
}

.about-page h5 {
  margin-top: 10px;
  font-weight: 700;
}

/* Equipo */
.about-page .rounded-circle {
  border: 4px solid #001f54;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-page .rounded-circle:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.team-card {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}
.team-card i {
  transition: transform 0.3s ease;
}
.team-card:hover i {
  transform: scale(1.2);
}




.icon-bubble {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #001f54;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
  font-size: 2rem;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}
.icon-bubble:hover {
  transform: scale(1.15);
  background: #f1c40f;
  color: #001f54;
}







/* Sección Clientes */
.clientesSwiper {
  width: 100%;
  padding: 40px 0;
}

.cliente-card {
  border-radius: 16px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Hover en la tarjeta: resalta con sombra y glow */
.cliente-card:hover {
  box-shadow: 0 0 25px rgba(0,31,84,0.35);
  border-color: #001f54;
}

/* Logo centrado en área fija */
.cliente-logo {
  max-height: 80px;
  object-fit: contain;
  margin: 0 auto 1rem;
  display: block;
}

/* Nombre del cliente */
.cliente-card h6 {
  font-weight: 700;
  color: #001f54;
  margin-bottom: 0.5rem;
}

/* Si toda la card es clickeable */
.cliente-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

/* Hover sobre enlace: mismo efecto que el card */
/* Forzar hover en clientes */
.cliente-card-link:hover .cliente-card,
.cliente-card:hover {
  box-shadow: 0 0 25px rgba(0,31,84,0.45) !important;
  border-color: #001f54 !important;
  transform: none !important; /* evita que "salte" */
}


/* Swiper bullets */
.swiper-pagination-bullet {
  background: #001f54;
  opacity: 0.5;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}

/* Flechas Swiper */
.swiper-button-next,
.swiper-button-prev {
  color: #001f54;
  transition: color 0.3s ease;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #f1c40f;
}

/* Espaciado entre cards dentro de Swiper */
.clientesSwiper .swiper-slide {
  padding: 20px; /* espacio alrededor de cada card */
  height: auto !important; /* para que crezca con el contenido */
  display: flex;
  justify-content: center;
  align-items: stretch;
}

/* Ajustar el card dentro del slide */
.cliente-card {
  width: 100%;
  height: 100%;
}


