.values-grid { 
  display: grid; 
  grid-template-columns: repeat(3,1fr); 
  gap: 1.5rem; 
}

@media(max-width:768px) { 
  .values-grid { grid-template-columns: 1fr; } 
}

.value-card { 
  padding: 3rem 2rem; 
  border: 1px solid var(--color-border); 
  border-radius: 16px; 
  background: var(--color-bg-3); 
  text-align: center; 
  transition: all .35s ease; 
}

.value-card:hover { 
  border-color: var(--color-primary-light); 
  background: var(--color-surface); 
  transform: translateY(-6px); 
  box-shadow: var(--shadow-card);
}

.value-icon { 
  font-size: 2.5rem; 
  color: var(--color-primary);
  margin-bottom: 1.25rem; 
  display: block; 
  border: none;
  background: none;
}

.value-title { 
  font-family: 'Playfair Display', Georgia, serif; 
  font-size: 1.4rem; 
  font-weight: 600; 
  color: var(--color-text); 
  margin-bottom: .6rem; 
}

.value-desc { 
  font-size: .95rem; 
  color: var(--color-text-muted); 
  line-height: 1.7; 
}

blockquote { 
  border-left: 3px solid var(--color-primary); 
  padding-left: 1.75rem; 
  margin: 2.5rem 0; 
  font-style: italic; 
  font-family: 'Playfair Display', Georgia, serif; 
  font-size: 1.35rem; 
  color: var(--color-text); 
  line-height: 1.7; 
}

.story-layout { 
  display: grid; 
  grid-template-columns: 1fr 1.2fr; 
  gap: 5rem; 
  align-items: start; 
}

@media(max-width:1024px) { 
  .story-layout { grid-template-columns: 1fr; gap:3rem; } 
}

/* =========================================
   HERO CAROUSEL
   ========================================= */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Specific positioning to see the people */
.hero-slide:nth-child(1) .hero-img {
  object-position: center 80%; /* Adjusted for hero_nosotros.jpg */
}

.hero-slide:nth-child(2) .hero-img {
  object-position: center 75%; /* Adjusted for nosotros.jpg */
}

/* Carousel Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--color-primary);
  width: 30px;
  border-radius: 10px;
}
