/* Layout y componentes del sitio */
.navbar-brand img{ height: 40px; }
.hero-img{ border-radius: 16px; box-shadow: var(--shadow-sm); }
.section-muted{ background: #f7f8fb; }

/* Tarjetas de patrocinadores */
.sponsor-card{
  display:block; background:#fff; border:1px solid rgba(0,0,0,.06);
  border-radius:14px; padding:16px; height:100%; transition:.2s;
}
.sponsor-card:hover{ box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.sponsor-logo{ max-height:56px; object-fit:contain; width:100%; }

/* Footer */
.site-footer small{ color: var(--color-gris-oscuro); }

/* =========================================================
   HERO — Ajustes de tamaño (imagen más contenida)
   ========================================================= */

.hero .lead{
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: left; /* Mejor legibilidad */
}

/* Hero gráfico limpio: sin bordes ni marco */
.hero-graphic{
  display: inline-block;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

/* Imagen mucho más pequeña */
.hero-graphic-img{
  display: block;
  max-width: 260px;  /* desktop */
  height: auto;
}

/* Badges estadísticos (si se usan) */
.stat-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:14px;
  padding:18px;
}

/* Responsivo */
@media (max-width: 992px){
  .hero-graphic-img{
    max-width: 200px; /* tablet */
  }
  .hero .lead{
    font-size: 1.05rem;
  }
}

@media (max-width: 576px){
  .hero-graphic-img{
    max-width: 160px; /* móvil */
  }
}

/* =========================================================
   Tira de patrocinadores (marquesina)
   ========================================================= */
.sponsors-strip{
  overflow: hidden;
}
.sponsors-track{
  display: flex;
  align-items: center;
  gap: 32px;
}
.sponsors-track img{
  height: 42px;
  object-fit: contain;
  opacity: .9;
  transition: .2s;
}
.sponsors-track img:hover{
  opacity: 1;
  transform: translateY(-1px);
}
