@import "/assets/css/global/global.css";

body {
  position: relative;
  height: 100%;
  background-color: var(--branco);
}

main {
  height: 100%;
  position: relative;
  display: grid;
  place-items: center;
  padding: 16px;
  overflow: hidden;
  overflow-y: scroll;
}

.cardGreen {
  background: var(--verde-degrade);
  width: 100%;
  max-width: 980px;
  height: fit-content;
  /* height: 100%; */
  padding: 40px 30px;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  z-index: 1;
  text-align: center;
}

.secTitle a {
  color: var(--verde-bemleve);
  background-color: var(--branco);
  font-size: 24px;
  -webkit-text-stroke: 0.5px var(--verde-bemleve);
  border-radius: 99px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: scale 0.5s ease-in-out;
}
.secTitle a:hover {
  scale: 1.05;
}

/* PÁGINA QUEM-SOMOS */
.secContent p {
  color: var(--branco);
  -webkit-text-stroke: 0px var(--branco);
  line-height: 120%;
  font: 18px;
  /* text-align: left; */
  margin-bottom: 24px;
}

.secContent a {
  color: var(--verde-bemleve);
  background-color: var(--branco);
  font-size: 24px;
  -webkit-text-stroke: 0.5px var(--verde-bemleve);
  border-radius: 99px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: scale 0.5s ease-in-out;
}
.secContent a:hover {
  scale: 1.05;
}
.secContent img {
  rotate: -90deg;
}
/* FIM - PÁGINA QUEM-SOMOS */

h1 {
  -webkit-text-stroke: 3px var(--branco);
  font-size: 32px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

h2 {
  -webkit-text-stroke: 0.5px var(--branco);
  font-size: 28px;
  margin-bottom: 20px;
}

h4 {
  font-size: 24px;
  margin-bottom: 16px;
}

span {
  font-size: 18px;
  -webkit-text-stroke: 0.5px var(--verde-bemleve);
  line-height: 18px;
  text-align: left;
}

span#cnpj {
  color: var(--branco);
  -webkit-text-stroke: 0px var(--branco);
  margin-bottom: -24px;
  text-align: center;
}

button {
  border-radius: 99px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: scale 0.5s ease-in-out;
  background-color: var(--branco);
}
button:hover {
  scale: 1.05;
}

.containerButtonsContato {
  display: flex;
  flex-direction: column;
  gap: 16px;

  button {
    height: 80px;
    width: 200px;
  }

  img {
    width: 32px;
    height: 32px;
  }
}
.containerButtonsLocal {
  display: flex;
  flex-direction: column;
  gap: 16px;

  img {
    width: 32px;
    height: 32px;
  }
}

shape {
  position: absolute;
  background-color: var(--verde-bemleve);
  width: 400px;
  height: 400px;
  border-radius: 100%;
  filter: blur(150px);
  opacity: 0.7;
  z-index: -1;
}

shape.posLeft {
  top: -100px;
  left: -100px;
}
shape.posRight {
  bottom: -100px;
  right: -100px;
}

footer {
  position: fixed;
  bottom: 10px;
  width: 100%;
  text-align: center;
  z-index: 0;

  p,
  a {
    font-size: 16px;
    -webkit-text-stroke: 0px;
    color: var(--verde-bemleve);
  }
}
footer a:hover {
  text-decoration: underline;
}

@media (min-width: 850px) {
  main {
    height: 100vh;
    overflow-y: hidden;
  }

  .cardGreen {
    padding: 60px 50px;
    gap: 50px;
  }
  .secTitle a,
  .secContent a {
    font-size: 28px;
  }
  .secContent p {
    font-size: 24px;
    /* max-width: 700px; */
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h4 {
    font-size: 28px;
  }

  span {
    font-size: 20px;
    line-height: 20px;
  }
  span#cnpj {
    margin-bottom: -36px;
  }

  .containerButtonsContato {
    flex-direction: row;
  }
  .containerButtonsContato button {
    width: fit-content;
    padding: 20px;
    gap: 12px;
  }

  .containerButtonsContato img {
    width: 40px;
    height: 40px;
  }

  footer a,
  footer p {
    font-size: 18px;
  }  
}
