@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #000000;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Meditative, sans-serif;
  width: 100vw;
  overflow-x: hidden;
  overflow-y: auto;
}

.container {
  display: flex;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  max-width: 1600px;
  padding: 0 70px;
}


.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  height: 100%;
  gap: 5px;
}

.menu li {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
  padding: 10px 15px;
  font-weight: 400;
  border-bottom: 2px solid transparent;
}

.menu a:hover {
  border-color: white;
}

.titulo {
  color: #57091f;
  font-size: 36px;
  position: relative;
  width: fit-content;
}

.titulo::before {
  content: "";
  width: 45px;
  height: 3px;
  background: #57091f;
  position: absolute;
  right: -60px;
  bottom: 7px;
  border-radius: 100px;
}

.hero {
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  background-image: url('../img/fundo.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100vw;
  max-height: 1080px;
  color: white;

}

.hero-texto {
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.hero-texto h1 {
  font-size: 50px;
  line-height: 52px;
  margin: 0;
  font-weight: 600;
}

.hero-texto p {
  font-size: 20px;
  margin: 0;
}

.hero-texto p span {
  text-decoration: underline;
}

.hero-imagem img {
  width: 600px;
  height: auto;
  border-radius: 10px;
}

.botao-white {
  background-color: #fff;
  text-decoration: none;
  color: black;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 500;
  margin-top: 20px;
  width: fit-content;
}

.botao-black {
  background-color: black;
  text-decoration: none;
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 500;
  width: fit-content;
  border: none;
  cursor: pointer;
}

.saiba-mais span {
  margin-left: 2px;
  transition: all 0.2s;
}

.saiba-mais {
  transition: all 0.2s;
}

.saiba-mais:hover {
  transform: scale(1.05);
}

.saiba-mais:hover span {
  margin-left: 8px;
}

.sobre-nos-container {
  display: flex;
  flex-direction: column;
}

.secao-titulo {
  font-size: 40px;
  color: white;
}

.sobre-nos {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 0px 80px;
}

.sobre-nos .card-imagem {
  width: 30%;
  height: 30rem;
  border-radius: 5px;
  object-fit: cover;
  overflow: hidden;
  box-shadow: 0px 0px 20px 0px #47738f;
}

.sobre-nos .card-texto {
  background-color: white;
  border-radius: 5px;
  padding: 20px;
  flex: 1;
}

.servicos-container {
  display: flex;
  flex-direction: column;
}

.servicos-lista {
  display: flex;
  gap: 100px;
  flex-wrap: wrap;
  justify-content: center;
}

.servico-item-lista {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border-radius: 5px;
  background-color: white;
  width: 20rem;
  gap: 10px;
}

.servico-item-lista img {
  height: 15rem;
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.servico-item-lista-tipo {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.servico-item-lista-detalhes {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}

.servico-item-lista button {
  height: 3rem;
  width: 100%;
}

.descricao-servicos {
  text-align: center;
  color: white;
}

.servicos-titulo-tipo {
  font-size: 30px;
  color: white;
  margin: 0px;
  margin-top: 14px;
}

.servicos-descricao-tipo {
  color: white;
  margin: 5px 0 15px 0;
}




.plano-hero {
  display: flex;
  justify-content: space-between;
  padding-top: 70px;
  padding-bottom: 70px;
  box-sizing: border-box;
  width: 100vw;
  color: white;
}

.plano-hero-texto {
  font-weight: 400;
  display: flex;
  flex-direction: column;
  padding: 50px 0;
  gap: 20px;

  color: white;
}

.plano-hero-texto h1 {
  font-size: 60px;
  line-height: 57.5px;
  margin: 0;
  font-weight: 600;
}

.plano-hero-texto p {
  font-size: 20px;
  margin: 0;
}

.plano-hero-texto p span {
  text-decoration: underline;
}

.plano-hero-imagem img {
  width: 600px;
  height: auto;
  border-radius: 10px;
}

.produtos-container {
  display: flex;
  flex-direction: column;
}

.produtos-lista {
  display: flex;
  gap: 40px;
  flex-direction: column;
}

.produto-item-lista {
  display: flex;
  gap: 40px;
  width: 100%;
  position: relative;

}

.produto-item-lista img {
  border-radius: 5px;
  object-fit: contain;
  height: 100%;
  width: 100%;
  object-position: center center;
}

.produto-imagem-wrapper:hover {
  transform: scale(1.1);
}

.produto-imagem-wrapper {
  transition: all 0.2s;
  position: relative;
  z-index: 1;
  width: 13rem;
  height: 13rem;
}

.produto-imagem-wrapper::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  height: 1px;
  width: 1px;
  box-shadow: 0px 0px 100px 40px rgba(128, 174, 255, 0.503);
  border-radius: 100px;
  z-index: -1;
  background-color: white;
}

.produto-item-lista-detalhes {
  background: rgb(255, 255, 255);
  border-radius: 5px;
  height: 100%;
  padding: 25px;
  width: 60%;
}

.produto-item-lista-detalhes span {
  font-size: 2rem;
  font-weight: 700;
}

.produto-item-lista-detalhes p {
  font-size: 1rem;
}

.sustentabilidade-container {
  display: flex;
  flex-direction: column;
  margin-top: 10rem;
}

.card-sustentabilidade {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
  text-decoration: none;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.imagem-sustentabilidade {
  width: 70%;
  object-fit: cover;
  border-radius: 0.5rem;
}



@media (max-width: 768px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .container {
    padding: 0 20px;
  }


  .titulo {
    font-size: 28px;
  }

  .hero-texto h1 {
    font-size: 40px;
    line-height: 42px;
  }

  .hero-texto p {
    font-size: 18px;
  }

  .hero-imagem img {
    width: 100%;
    height: auto;
  }

  .sobre-nos {
    flex-direction: column;
    padding: 0 20px;
  }

  .sobre-nos .card-imagem {
    width: 100%;
    height: auto;
  }

  .servicos-lista {
    flex-direction: column;
    gap: 20px;
  }

  .servico-item-lista {
    width: 100%;
  }

  .plano-hero-texto h1 {
    font-size: 40px;
    line-height: 42px;
  }

  .produtos-lista {
    gap: 20px;
  }

  .produto-item-lista {
    flex-direction: column;
  }

  .produto-imagem-wrapper {
    width: 100%;
    height: 10rem;
  }

  .produto-item-lista-detalhes {
    width: 100%;
  }

  .card-sustentabilidade {
    flex-direction: column;
  }

  .imagem-sustentabilidade {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {

  .container {
    padding: 0 40px;
  }

  .titulo {
    font-size: 32px;
  }

  .hero-texto h1 {
    font-size: 50px;
    line-height: 52px;
  }

  .sobre-nos {
    flex-direction: column;
    padding: 0 40px;
  }

  .sobre-nos .card-imagem {
    width: 100%;
    height: auto;
  }

  .servicos-lista {
    flex-direction: row;
    gap: 50px;
  }

  .servico-item-lista {
    width: 45%;
  }

  .produto-item-lista {
    flex-direction: row;
  }

  .produto-imagem-wrapper {
    width: 100%;
  }
}

@media (min-width: 1024px) {

  .hero {
    height: 100vh;
  }
}


@media (min-width: 1520px) {
  .hero {
    height: 100vh;
  }

  .hero-texto {
    max-width: 50%;
  }

  .plano-hero-texto {
    max-width: 50%;
  }
}