.work {
  display: flex;
  min-height: 100vh;
  padding: 0 80px;
  align-items: center;
  gap: 80px;
}

.service h1 {
    
    color: #2F642D;
    font-size: 50pt;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    margin-left: 90px;
}

/* IMAGEM (ESQUERDA) */

.work__right {
  position: relative;
  width: 50%;
  height: 500px;
  overflow: hidden;
}

/* TEXTO (DIREITA) */
.work__left {
  position: relative;
  width: 50%;
  height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
}

.work__info {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.work__left-b1 {
  padding-left: 40px;
}

.work__left-text {
  color: #2F642D;
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 800;
  max-width: 500px;
  padding-bottom: 15px;
}

.work__left-subtext {
    color: #686868;
    font-size: 20px;
    max-width: 500px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
}

.work__left-button {
    width: 161px;
    height: 35px;
    background-color: #C3FB7D;
    border-radius: 16px;
    border: none;
    color: #424242;
    font-family: 'Inter', sans-serif;
    font-size: 12pt;
    font-weight: 600;
    margin-top: 15px;
    transition: 0.3s;
    cursor: pointer;
}

.work__left-button:hover {
    background-color: #c2fb7dcb;
    transition: 0.3s;
}

.work__left-button:active {
    background-color: #3e893b;
}

/* IMAGENS */
.work__photo {
  position: relative;
  width: 100%;
  height: 100%;
}

.work__photo-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.work__photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}



/* responsividade */

/* tablets */
@media (max-width: 900px) {

  .work {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 0 44px;
  }

  .work__photo {
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 50px;
  }


  /* IMAGEM EM CIMA */
  .work__right {
    width: 100%;
    height: 50%;
  }

  /* TEXTO EMBAIXO */
  .work__left {
    width: 100%;
    height: 40%;
  }

}


/* mobile pequeno */
@media (max-width: 480px) {
  .work__left-b1 {
    padding-left: 20px;
  }
}

@media (max-width: 425px) {
    .work__left-b1 {
      padding-left: 20px;
    }
}


/* mini devices (iphone antigo) */
@media (max-width: 390px) {
   .work__left-text {  
    font-size: 32px;

  }

  .work__left-subtext {

      font-size: 16px;
  }
}
