.home-section {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  padding: 16px;
  color: var(--dark-50);
  gap: 32px;
}

.left-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.left-side h1 {
  font-family: "Taviraj", serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 120%;
  text-align: center;
}

.left-side p {
  font-size: 12px;
  text-align: center;
  line-height: 150%;
}

.description-home {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.description-home p{
  color: rgb(39, 39, 39);
}

.right-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.right-side .photo-home {
  width: 288px;
  height: 155px;
  border-radius: 32px;
  background-color: var(--primary-50);
  background-image: url('../images/home.png');
  background-position: center;
  background-size: cover;
}

/* >>- find out more (BUTTON) -<< */
.findOut-Link {
  display: flex;
}

.findOut-Button {
  padding: 10px 18px;
  width: 100%;
  position: relative;
  border: none;
  transition: all 0.5s ease;
  z-index: 1;
  cursor: pointer;
  border-radius: 18px;
  background-color: var(--primary-300);
  color: var(--primary-50);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  overflow: hidden;
}

/* default hide arrow */
.findOut-Button .button-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 100%) scale(0); /* Inicialmente abaixo e invisível */
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  font-size: 1.2em; /* Tamanho do ícone, ajuste conforme necessário */
}

/* button text style */
.findOut-Button .button-text {
  display: inline-block; /* Permite a transformação */
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.findOut-Button:hover {
  background-color: var(--primary-200);
}

/* when hovering, text moves up and disappears*/
.findOut-Button:hover .button-text {
  transform: translateY(-100%);
  opacity: 0;
}

/* when hovering, the arrow icon appears and moves to the center  */
.findOut-Button:hover .button-icon {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* <- screens above 481px (BIGGER CELLPHONES) -> */

@media screen and (min-width: 481px) {
}

/* <- screens above 768px (TABLETS) -> */

@media screen and (min-width: 768px) {
  .home-section {
    flex-direction: row;
    padding: 32px;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    align-self: stretch;
    padding-bottom: 50px;
  }

  .left-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .left-side h1 {
    font-size: 42px;
    text-align: left;
  }

  .left-side p {
    text-align: left;
    font-size: 16px;
  }

  .right-side {
    align-items: flex-end;
  }

  .right-side .photo-home {
    width: 288px;
    height: 332px;
  }

  .findOut-Button {
    font-size: 16px;
  }
}

/* <- screens above 1024px (SMALL DESKTOP) -> */

@media screen and (min-width: 1024px) {
  .home-section {
    margin-top: 32px;
    padding-left: 138px;
    padding-right: 138px;
  }

  .left-side p {
    font-size: 16px;
  }

  .right-side .photo-home {
    width: 578px;
    height: 432px;
  }
}

/* <- screens above 12001px (BIGGER DESKTOP) -> */

@media screen and (min-width: 1201px) {
  .left-side h1 {
    font-size: 48px;
    line-height: 120%;
  }
}

/* <- screens above 1600px (ULTRA-WIDE) -> */

@media screen and (min-width: 1600px) {
}
