.hero {
  clear: both;
  background: #efefef;
  margin: 0 auto;
  min-height: auto;
  position: relative;
  overflow: hidden;
}

.hero ul,
.hero ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero ul li img {
  display: block;
  margin: 0 auto;
  width: 100%;
}

#hero-hero-slider-mobile {
  display: none;
}

@media (max-width: 1200px) {
  .hero-slider {
    display: none !important;
  }

  #hero-hero-slider-mobile {
    display: block !important;
  }
}

.hero-slider {
  position: relative;
  visibility: hidden;
}

.hero-slider.slick-initialized {
  visibility: visible;
}

.arrow-hero {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-floating);
  cursor: pointer;
}

.arrow-hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color-text-primary);
  border-right: 2px solid var(--color-text-primary);
}

.arrow-hero:focus-visible {
  outline: 2px solid var(--color-brand-primary);
  outline-offset: 3px;
}

.prev-hero {
  left: 16px;
}

.prev-hero::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.next-hero {
  right: 16px;
}

.next-hero::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

@media (max-width: 1200px) {
  .arrow-hero {
    width: 36px;
    height: 36px;
  }

  .prev-hero {
    left: 10px;
  }

  .next-hero {
    right: 10px;
  }
}

@media screen and (max-width: 1200px) {
  .hero ul li img {
    width: 100%;
    height: 100dvh;
  }
}

/* ====================================== */
/* Media Queries para Espaçamento com Header Fixo */
/* ====================================== */

/* Tablets (768px) - Compensar altura do header fixo */
@media (max-width: 768px) {
  .hero {
    padding: 0;
    margin-top: 0;
  }

  .hero ul li img {
    width: 100%;
    height: auto;
    min-height: 200px;
  }
}

/* Smartphones (480px) - Compensar altura reduzida do header */
@media (max-width: 480px) {
  .hero {
    padding: 0px;
    margin: 0;
  }

  .hero ul li img {
    width: 100%;
    height: auto;
    min-height: 150px;
  }
}

/* Ultra pequenos (360px) - Altura mínima para header muito compacto */
@media (max-width: 360px) {
  .hero {
    padding-top: 80px;
    margin-top: 0;
  }

  .hero ul li img {
    width: 100%;
    height: auto;
    min-height: 120px;
  }
}

