/* ==========================================================================
   HERO SLIDER MODERNO
   ========================================================================== */

.hero-slider-section {
  position: relative;
  height: 90vh;
  min-height: 640px;
  max-height: 860px;
  background-color: var(--color-bg-dark);
  overflow: hidden;
  margin-top: var(--header-height);
}

.hero-slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.04);
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg, 
    rgba(7, 39, 24, 0.92) 0%, 
    rgba(7, 39, 24, 0.75) 45%, 
    rgba(7, 39, 24, 0.2) 100%
  );
  z-index: 2;
}

.hero-slide-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
  color: #ffffff;
  padding: 40px 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  background: rgba(43, 183, 74, 0.15);
  border: 1px solid rgba(43, 183, 74, 0.35);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  width: fit-content;
}

.hero-title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.hero-title span {
  color: var(--color-accent);
}

.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Controles do Slider */
.slider-controls {
  position: absolute;
  bottom: 40px;
  right: calc((100% - var(--container-width)) / 2 + 24px);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.slider-btn:hover {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  border-color: var(--color-accent);
  transform: scale(1.08);
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.35);
  transition: all var(--transition-smooth);
  cursor: pointer;
}

.slider-dot.active {
  width: 32px;
  background: var(--color-accent);
}
