#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0A0F0D 0%, #050807 100%);
  overflow: hidden;
  padding: 120px 5% 80px;
}

/* Fondos decorativos */
.hero-gradient-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(85, 107, 47, 0.08), transparent 50%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(85, 107, 47, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 107, 47, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-glow-spot {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}

.hero-glow-1 {
  background: #556B2F;
  top: -200px;
  right: -200px;
  animation: floatGlow 12s ease-in-out infinite;
}

.hero-glow-2 {
  background: #7A8450;
  bottom: -200px;
  left: -200px;
  animation: floatGlow 15s ease-in-out infinite reverse;
}

@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

/* Container principal */
.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Contenido izquierdo */
.hero-content {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(85, 107, 47, 0.3);
  border-radius: 100px;
  padding: 0.6rem 1.4rem;
  margin-bottom: 2rem;
  font-size: 0.8rem;
  color: #A4B87A;
  letter-spacing: 0.3px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #7A8450;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1); }
}

/* TIPOGRAFÍA */
.hero-title {
  margin-bottom: 1.5rem;
}

.hero-title-line {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero-title-highlight {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 700;
  background: linear-gradient(135deg, #C5D87A 0%, #8BAF4B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
  margin-top: 0.2rem;
}

.hero-description {
  margin-bottom: 2.5rem;
}

.hero-description p {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
}

/* Botones */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.8rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--ff-body);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  cursor: pointer;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #556B2F, #3D4F23);
  color: white;
  border: none;
  box-shadow: 0 8px 20px rgba(85, 107, 47, 0.3);
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(85, 107, 47, 0.4);
  background: linear-gradient(135deg, #6A8640, #4A622C);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
}

.hero-btn-secondary:hover {
  background: rgba(85, 107, 47, 0.2);
  border-color: rgba(85, 107, 47, 0.5);
  transform: translateY(-2px);
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-item {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-suffix {
  font-family: var(--ff-display);
  color: #7A8450;
  font-size: 1.4rem;
  font-weight: 500;
}

.hero-stat-label {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #A4B87A;
  margin-bottom: 0.2rem;
}

.hero-stat-desc {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Media section */
.hero-media {
  position: relative;
}

.hero-media-card {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(85, 107, 47, 0.3);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
}

.hero-media-card:hover {
  transform: translateY(-8px);
  border-color: rgba(85, 107, 47, 0.6);
  box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.6);
}

.hero-media-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-family: var(--ff-body);
  color: #C5D87A;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hero-media-controls {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.media-control {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  color: white;
}

.media-control:hover {
  background: rgba(85, 107, 47, 0.8);
  transform: scale(1.1);
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
  pointer-events: none;
}

/* Trust indicators */
.hero-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-family: var(--ff-body);
  color: rgba(255, 255, 255, 0.6);
}

.hero-trust-item svg {
  opacity: 0.7;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.hero-scroll:hover {
  opacity: 1;
}

.hero-scroll-wheel {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  position: relative;
}

.hero-scroll-wheel::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #7A8450;
  border-radius: 2px;
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

.hero-scroll span {
  font-size: 0.7rem;
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-description p {
    max-width: 100%;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-stat-item {
    text-align: center;
  }
  
  .hero-trust {
    margin-top: 1.5rem;
  }
  
  .hero-scroll {
    display: none;
  }
}

@media (max-width: 640px) {
  #hero {
    padding: 100px 5% 60px;
  }
  
  .hero-stats {
    gap: 1rem;
  }
  
  .hero-stat-divider {
    display: none;
  }
  
  .hero-stat-number {
    font-size: 1.8rem;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-btn {
    justify-content: center;
  }
}