/* ──────────────────────────────────────────────────────
   THE BREAK · HERO SECTION STYLES
   Hero banner, decorative elements, badges
   ────────────────────────────────────────────────────── */

#home {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 6% 5rem;
  gap: 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--crema) 60%, #F2EAD8 100%);
}

/* Decorative elements */
.hero-deco {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 163, 32, 0.25), transparent 68%);
  pointer-events: none;
  animation: pulse 6s ease-in-out infinite;
}

.hero-deco2 {
  position: absolute;
  bottom: -80px;
  left: 5%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 95, 59, 0.12), transparent 68%);
  pointer-events: none;
  animation: pulse 8s ease-in-out 2s infinite;
}

.hero-deco3 {
  position: absolute;
  top: 40%;
  left: 45%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 163, 32, 0.1), transparent 70%);
  pointer-events: none;
}

/* Hero content */
.hero-text {
  position: relative;
  z-index: 1;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--verde-dk);
  background: rgba(111, 163, 32, 0.1);
  border: 1px solid rgba(111, 163, 32, 0.25);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.1s forwards;
}

.hero-chip::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--verde);
  flex-shrink: 0;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--cafe);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.3s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--verde);
  font-weight: 400;
}

.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

.hero-btns {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 520px;
  opacity: 0;
  animation: fadeIn 1.2s 0.4s forwards;
}

.hero-img-main {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--crema2), var(--border));
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(92, 58, 26, 0.18);
}

/* Badges */
.hero-badge {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: linear-gradient(135deg, var(--verde-dk), var(--verde));
  color: var(--blanco);
  padding: 1rem 1.4rem;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(111, 163, 32, 0.45);
}

.hero-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.hero-badge span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero-badge2 {
  position: absolute;
  top: 30px;
  right: -10px;
  background: var(--blanco);
  border: 1.5px solid var(--border-v);
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(111, 163, 32, 0.15);
  font-size: 0.8rem;
  color: var(--cafe);
  font-weight: 500;
}

.hero-badge2 span {
  color: var(--muted);
  font-size: 0.7rem;
  display: block;
}
