/* Fuente global y espacio para el navbar fijo */
body {
  font-family: 'Roboto', sans-serif;
  padding-top: 100px; /* Espacio para el navbar fijo */
}

/* Navbar personalizado */
.custom-navbar {
  background-color: #255e93;
  padding: 1.5rem 2rem;
}
.custom-navbar .navbar-brand img {
  height: 100px; /* Logo aumentado */
}
.custom-navbar .navbar-nav .nav-link {
  color: #fff !important;
  font-size: 1.2rem;
  margin-right: 1rem;
  transition: color 0.3s;
}
.custom-navbar .navbar-nav .nav-link:hover {
  color: #f0d73c !important;
}

/* Animación pulsante para botones de llamada a la acción */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 5px rgba(240, 215, 60, 0.7);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(240, 215, 60, 1);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 5px rgba(240, 215, 60, 0.7);
  }
}
.cta-blink {
  animation: pulse 2s infinite;
}

/* Botón flotante de WhatsApp con fondo amarillo circular sin borde extra */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #f0d73c;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  box-shadow: none;
}
.whatsapp-float i {
  font-size: 60px;
  color: #25D366;
  animation: pulse 2s infinite;
}

/* Banner con imagen de fondo */
.hero-banner {
  position: relative;
  background: url('img/fondo.jpg') center center/cover no-repeat;
}

/* Sección "Quiénes Somos" ajustes */
.about .about-text {
  font-size: 1.2rem; /* Letra un poco más grande */
}

/* Estilo para logos de partners (en esta versión, sin forma circular) */
.partner-logo {
  max-width: 150px; /* Ajusta el tamaño según prefieras */
  height: auto;
  display: inline-block;
}
