/* Proyecto - estilos */
.rll-hero {
  min-height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: left;
  position: relative;
}
.rll-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(0, 140, 65, 0.5) 19%, rgba(0, 160, 190, 0.5) 69%);
}
.rll-hero-inner{
  position: relative;
  z-index: 2;
  /* padding: 40px; */
  max-width: 1200px;
}
.rll-hero-title { font-size: 2.6rem; margin: 0 0 20px; color: #fff; text-transform: initial;}
.rll-hero-excerpt { font-size: 1.1rem; margin: 0; opacity: 0.95; color: #fff;}

.rll-section-stats { padding: 60px 20px; text-align: center; }
.rll-section-title { font-size: 2rem; margin-bottom: 8px; }
.rll-section-subtitle { color: #666; margin-bottom: 30px; }

.rll-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .rll-stats-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .rll-stats-grid { grid-template-columns: 1fr; }
}

.rll-stat-item {
  background: #fafafa;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.rll-stat-number {
  font-size: 2.6rem;
  font-weight: 700;
  color: #229b3e;
  margin-bottom: 10px;
  text-align: center;
}
.rll-stat-text {
  font-size: 1rem;
  color: #333;
  text-align: center;
}

/* Related zone */
.rll-related-zone { padding: 30px 20px; background: #fff; text-align: center; border-top: 1px solid #eee; }
.rll-related-zone h3 { margin: 0 0 6px; font-size: .95rem; color: #333; }
.rll-related-zone a { color: #229b3e; text-decoration: none; font-weight: 600; }

/* content */
.rll-content { padding: 40px 20px; }
.rll-content-inner { max-width: 900px; margin: 0 auto; }

























