/* ============================================
   SECCIÓN INICIO - HERO & PRESENTACIÓN
   ============================================ */

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.7) 0%,
    rgba(10, 10, 10, 0.4) 40%,
    rgba(10, 10, 10, 0.6) 70%,
    rgba(10, 10, 10, 0.95) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--container-padding);
}

.hero-logo {
  width: 220px;
  height: auto;
  margin: 0 auto 0.8rem;
  animation: float-logo 3s ease-in-out infinite;
}

@keyframes float-logo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
  line-height: 1.1;
}

.hero-title .brand-name {
  display: block;
  background: var(--color-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .brand-sub {
  display: block;
  font-size: 0.4em;
  font-weight: 400;
  color: var(--color-silver);
  letter-spacing: 6px;
  text-transform: uppercase;
  -webkit-text-fill-color: var(--color-silver);
  margin-top: 5px;
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--color-text-secondary);
  margin-bottom: 0.8rem;
  line-height: 1.6;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-values {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.hero-value {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  color: var(--color-gold);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-value-dot {
  display: none;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-lg);
}

.hero-scroll {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  animation: scroll-bounce 2s ease-in-out infinite;
}

.hero-scroll span {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  display: none;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ---- Sobre Nosotros (About) ---- */
.about-section {
  position: relative;
  padding-top: var(--spacing-lg);
  padding-bottom: var(--spacing-sm); /* Espacio reducido */
}

.about-section::before {
  display: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
  padding-top: 0;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--spacing-lg);
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.about-image-overlay .stat {
  display: flex;
  gap: var(--spacing-lg);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text h2 {
  margin-bottom: var(--spacing-md);
}

.about-text .gold-line {
  width: 60px;
  height: 3px;
  background: var(--color-gold-gradient);
  margin-bottom: var(--spacing-md);
  border-radius: 2px;
}

.about-text p {
  margin-bottom: var(--spacing-md);
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: var(--spacing-sm);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  min-height: 90px;
}


.about-feature:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.05);
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--color-gold-gradient);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.about-feature h4 {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .about-image img {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .hero-logo {
    width: 130px;
  }

  .hero-values {
    gap: 1rem;
  }

  .hero-value {
    font-size: 0.8rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .hero-scroll {
    display: none;
  }

  .about-section::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
  }

  .about-image img {
    height: 300px;
  }

  .about-image-overlay .stat {
    gap: var(--spacing-sm);
  }

  .stat-number {
    font-size: 1.5rem;
  }
}
