@charset "UTF-8";
.text-primary {
  color: #0d6efd !important;
}

.bg-primary {
  background-color: #0d6efd !important;
}

.section-padding {
  padding: 5rem 0;
}

.fade-in {
  animation: fadeIn 1s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Efectos para la animación del contador */
.counter-number {
  transition: all 0.3s ease;
  display: inline-block; /* Necesario para transform */
}

.counter-number.animating {
  transform: scale(1.05);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  color: #0d6efd !important; /* Resaltar durante animación */
  animation: pulse 0.5s ease-in-out infinite alternate;
}

.counter-number.completed {
  transform: scale(1);
  text-shadow: 0 0 20px rgba(13, 110, 253, 0.3);
  transition: all 0.5s ease;
}

/* Animación de pulso sutil */
@keyframes pulse {
  from {
    transform: scale(1);
    text-shadow: 0 0 5px rgba(13, 110, 253, 0.2);
  }
  to {
    transform: scale(1.05);
    text-shadow: 0 0 15px rgba(13, 110, 253, 0.4);
  }
}
/* Efecto para cada tipo de número */
.counter-number.text-primary.animating {
  color: #0d6efd !important;
  text-shadow: 0 0 10px rgba(13, 110, 253, 0.3);
}

.counter-number.text-success.animating {
  color: #198754 !important;
  text-shadow: 0 0 10px rgba(25, 135, 84, 0.3);
}

.counter-number.text-warning.animating {
  color: #ffc107 !important;
  text-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.counter-number.text-info.animating {
  color: #0dcaf0 !important;
  text-shadow: 0 0 10px rgba(13, 202, 240, 0.3);
}

/* Efecto cuando aparece el + en Ahorros Anuales */
.text-success.counter-number.completed::after {
  content: "+";
  margin-left: 2px;
  animation: fadeInPlus 0.3s ease;
  color: inherit;
}

@keyframes fadeInPlus {
  from {
    opacity: 0;
    transform: translateX(-5px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
body {
  font-family: "Roboto", sans-serif;
  padding-top: 76px;
  overflow-x: hidden;
}

footer a:hover {
  color: #0d6efd !important;
  transition: color 0.3s ease;
}

.hero-section {
  margin-bottom: 3rem;
}

.hero-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1)), url("../assets/images/heroes/hero-home.jpg");
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-content {
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  top: 30%;
  left: 25%;
  width: 50%;
  height: 26%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  border-radius: 20px;
  backdrop-filter: blur(5px);
  z-index: 1;
}

.btn-primary {
  background-color: #0d6efd;
  border-color: #0d6efd;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
}
.btn-primary:hover {
  background-color: rgb(1.762295082, 87.2336065574, 213.237704918);
  border-color: rgb(1.6786885246, 83.0950819672, 203.1213114754);
}

.service-card {
  transition: transform 0.3s ease;
  transition: box-shadow 0.3s ease;
  border: none;
  border-radius: 10px;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.service-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: #0d6efd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 50px;
  height: auto;
  margin-right: 10px;
}

.brand-text {
  font-size: 1.5rem;
  font-weight: 700;
}

.navbar-nav .nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}

@media (max-width: 768px) {
  .hero-banner {
    height: 50vh;
  }
  .display-4 {
    font-size: 2.5rem;
  }
  .hero-content .lead {
    font-size: 1rem;
  }
}

/*# sourceMappingURL=style.css.map */
