/* Config Gerais */

@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
  text-decoration: none;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: radial-gradient(
    circle,
    rgb(250, 246, 243) 0%,
    rgb(243, 234, 227) 100%
  );
  color: #3d4e4e;
}

paleta {
  color: #f3eae3;
  color: #f5e2d1;
  color: #d4b78b;
  color: #b48c50;
  color: #586f6f;
  color: #3d4e4e;
  color: #f69e4b;
}

img {
  pointer-events: none;
}

.interface {
  max-width: 80rem;
  margin: 0 auto;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.titulo-secao {
  text-align: center;
  font-size: 3.3rem;
  padding-bottom: 2rem;
  background: linear-gradient(to bottom, #a06c39, #5a3b1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.titulo {
  text-align: center;
  font-size: 2.6rem;
  padding-bottom: 2rem;
  background: linear-gradient(to bottom, #a06c39, #5a3b1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-entre-contato-momentos {
  text-align: center;
}

.btn-entre-contato-momentos button:hover {
  box-shadow: 0px 0px 8px #08c40e;
  transform: scale(1.05);
  transition: 0.3s all;
}

.btn-entre-contato-momentos button {
  padding: 1rem 2.5rem;
  font-size: 2rem;
  font-weight: 600;
  background-color: #08c40e;
  border: 0;
  border-radius: 2.25rem;
  cursor: pointer;
  color: #fff;
  position: relative;
  overflow: hidden;
  animation: pulse 2s infinite;
  margin-top: 4rem;
}

.btn-entre-contato-momentos i {
  margin-right: 0.3rem;
}

.linha {
  width: 10%;
  background-color: #f69e4b;
  height: 0.2rem;
  border: none;
  margin: 0rem auto;
  margin-bottom: 3rem;
  border-radius: 1rem;
}

/* Menu Desktop */

header {
  padding: 0.5rem 4%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(212, 183, 139, 0.5); /* Fundo semi-transparente */
  backdrop-filter: blur(10px); /* Efeito de desfoque */
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 2px solid #3d4e4e;
  z-index: 99999;
}

header .interface {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo a {
  color: inherit;
  text-decoration: none;
}

.logo span i {
  font-size: 3rem;
  margin-right: 0.5rem;
  color: #f69e4b;
}

header h1 {
  font-weight: 300;
  padding: 1rem;
  padding-left: 0rem;
}

header nav.menu-desktop li a {
  color: #3d4e4e;
  text-decoration: none;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 500;
}

header nav.menu-desktop li a:hover {
  color: #f69e4b;
  transform: scale(1.15);
  transition: 0.5s all;
}

header nav ul {
  list-style-type: none;
}

header nav.menu-desktop ul li {
  display: inline-block;
  padding: 0 1.5rem;
}

.menu-desktop i {
  font-size: 1.3rem;
}

.btn-entre-contato-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  font-size: 1.1rem;
  font-weight: 800;
  background-color: #08c40e;
  border: 0;
  border-radius: 1.25rem;
  cursor: pointer;
  color: #ebebeb;
  position: relative;
  overflow: hidden;
  animation: pulse 2s infinite;
  text-decoration: none; /* Remove underline from the link */
}

.btn-entre-contato-menu a:hover {
  box-shadow: 0px 0px 8px #08c40e;
  transform: scale(1.05);
  transition: 0.3s all;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.btn-entre-contato-menu i {
  margin-right: 0.625rem;
  font-size: 1.5rem;
  color: #ebebeb;
}

.logo a {
  display: flex;
  align-items: center;
}

/* Menu Mobile */

.btn-abrir-menu i {
  color: #f69e4b;
  font-size: 2.5rem;
  display: none;
}

.menu-mobile {
  background: radial-gradient(
    circle,
    rgb(250, 246, 243) 0%,
    rgb(243, 234, 227) 100%
  );
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99999;
  width: 0%;
  overflow: hidden;
  transition: 0.5s;
}

.menu-mobile.abrir-menu {
  width: 70%;
}

.menu-mobile.abrir-menu ~ .overlay-menu {
  display: block;
}

.menu-mobile .btn-fechar {
  padding: 1.25rem 5%;
}

.menu-mobile .btn-fechar i {
  color: #f69e4b;
  font-size: 2.1875rem;
}

.menu-mobile nav ul {
  text-align: right;
}

.menu-mobile nav ul li a {
  color: #3d4e4e;
  font-size: 1.25rem;
  font-weight: 400;
  padding: 1.25rem 8%;
  display: block;
  text-decoration: none;
}

.menu-mobile nav ul li a:hover {
  background-color: #f69e4b;
}

.overlay-menu {
  background-color: #000000df;
  width: 100%;
  height: 1300%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 88888;
  display: none;
}

/* Topo do site */

.btn-entre-contato {
  text-align: center;
}

.btn-entre-contato button:hover {
  box-shadow: 0px 0px 8px #08c40e;
  transform: scale(1.05);
  transition: 0.3s all;
}

.btn-entre-contato button {
  padding: 1rem 2.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  background-color: #08c40e;
  border: 0;
  border-radius: 2.25rem;
  cursor: pointer;
  color: #fff;
  position: relative;
  overflow: hidden;
  animation: pulse 2s infinite;
  margin: 2rem;
}

.btn-entre-contato i {
  margin-right: 0.3rem;
}

.topo-do-site {
  padding-top: 10rem;
  height: 100vh;
  background: url(img/BGWEBP.webp);
  background-position: center center;
  background-size: contain;
  background-size: cover;
  background-repeat: no-repeat;
}

.txt-topo-site h1 {
  width: 55rem;
  font-size: 5rem;
  text-align: center;
  margin: 0 auto;
  margin-top: 28rem;
}

.txt-topo-site h2 {
  margin: 0 center;
  text-align: center;
  background: linear-gradient(to bottom, #a06c39, #5a3b1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  margin-top: -0.5rem;
}

.txt-topo-site p {
  width: 50rem;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  margin: 0 auto;
  margin-top: 5rem;
}

.txt-topo-site p:last-child {
  margin-top: 0rem;
}

.txt-topo-site .degrade {
  background: linear-gradient(to bottom, #a06c39, #5a3b1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
}

/* Sintomas */

.momentos {
  padding: 5rem;
  background: radial-gradient(circle, rgb(250, 246, 243) 0%, #fcf4ef 100%);
}

.txt-momentos p {
  text-align: center;
  width: 75rem;
  justify-content: space-between;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 auto;
  margin-bottom: 3rem;
}

.txt-momentos span {
  background: linear-gradient(to bottom, #749292, #283636);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.card-box-momentos {
  background-color: #f3eae3;
  border: 2px solid #f69e4b;
  width: 24rem;
  padding: 2rem;
  border-radius: 100px;
  margin: 0 auto;
  margin-top: 2rem;
  text-align: center;
}

.card-box-momentos:hover {
  box-shadow: 0px 0px 8px #f69e4b;
  transform: scale(1.05);
  transition: 0.3s all;
}

.card-box-momentos p {
  margin: 2rem auto;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
}

.card-box-momentos img {
  width: 7rem;
}

.card-box-momentos:first-child img {
  width: 6rem;
}

.card-box-momentos:last-child img {
  width: 6rem;
}

.card-box-momentos p span {
  background: linear-gradient(to bottom, #a06c39, #5a3b1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.txt2-momentos p {
  text-align: center;
  width: 75rem;
  justify-content: space-between;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 auto;
  margin-bottom: 3rem;
  margin-top: 5rem;
}

.txt2-momentos p:last-child {
  margin-bottom: 0rem;
  margin-top: 0rem;
}

.txt2-momentos span {
  background: linear-gradient(to bottom, #749292, #283636);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.txt2-momentos .titulo {
  filter: drop-shadow(1px 2px 1px #f69e4b);
}

/* Beneficios */

.beneficios {
  padding: 5rem;
  background: radial-gradient(circle, rgb(250, 246, 243) 0%, #f3eae3 100%);
}

.txt-beneficios p {
  text-align: center;
  width: 75rem;
  justify-content: space-between;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 auto;
}

.txt-beneficios p {
  margin-bottom: 3rem;
}

.txt-beneficios span {
  background: linear-gradient(to bottom, #749292, #283636);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.imgbeneficios {
  mix-blend-mode: darken;
}

.box-img {
  text-align: center;
}

.card-beneficios {
  background-color: #f3eae3;
  border: 2px solid #f69e4b;
  width: 27rem;
  padding: 2rem;
  border-radius: 100px;
  margin: 0 auto;
  margin-top: 2rem;
  text-align: center;
}

.beneficios .flex {
  max-width: 60rem;
  margin: 0 auto;
}

.card-beneficios:hover {
  box-shadow: 0px 0px 8px #f69e4b;
  transform: scale(1.05);
  transition: 0.3s all;
}

.card-beneficios h6 {
  text-align: center;
  font-size: 1.8rem;
  margin-top: 1rem;
  background: linear-gradient(to bottom, #a06c39, #5a3b1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-beneficios p {
  margin: 2rem auto;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
}

.card-beneficios img {
  width: 7rem;
}

.card-beneficios:nth-child(2) img {
  width: 7.6rem;
}

.card-beneficios:nth-child(3) img {
  width: 6.5rem;
}

.card-beneficios p span {
  background: linear-gradient(to bottom, #a06c39, #5a3b1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.beneficios h4:nth-last-of-type(2) {
  margin-top: 5rem;
}

.card-pilares {
  background-color: #f3eae3;
  border: 2px solid #f69e4b;
  width: 29rem;
  padding: 2rem;
  border-radius: 50px;
  margin: 0 auto;
  margin-top: 2rem;
}

.card-pilares h6 {
  text-align: center;
  font-size: 1.8rem;
  background: linear-gradient(to bottom, #749292, #283636);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-pilares span {
  font-size: 3rem;
}

.card-pilares:hover {
  box-shadow: 0px 0px 8px #f69e4b;
  transform: scale(1.05);
  transition: 0.3s all;
}

.card-pilares p {
  margin: 2rem auto;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
}

.card-lista {
  background-color: #f3eae3;
  border: 2px solid #f69e4b;
  width: 48rem;
  padding: 2rem;
  border-radius: 100px;
  margin: 0 auto;
  margin-top: 2rem;
}

.card-lista:hover {
  box-shadow: 0px 0px 8px #f69e4b;
  transform: scale(1.05);
  transition: 0.3s all;
}

.card-lista ul {
  list-style: none;
}

.card-lista i {
  margin-right: 0.5rem;
  font-size: 1.7rem;
}

.card-lista li {
  margin: 2rem auto;
  text-align: left;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
}

/* Sobre mim */

.sobre {
  padding: 5rem;
  background: radial-gradient(circle, rgb(250, 246, 243) 0%, #fcf4ef 100%);
}

.box-sobre {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}

.box-sobre img {
  width: 35rem;
  height: 37rem;
  border-radius: 20px;
}

.txt-box-sobre {
  width: 40rem;
  margin-left: 5rem;
}

.txt-box-sobre h4 {
  text-align: left;
  margin-bottom: -1.5rem;
  font-weight: 400;
  background: linear-gradient(to bottom, #749292, #283636);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.txt-box-sobre h6 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  background: linear-gradient(to bottom, #a06c39, #5a3b1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.linha-sobre {
  width: 10%;
  background-color: #f69e4b;
  height: 0.25rem;
  border: none;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.txt-box-sobre p {
  font-size: 1.3rem;
}

.txt-box-sobre li {
  font-size: 1.2rem;
  margin-top: 1rem;
  font-weight: 700;
}

.txt-box-sobre i {
  margin-right: 0.5rem;
}

.txt-box-sobre ul {
  list-style: none;
}

.box-sobre2 {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  margin-top: 7rem;
}

.txt-box-sobre2 h4 {
  text-align: left;
  margin-bottom: -1rem;
  font-weight: 400;
  background: linear-gradient(to bottom, #749292, #283636);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.txt-box-sobre2 h6 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  background: linear-gradient(to bottom, #a06c39, #5a3b1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.txt-box-sobre2 p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.box-sobre2 img {
  width: 35rem;
  height: 42rem;
  border-radius: 20px;
}

.txt-box-sobre2 {
  width: 40rem;
  margin-right: 5rem;
}

/* Depoimentos */

.depoimentos {
  width: 100%;
  padding: 5rem;
  padding-bottom: 0rem;
  max-width: 80rem;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.depoimentos .slide {
  padding: 3rem 5rem;
  cursor: grab;
}

.depoimentos .slide:active {
  cursor: grabbing;
}

.depoimentos i {
  font-size: 5rem;
  color: #f69e4b;
}

.depoimentos p.depoi-txt {
  font-weight: 300;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-style: italic;
}

.slide .person {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.slide .person p.nome-person {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(to bottom, #749292, #283636);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Duvidas Frequentes */

.duvidas {
  padding: 5rem;
  background: radial-gradient(circle, rgb(250, 246, 243) 0%, #fcf4ef 100%);
}

.duvidas .titulo {
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.faq {
  margin-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f69e4b;
  cursor: pointer;
}

.pergunta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pergunta h4 {
  font-size: 2rem;
}

.resposta {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1.4s ease;
}

.resposta p {
  padding-top: 1rem;
  line-height: 1.6;
  font-size: 1.4rem;
  font-weight: 500;
}

.faq.active .resposta {
  max-height: 18.75rem;
  animation: fade 1s ease-in-out;
}

.faq.active svg {
  transform: rotate(180deg);
}

svg {
  transition: transform 0.5s ease-in;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

/* ButtonZap */

.icon {
  position: fixed;
  bottom: 3rem;
  right: 1rem;
  font-size: 2.5rem;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 99999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  animation: pulse 2s infinite;
  display: none;
}

.icon:hover {
  background-color: #fff;
  color: #08c40e;
  box-shadow: 2px 2px 20px #5fe690;
  transition: 0.3s all;
}

/* Footer*/

footer {
  padding: 1rem;
}

footer span {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.info-contato {
  margin: 1rem auto;
  font-size: 1.5rem;
  color: #5a3b1c;
  font-weight: 600;
}

.info-contato i {
  margin-right: 0.3rem;
  font-size: 1.7rem;
}

.info-contato i:last-child {
  margin-left: 1rem;
}

.termo {
  font-size: 1rem;
  margin: 0 auto;
  margin-top: 1rem;
}

footer .linha {
  margin: 0 auto;
  margin-top: 1rem;
  width: 5%;
}

footer p {
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: small;
  margin-top: 1rem;
  font-size: 1rem;
}

footer {
  background-color: #f5e2d1;
}

footer a {
  color: #ef4918;
  text-decoration: none;
  font-weight: 700;
}

/* Responsividade */

/* Notebook */

@media screen and (min-width: 835px) and (max-width: 1440px) {
  .txt-topo-site h1 {
    margin-top: 14rem;
  }
}

@media screen and (min-width: 835px) and (max-width: 1280px) {
  header nav.menu-desktop ul li {
    padding: 0 1rem;
  }

  .txt-momentos p {
    width: 65rem;
  }

  .txt2-momentos p {
    width: 65rem;
  }

  .card-box-momentos {
    width: 28rem;
  }

  .txt-beneficios p {
    width: 65rem;
  }

  .txt-box-sobre {
    width: 30rem;
    margin-left: 2rem;
  }

  .txt-box-sobre p {
    font-size: 1.15rem;
  }

  .txt-box-sobre li {
    font-size: 1.1rem;
  }

  .txt-box-sobre2 {
    width: 30rem;
    margin-right: 2rem;
  }

  .txt-box-sobre2 p {
    font-size: 0.96rem;
  }

  .depoimentos {
    max-width: 70rem;
  }

  .depoimentos p.depoi-txt {
    font-size: 1.1rem;
  }

  .faq {
    max-width: 66rem;
    margin: 0 auto;
    margin-top: 1rem;
  }
}

/* Tablet */

@media screen and (max-width: 834px) {
  .btn-abrir-menu i {
    margin-left: -1rem;
    display: block;
  }

  .menu-desktop,
  .btn-entre-contato-menu {
    display: none;
  }

  .icon {
    display: flex;
  }

  .topo-do-site {
    background-position-x: 47%;
  }

  .txt-topo-site h1 {
    width: 50rem;
    margin-top: 32rem;
  }

  .txt-topo-site p {
    width: 40rem;
  }

  .txt-momentos p {
    width: 40rem;
  }

  .txt2-momentos p {
    width: 40rem;
  }

  .card-box-momentos {
    width: 27rem;
  }

  .txt-beneficios p {
    width: 40rem;
  }

  .imgbeneficios:last-child {
    width: 43rem;
  }

  .card-lista {
    width: 40rem;
  }

  .box-sobre {
    width: 40rem;
  }

  .txt-box-sobre {
    width: 35rem;
    margin: 0 auto;
    margin-top: 3rem;
  }

  .imgsobre {
    margin: 0 auto;
  }

  .box-sobre2 {
    width: 40rem;
    margin-top: 5rem;
  }

  .txt-box-sobre2 {
    width: 35rem;
    margin: 0 auto;
    margin-bottom: 3rem;
  }

  .depoimentos .nav-btn {
    display: none;
  }

  svg {
    display: none;
  }
}

@media screen and (max-width: 800px) {
  .txt-topo-site h1 {
    margin-top: 38rem;
  }
}

@media screen and (max-width: 768px) {
  .txt-topo-site h1 {
    margin-top: 23rem;
  }

  .txt-momentos p {
    width: 37rem;
  }

  .txt2-momentos p {
    width: 37rem;
  }

  .txt-beneficios p {
    width: 37rem;
  }

  .imgbeneficios:last-child {
    width: 38rem;
  }

  .card-lista {
    width: 37rem;
  }
}

/* Celular */
@media screen and (max-width: 430px) {
  .menu-mobile li i:last-child {
    font-size: 1.5rem;
  }

  .icon {
    bottom: 2rem;
    right: 0.5rem;
    font-size: 1.8rem;
    width: 3.5rem;
    height: 3.5rem;
  }

  .txt-topo-site h1 {
    width: 24rem;
    font-size: 3rem;
    margin-top: 20rem;
  }

  .txt-topo-site h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .txt-topo-site p {
    width: 24rem;
    font-size: 1.3rem;
  }

  .btn-entre-contato button {
    padding: 0.7rem 1.5rem;
    font-size: 1.3rem;
    margin: 1rem;
  }

  .titulo-secao {
    font-size: 2rem;
  }

  .titulo {
    font-size: 1.8rem;
  }

  .momentos {
    padding: 5rem 3rem;
  }

  .txt-momentos p {
    width: 100%;
    font-size: 1.3rem;
  }

  .card-box-momentos p {
    font-size: 1.2rem;
  }

  .txt2-momentos p {
    width: 100%;
    font-size: 1.3rem;
  }

  .btn-entre-contato-momentos button {
    padding: 1rem 1.5rem;
    font-size: 1.3rem;
  }

  .beneficios {
    padding: 5rem 3rem;
  }

  .txt-beneficios p {
    width: 100%;
    font-size: 1.3rem;
  }

  .imgbeneficios:last-child {
    width: 21rem;
  }

  .card-beneficios p {
    margin: 1rem auto;
    font-size: 1.2rem;
  }

  .card-beneficios h6 {
    font-size: 1.5rem;
  }

  .card-pilares p {
    margin: 1rem auto;
    font-size: 1.2rem;
  }

  .card-lista {
    width: 100%;
    padding: 2rem;
    border-radius: 50px;
  }

  .card-lista i {
    margin-right: 0.5rem;
    font-size: 1.3rem;
  }

  .card-lista li {
    margin: 1.5rem auto;
    font-size: 1.1rem;
  }

  .sobre {
    padding: 5rem 3rem;
  }

  .box-sobre {
    width: 100%;
  }

  .box-sobre img {
    width: 21rem;
    height: 23rem;
  }

  .txt-box-sobre {
    width: 100%;
  }

  .txt-box-sobre p {
    font-size: 1.2rem;
  }

  .txt-box-sobre h6 {
    font-size: 1.1rem;
  }

  .txt-box-sobre li {
    font-size: 1rem;
  }

  .box-sobre2 {
    width: 100%;
  }

  .box-sobre2 img {
    width: 21rem;
    height: 25rem;
  }

  .txt-box-sobre2 {
    width: 100%;
  }

  .txt-box-sobre2 p {
    font-size: 1.2rem;
  }

  .depoimentos {
    padding: 5rem 0rem;
    padding-bottom: 0rem;
  }

  .depoimentos .slide {
    padding: 3rem 3rem;
    cursor: grab;
  }

  .depoimentos i {
    font-size: 3.5rem;
    color: #f69e4b;
  }

  .depoimentos p.depoi-txt {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .slide .person p.nome-person {
    font-size: 1.2rem;
  }

  .duvidas {
    padding: 5rem 3rem;
  }

  .pergunta h4 {
    font-size: 1.5rem;
  }

  .resposta p {
    font-size: 1.2rem;
  }

  .info-contato {
    font-size: 1rem;
  }

  .info-contato i {
    font-size: 1.2rem;
  }

  .info-contato i:last-child {
    margin-left: 0.5rem;
  }

  footer p {
    font-size: 0.7rem;
  }
}

@media screen and (max-width: 393px) {
  .logo span i {
    font-size: 2.7rem;
    margin-right: 0.2rem;
  }

  header h1 {
    font-size: 1.7rem;
  }

  .txt-topo-site h1 {
    width: 24rem;
    font-size: 2.6rem;
    margin-top: 16rem;
  }

  .txt-topo-site p {
    width: 21rem;
    font-size: 1.1rem;
  }

  .titulo-secao {
    font-size: 1.8rem;
  }

  .titulo {
    font-size: 1.6rem;
  }

  .txt-momentos p {
    font-size: 1.2rem;
  }

  .txt2-momentos p {
    font-size: 1.2rem;
  }

  .btn-entre-contato-momentos button {
    padding: 1rem 1.2rem;
    font-size: 1.2rem;
  }

  .txt-beneficios p {
    font-size: 1.2rem;
  }

  .imgbeneficios:last-child {
    width: 19rem;
  }

  .box-sobre img {
    width: 18.5rem;
    height: 20.5rem;
  }

  .box-sobre2 img {
    width: 18.5rem;
    height: 22.5rem;
  }

  .pergunta h4 {
    font-size: 1.4rem;
  }

  .info-contato {
    font-size: 0.8rem;
  }

  .info-contato i {
    font-size: 1rem;
  }

  .info-contato i:last-child {
    margin-left: 0.3rem;
  }

  footer p {
    font-size: 0.6rem;
  }
}

@media screen and (max-width: 360px) {
  .txt-topo-site h1 {
    width: 20rem;
    font-size: 2.4rem;
    margin-top: 18rem;
  }

  .txt-topo-site p {
    width: 20rem;
    font-size: 1.1rem;
  }

  .titulo-secao {
    font-size: 1.6rem;
  }

  .titulo {
    font-size: 1.4rem;
  }

  .txt-momentos p {
    font-size: 1.1rem;
  }

  .txt2-momentos p {
    font-size: 1.1rem;
  }

  .txt-beneficios p {
    font-size: 1.1rem;
  }

  .imgbeneficios:last-child {
    width: 17rem;
  }

  .card-beneficios h6 {
    font-size: 1.3rem;
  }

  .box-sobre img {
    width: 16.5rem;
    height: 18.5rem;
  }

  .txt-box-sobre p {
    font-size: 1.1rem;
  }

  .txt-box-sobre h6 {
    font-size: 1rem;
  }

  .txt-box-sobre li {
    font-size: 0.8rem;
  }

  .box-sobre2 img {
    width: 16.5rem;
    height: 20.5rem;
  }

  .txt-box-sobre2 p {
    font-size: 1.1rem;
  }

  .pergunta h4 {
    font-size: 1.3rem;
  }

  .resposta p {
    font-size: 1.1rem;
  }
}
