.nav-link {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.875;
    text-transform: none;
    color:#1a1b1e ;
}

.page-hero-subpage {
  background-image: url("../img/bg-page-header.jpg");
  background-size: cover;
  background-position: center;
  min-height: 300px; /* o 100vh si quieres pantalla completa */
}

.headers {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.25;
    text-transform: none;
    color:#1a1b1e ;
}

.nav-link:hover {
  color: #00c3ff;
}

.hero-container {
  position: relative; /* permite posicionar elementos hijos */
  display: inline-block;
  width: 100%;
}

.bg-image {
  width: 100%;
  height: auto;
  display: block;
}

.hero-text {
  position: absolute; 
  top: 50%;           
  left: 50%;          
  transform: translate(-50%, -50%); 
  text-align: center;
  color: white;       
  z-index: 10;        
  background: rgba(0, 0, 0, 0.4); 
  padding: 20px;
  border-radius: 10px;
}

.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  width: calc(250px * 8); /* 8 logos (4 + repetidos) */
  animation: scroll 40s linear infinite;
}

.logo-track img {
  width: 250px;  /* ajusta el ancho de cada logo */
  height: auto;
  margin: 0 30px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* se mueve la mitad (4 logos) */
  }
}
.step-number {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;

  /* Degradado azul -> celeste */
  background: linear-gradient(to bottom, #007bff 0%, #00c6ff 100%)!important;

  /* Sombra opcional */
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}


/* Estado ABIERTO (no tiene .collapsed) */
.accordion-button:not(.collapsed) {
  background-color: #f8f9fa;    /* azul */
  color:rgb(7, 111, 172);                /* texto blanco */
  font-family: 'Red Hat Display', sans-serif;
  font-size: 18px;
  font-weight: 700;
}

/* Estado CERRADO (.collapsed presente) */
.accordion-button.collapsed {
  background-color: #f8f9fa;   /* gris claro */
  color:#F38027!important;            /* texto gris oscuro */
  font-family: 'Red Hat Display', sans-serif;
  font-size: 18px;
  font-weight: 700;
}


footer .list-unstyled li a {
  padding-left: 0;
  list-style: none;
  color: #00c6ff!important;
  font-size: 16px;
  font-family: 'Red Hat Display', sans-serif;
}

footer .list-unstyled li a:hover {
  color: #F38027!important;
  text-decoration: none;
}