/* ============================================================
   HERO — Carrossel full-screen
   ============================================================ */

.hero {
  padding: 0;
  margin: 0;
  position: relative;
  width: 100%;
  /* Altura se adapta à proporção da imagem */
  height: auto;
  overflow: hidden;
  background: #000;
}

/* ── Carrossel ── */
.hero__carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero__carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ── Cada slide ocupa 100% do container ── */
.hero__carousel-slide {
  min-width: 100%;
  width: 100%;
  position: relative;
  flex-shrink: 0;
}

/* ── Imagem: largura total, proporção exata da primeira imagem (sem alterar altura do banner) ── */
.hero__carousel-slide img {
  width: 100%;
  aspect-ratio: 1983 / 793;
  object-fit: cover;
  object-position: center center;
  display: block;
  image-rendering: auto;
  border-radius: 0;
  box-shadow: none;
}

/* ── Dots de navegação ── */
.hero__carousel-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero__carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  padding: 0;
}

.hero__carousel-dot.active {
  background: var(--verde-vibrante);
  transform: scale(1.35);
}

/* ── Setas de navegação ── */
.hero__carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 61, 46, 0.65);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10;
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
}

/* Mostrar setas ao passar o mouse sobre o hero */
.hero:hover .hero__carousel-btn {
  opacity: 1;
  pointer-events: auto;
}

.hero__carousel-btn:hover {
  background: rgba(10, 61, 46, 0.95);
  transform: translateY(-50%) scale(1.08);
}

.hero__carousel-btn--prev { left: 20px; }
.hero__carousel-btn--next { right: 20px; }

/* ── CTA bar — abaixo do carrossel ── */
.hero__cta-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px 24px;
  flex-wrap: wrap;
  background: var(--cinza-claro, #f4f6f9);
}

/* ── Stats bar ── */
.hero__stats-bar {
  background: var(--gradient-verde-escuro);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.hero__stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 120% at 50% 50%, rgba(2, 226, 109, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__stats-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.hero__stat-item {
  text-align: center;
  padding: 8px 4px;
}

.hero__stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--verde-vibrante);
  line-height: 1;
  display: block;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

/* ── Separador entre stats ── */
.hero__stat-item + .hero__stat-item {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

/* ── Botão secundário no hero ── */
.hero__cta-bar .btn-secondary {
  background: transparent;
  color: var(--azul-escuro);
  border: 2px solid var(--azul-escuro);
  font-weight: 700;
}

.hero__cta-bar .btn-secondary:hover {
  background: var(--azul-escuro);
  color: var(--branco);
  border-color: var(--azul-escuro);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(4, 83, 157, 0.3);
}