/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-animated);
  background-size: 300% 300%;
  animation: gradientShift 10s ease infinite;
  padding-top: 80px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(47,183,165,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}
.hero__content { animation: fadeInLeft 0.9s ease both 0.2s; }
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(47,183,165,0.12);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero__label span { width: 6px; height: 6px; background: var(--color-primary); border-radius: 50%; display: inline-block; }
.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: 20px;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, #2FB7A5, #2F8FB7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 7px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}
.hero__badge-icon { font-size: 1rem; }
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Products visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 32px;
  padding: 40px 20px;
  animation: fadeInUp 1s ease both 0.4s;
}
.hero__product {
  position: relative;
  text-align: center;
}
.hero__product-img {
  filter: drop-shadow(0 20px 40px rgba(47,183,165,0.25));
  transition: filter var(--transition);
}
.hero__product-img:hover { filter: drop-shadow(0 28px 48px rgba(47,183,165,0.40)); }
.hero__product--plus .hero__product-img {
  width: 180px;
  animation: float 4s ease-in-out infinite;
}
.hero__product--activos .hero__product-img {
  width: 220px;
  animation: float2 4.5s ease-in-out infinite 0.6s;
}
.hero__product-label {
  margin-top: 16px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
}
.hero__product-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
}
/* Glow behind products */
.hero__visual::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(47,183,165,0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  font-family: var(--font-heading);
  animation: fadeInUp 1s ease both 1.2s;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--color-primary), transparent);
  animation: float 2s ease-in-out infinite;
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero__subtitle { margin: 0 auto 32px; }
  .hero__badges { justify-content: center; }
  .hero__ctas { justify-content: center; }
  .hero__product--plus .hero__product-img { width: 130px; }
  .hero__product--activos .hero__product-img { width: 160px; }
}

/* ===== HERO EMOCIONAL (nuevo) ===== */

/* Logo imagen en navbar */
.navbar__logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Hero full-screen con foto de fondo */
.hero--emotional {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #1a2025;
  overflow: hidden;
}

.hero__bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  animation: heroScale 14s ease-in-out infinite alternate;
}
@keyframes heroScale {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,25,35,0.55) 0%,
    rgba(15,25,35,0.40) 40%,
    rgba(15,25,35,0.75) 100%
  );
}

/* Contenedor centrado */
.hero__center {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding-top: 80px;
}
.hero__content--centered {
  text-align: center;
  max-width: 780px;
}

/* Títulos blancos */
.hero__title--light {
  color: white;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hero__title--light em {
  color: #6ee9da;
  font-style: normal;
}
.hero__subtitle--light {
  color: rgba(255,255,255,0.88);
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

/* Badges oscuros translúcidos */
.hero__badges--light { justify-content: center; }
.hero__badge--dark {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 0.85rem;
}

/* Botón outline blanco */
.btn-white-outline-hero {
  border: 2px solid rgba(255,255,255,0.65);
  color: white;
  border-radius: var(--radius-full);
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
  text-decoration: none;
}
.btn-white-outline-hero:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}

@media (max-width: 768px) {
  .hero__bg-img { object-position: 60% 20%; }
  .hero__content--centered { padding: 0 8px; }
}
