/* ========================================
   HERO - LP DNE Internacional (UNE)
   Figma node 6:28
   ======================================== */

.hero-une {
  position: relative;
  background-color: #0066B3;
  background-image: url('../img/hero-bg-desktop.webp');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-une__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-une__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 39px;
  max-width: 551px;
  padding: 60px 0;
}

.hero-une__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.28;
  color: #FFFFFF;
  max-width: 456px;
  margin: 0;
}

.hero-une__description {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  color: #FFFFFF;
  margin: 0;
}

.hero-une__image {
  flex-shrink: 0;
  align-self: flex-end;
  max-width: 693px;
}

.hero-une__image img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1200px) {
  .hero-une__image {
    max-width: 520px;
  }
}

@media (max-width: 991px) {
  .hero-une {
    background-image: url('../img/hero-bg-mobile.webp');
    background-position: center bottom;
  }

  .hero-une__container {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .hero-une__content {
    max-width: 551px;
    padding: 48px 0 40px;
    gap: 24px;
  }

  .hero-une__title {
    font-size: 32px;
  }

  .hero-une__description {
    font-size: 18px;
  }

  .hero-une__image {
    align-self: center;
    max-width: 480px;
  }
}

@media (max-width: 480px) {
  .hero-une__title {
    font-size: 28px;
  }

  .hero-une__description {
    font-size: 16px;
  }

  .hero-une__image {
    max-width: 360px;
  }
}
