/* ═══════════════════════════════════════════════════════════════
   LoveCats — Hero Section
   ═══════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-block: var(--s-20);

  background-image: url('../images/fundo.png');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

/* Warm dark overlay — two layers for depth */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  background: radial-gradient(
    ellipse at 60% 40%,
    rgba(224, 117, 53, 0.12) 0%,
    transparent 60%
  );
}

.hero::after {
  background: linear-gradient(
    to bottom,
    rgba(10, 8, 6, 0.82) 0%,
    rgba(10, 8, 6, 0.70) 45%,
    rgba(10, 8, 6, 0.88) 100%
  );
}

[data-theme="light"] .hero::after {
  background: linear-gradient(
    to bottom,
    rgba(253, 246, 239, 0.60) 0%,
    rgba(253, 246, 239, 0.40) 50%,
    rgba(253, 246, 239, 0.70) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  text-align: center;
  padding-inline: var(--s-4);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: var(--s-5);
  padding: var(--s-2) var(--s-4);
  background: var(--c-primary-dim);
  border: 1px solid rgba(224, 117, 53, 0.25);
  border-radius: var(--r-full);
  backdrop-filter: blur(8px);
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: var(--r-full);
  background: var(--c-primary);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-size: var(--text-5xl);
  font-weight: 800;
  line-height: 1.1;
  color: var(--c-text-1);
  margin-bottom: var(--s-6);
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: normal;
  color: var(--c-primary);
}

.hero-desc {
  font-size: var(--text-lg);
  color: var(--c-text-1);
  line-height: 1.7;
  margin: 0 auto var(--s-10);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

[data-theme="light"] .hero-desc {
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.6);
}

.hero-actions {
  display: flex;
  gap: var(--s-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero stats strip */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0;
  background: color-mix(in srgb, var(--c-surface) 85%, transparent);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--c-border);
}

.hero-stat {
  flex: 1;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--s-5) var(--s-4);
  gap: var(--s-1);
  border-right: 1px solid var(--c-border);
}
.hero-stat:last-child { border-right: none; }

.hero-stat__num {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1;
}

.hero-stat__label {
  font-size: var(--text-xs);
  color: var(--c-text-2);
  font-weight: 500;
}

@media (max-width: 640px) {
  .hero { min-height: 70svh; }
  .hero-stats { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
}
