/* ============================================
   HERO - Main Hero Section
   ============================================ */

#hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: var(--color-bg-light);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.25;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(30%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-overlay-from-light {
  background: linear-gradient(to right, var(--color-bg-light), var(--color-bg-light) 90%, transparent);
}

.hero-overlay-from-bottom {
  background: linear-gradient(to top, var(--color-bg-light), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  margin-right: 0.5rem;
  margin-left: 0.5rem;
}

@media (min-width: 640px) {
  .hero-content {
    padding: 0 1.5rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 4rem;
  }
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
}

@media (min-width: 1024px) {
  .hero-left {
    grid-column: span 7;
  }
}

.hero-right {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .hero-right {
    grid-column: span 5;
  }
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background-color: rgba(27, 48, 34, 0.1);
  border: 1px solid rgba(27, 48, 34, 0.3);
  border-radius: 0.125rem;
  padding: 0.375rem 1rem;
  backdrop-filter: blur(5px);
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-livo-green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.badge-text {
  color: #2c372e;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

/* Headline */
.hero-headline {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.12;
}

.hero-headline .highlight {
  color: var(--color-livo-green);
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: var(--color-livo-gold);
  text-underline-offset: 8px;
}

/* Subheadline */
.hero-subheadline {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.7;
  max-width: 42rem;
}

/* CTAs */
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.5rem;
}

@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
  }
}

.hero-ctas-stretch {
  flex: 1;
}

.hero-cta-whatsapp {
  background-color: var(--color-livo-green);
  color: #fff;
  border: 1px solid rgba(197, 168, 128, 0.5);
  font-weight: 500;
  padding: 1rem 1.5rem;
  border-radius: 0.125rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
}

.hero-cta-whatsapp:hover {
  background-color: #152A1E;
}

.hero-cta-whatsapp .icon {
  font-size: 1.25rem;
}

.hero-cta-whatsapp .cta-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero-cta-pdf {
  background-color: #fff;
  color: var(--color-livo-green);
  border: 1px solid rgba(27, 48, 34, 0.4);
  font-weight: 600;
  padding: 1rem 1.5rem;
  border-radius: 0.125rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hero-cta-pdf:hover {
  background-color: var(--color-bg-cream);
}

/* Trust Indicators */
.hero-trust {
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 1px solid rgba(27, 48, 34, 0.2);
  font-size: 12px;
  color: var(--color-text-muted);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-icon {
  color: var(--color-livo-green);
}

/* Highlight Card */
.highlight-card {
  background: #fff;
  border: 1px solid rgba(27, 48, 34, 0.2);
  border-radius: 0.375rem;
  padding: 1.5rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .highlight-card {
    padding: 2rem;
  }
}

.highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background-color: rgba(27, 48, 34, 0.05);
  border-radius: 50%;
  filter: blur(24px);
  pointer-events: none;
}

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(27, 48, 34, 0.15);
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.card-subtitle {
  font-size: 11px;
  color: var(--color-accent);
  font-weight: 700;
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.card-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.125rem;
  background-color: var(--color-livo-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Stats Grid */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.stat-card {
  background-color: var(--color-bg-light);
  padding: 1rem;
  border-radius: 0.125rem;
  border: 1px solid rgba(27, 48, 34, 0.15);
}

.stat-value {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-livo-green);
}

@media (min-width: 640px) {
  .stat-value {
    font-size: 1.875rem;
  }
}

.stat-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-top: 0.25rem;
}

.stat-sub {
  font-size: 10px;
  color: #5d6b5f;
  margin-top: 0.125rem;
}

/* Card CTA */
.card-cta {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-cta-btn {
  background-color: var(--color-livo-green);
  color: #fff;
  border: 1px solid rgba(197, 168, 128, 0.4);
  font-weight: 500;
  padding: 0.875rem 1rem;
  border-radius: 0.125rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.card-cta-btn:hover {
  background-color: var(--color-livo-green-deep);
}

.card-cta-note {
  font-size: 11px;
  text-align: center;
  color: var(--color-text-muted);
  font-style: italic;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  color: var(--color-livo-green);
  transition: color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-size: 12px;
  animation: float 4s ease-in-out infinite;
}

.scroll-indicator:hover {
  color: var(--color-accent);
}

.scroll-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 700;
}
