/* ============================================
   HERO NOSOTROS - MISMO DISEÑO DEL INDEX
   ============================================ */

.hero-nosotros {
  margin-top: 80px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 6rem 2rem;
  color: white;
}

/* Bolas flotantes del index */
.hero-nosotros::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
}

.hero-nosotros::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  animation: float 15s infinite ease-in-out reverse;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

.hero-nosotros-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  width: 100%;
}

.hero-nosotros-content {
  color: white;
}

.hero-nosotros-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-nosotros-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-nosotros-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  font-weight: 300;
  line-height: 1.6;
}

/* Video en Hero */
.hero-video-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-placeholder-hero {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.video-placeholder-hero:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.02);
}

.video-play-icon {
  font-size: 4rem;
  color: white;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.video-placeholder-hero h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: white;
  margin-bottom: 0.5rem;
}

.video-placeholder-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

/* ============================================
   SECCIÓN HISTORIA
   ============================================ */

.historia-section {
  padding: 6rem 2rem;
  background: white;
}

.historia-content {
  max-width: 900px;
  margin: 0 auto;
}

.historia-texto {
  text-align: center;
}

.historia-texto .section-tag {
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: block;
}

.historia-texto h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 3rem;
}

.historia-parrafos {
  text-align: left;
  margin-bottom: 3rem;
}

.historia-parrafos p {
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.parrafo-destacado {
  font-size: 1.2rem !important;
  color: var(--primary) !important;
  font-weight: 500;
  border-left: 4px solid var(--primary);
  padding-left: 1.5rem;
  margin-bottom: 2rem !important;
}

.frase-impacto {
  background: linear-gradient(135deg, var(--bg-alt) 0%, #e5e7eb 100%);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  text-align: center;
}

.frase-impacto p {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.frase-destacada {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem !important;
  color: var(--primary) !important;
  font-weight: 600;
}

.cierre-historia {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 20px;
  color: white;
}

.cierre-historia p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  opacity: 0.95;
}

.cierre-historia .tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0;
}

.iconos-destino {
  font-size: 1.5rem;
}

/* ============================================
   SECCIÓN MISIÓN, VISIÓN, VALORES
   ============================================ */

.mvv-section {
  padding: 6rem 2rem;
  background: var(--bg-alt);
}

.mvv-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.mvv-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 5px solid var(--primary);
}

.mvv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.mvv-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mvv-icon i {
  font-size: 2.5rem;
  color: white;
}

.mvv-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.mvv-content p {
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Grid de valores */
.valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.valor-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-alt);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.valor-item:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.valor-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
  display: block;
}

.valor-item:hover i {
  color: white;
}

.valor-item span {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.valor-item small {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
}

.valor-item:hover small {
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-nosotros-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-nosotros-content h1 {
    font-size: 2.8rem;
  }

  .mvv-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mvv-icon {
    margin: 0 auto;
  }

  .valores-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-nosotros-content h1 {
    font-size: 2.2rem;
  }

  .hero-nosotros-subtitle {
    font-size: 1.1rem;
  }

  .video-placeholder-hero {
    max-width: 100%;
  }

  .historia-texto h2 {
    font-size: 2rem;
  }

  .historia-parrafos p {
    font-size: 1rem;
  }

  .mvv-card {
    padding: 2rem;
  }

  .mvv-content h3 {
    font-size: 1.6rem;
  }

  .valores-grid {
    grid-template-columns: 1fr;
  }

  .frase-impacto p {
    font-size: 1rem;
  }

  .frase-destacada {
    font-size: 1.2rem !important;
  }
}

@media (max-width: 480px) {
  .hero-nosotros {
    padding: 3rem 1.5rem;
  }

  .hero-nosotros-content h1 {
    font-size: 1.8rem;
  }

  .video-play-icon {
    font-size: 3rem;
  }

  .video-placeholder-hero h3 {
    font-size: 1.4rem;
  }

  .mvv-card {
    padding: 1.5rem;
  }

  .mvv-icon {
    width: 60px;
    height: 60px;
  }

  .mvv-icon i {
    font-size: 1.8rem;
  }
}