/* ================================================================
   SECTIONS/HERO.CSS
================================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-2xl);
  padding-top: var(--nav-h);
  padding-inline: var(--sp-2xl);
  overflow: hidden;
}

/* Fondo: foto real campo de amaranto */
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1920&q=85');
  background-size: cover;
  background-position: center 40%;
  animation: kenburns 22s ease-in-out infinite;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(7,21,10,.88) 0%,
    rgba(7,21,10,.72) 45%,
    rgba(7,21,10,.35) 100%
  );
}

/* Hero content */
.hero-content {
  position: relative; z-index: 2;
}

/* ── Logo centrado en el hero ───────────────────────────── */
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: var(--sp-lg);
}
.hero-logo {
  height: 160px;
  width: auto;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,.45));
  animation: float 5s ease-in-out infinite;
}

/* Badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-full);
  padding: .35rem 1rem;
  font-size: .72rem;
  font-weight: var(--fw-semi);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-bottom: var(--sp-md);
  backdrop-filter: blur(8px);
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--wa); border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: var(--fw-black);
  color: #fff;
  line-height: 1.05;
  margin-bottom: var(--sp-md);
}
.hero-h1 .accent-g    { color: var(--gll); }
.hero-h1 .accent-gold { color: var(--gold); }

.hero-slogan {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: .04em;
  margin-bottom: var(--sp-md);
}

.hero-sub {
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: var(--sp-xl);
}

.hero-btns {
  display: flex; flex-wrap: wrap; gap: var(--sp-sm);
  margin-bottom: var(--sp-xl);
}

.hero-social {
  display: flex; align-items: center; gap: var(--sp-sm);
  color: rgba(255,255,255,.5); font-size: .8rem;
}
.soc-link {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all var(--dur-base);
}
.soc-link:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.5);
}

/* Mosaico foto hero derecha */
.hero-mosaic {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 200px;
  gap: .75rem;
}
.hm-img {
  position: relative; overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.hm-img:first-child { grid-column: 1 / -1; height: 260px; }
.hm-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.hm-img:hover img { transform: scale(1.06); }
.hm-lbl {
  position: absolute; bottom: .7rem; left: .7rem;
  background: rgba(0,0,0,.55);
  color: #fff; font-size: .68rem;
  font-weight: var(--fw-semi);
  letter-spacing: .08em; text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(6px);
}

/* Wave bottom */
.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0;
  line-height: 0; z-index: 2;
}
.hero-wave svg { display: block; width: 100%; }