:root {
  --roxoprimario: #665ea8;
  --roxosecundario: #9695c9;
  --rosaclaro: #efc2da;
  --cinza: #ebebeb;
}

html {
  box-sizing: border-box !important;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  box-sizing: border-box !important;
  margin: 0;
  padding: 0;
  overflow: hidden;
  overflow-x: hidden;
}

a,
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  color: var(--roxoprimario);
  cursor: pointer;
}
*,
::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  -webkit-tap-highlight-color: transparent;
}

img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.header {
  position: relative;
}

.gradiente::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 99.7%; /* Adjust this */
  z-index: 1;
  opacity: 0.5;
  background: #efc2da;
  background: linear-gradient(
    0deg,
    rgba(239, 194, 218, 1) 0%,
    rgba(150, 149, 201, 1) 33%,
    rgba(102, 94, 168, 1) 81%
  );
}

.menu > .container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.button-menu {
  width: 35px;
}
.menu {
  position: absolute;
  width: 100%;
  top: 19px;
  padding-right: 300px;
  padding-left: 300px;
  z-index: 10;
}
.menu .marcacao-container {
  position: relative;
  overflow: hidden;
  height: 45px;
  width: 203px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background: linear-gradient(
    180deg,
    rgba(239, 194, 218, 1) 0%,
    rgba(252, 231, 194, 1) 100%
  );
  transition: box-shadow 0.6s ease, transform 0.6s ease;
  will-change: transform;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.menu .marcacao-container:hover {
  box-shadow: 5px 5px 30px 1px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 5px 5px 30px 1x rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 5px 5px 30px 1px rgba(0, 0, 0, 0.2);
}

.menu .marcacao-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(252, 231, 194, 1) 0%,
    rgba(239, 194, 218, 1) 50%,
    rgba(251, 179, 219, 1) 98%
  );
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  z-index: 0;
}

.menu .marcacao-container:hover::before {
  opacity: 1;
}

.menu .marcacao-container > * {
  position: relative;
  z-index: 1;
}

.marcacao-container .text .mobile {
  display: none;
}

.menu > .container .text {
  font-family: "Raleway";
  color: var(--roxoprimario);
  text-transform: uppercase;
  font-weight: 500;
}
.index-logo {
  margin-right: 140px;
}

.header.pages .menu {
  background-color: var(--roxoprimario);
}

.header.pages .menu {
  top: 0px;
}

.header.pages .menu {
  padding-left: 220px;
  padding-right: 0px;
  height: 80px;
}

.header.pages .logo {
  height: 60px;
  margin-top: 10px;
}

.header.pages .menu .marcacao-container {
  margin-top: 17px;
}

.header.pages .menu > .container {
  display: grid;
  grid-template-columns: 300px 350px 260px;
  gap: 300px;
}
.header .container-text {
  position: absolute;
  top: 25%;
  z-index: 10;
  margin-left: 300px;
}

.header .container-text span {
  color: white;
  font-family: "Raleway";
  font-size: 36px;
  letter-spacing: 1px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 42px;
}

.header .container-text .text1 {
  margin-bottom: 50px;
}

.header .container-text .text3 {
  margin-top: 50px;
}

.header .container-text .title {
  font-family: "Fleur";
  font-weight: bold;
  font-size: 213px;
  letter-spacing: 1px;
  color: white;
  line-height: 130px;
}

.header .container-text .description {
  font-family: "Raleway";
  color: white;
  font-size: 18px;
  line-height: 24px;
  font-weight: 300;
}

.logo {
  width: auto;
}

.header .container-text .description.mobile {
  display: none;
}

.mobile {
  display: none;
}

@media screen and (max-width: 1490px) {
  .gradiente img {
    height: 800px;
  }
}

@media screen and (max-width: 1680px) {
  .menu {
    padding-right: 180px;
    padding-left: 180px;
  }
  .header .container-text {
    margin-left: 180px;
  }
}
@media screen and (max-width: 1200px) {
  .menu {
    padding-right: 100px;
    padding-left: 100px;
  }
  .header .container-text {
    margin-left: 100px;
  }
  .index-logo {
    margin-right: 80px;
  }
}

@media screen and (max-width: 700px) {
  .menu {
    padding-right: 50px;
    padding-left: 50px;
  }
  .header .container-text {
    margin-left: 50px;
  }
  .header .container-text span {
    font-size: 30px;
    letter-spacing: 1px;
    font-weight: 300;
    line-height: 37px;
  }

  .header .container-text .title {
    font-size: 200px;
  }
}

@media screen and (max-width: 480px) {
  .index-logo {
    margin-right: 0px;
  }
  .marcacao-container .text .desktop {
    display: none;
  }
  .marcacao-container .text .mobile {
    display: flex;
  }
  .gradiente {
    height: 600px;
  }
  .gradiente img {
    width: 900px;
  }

  .gradiente::before {
    height: 133.3%;
  }
  .menu > .container {
    display: grid;
    grid-template-columns: repeat(3, 130px);
    gap: 10px;
  }
  .menu {
    padding-right: 30px;
    padding-left: 30px;
  }

  .button-menu {
    width: 203px;
    margin-top: 4px;
  }
  .header.pages .logo.mobile {
    height: auto;
  }

  .menu .marcacao-container {
    background-image: url("/images/icons/marcacao-mobile.svg");
    height: 25px;
    width: 110px;
    background-repeat: no-repeat;
  }

  .menu > .container .text {
    font-size: 11px;
  }

  .header .container-text {
    position: absolute;
    top: 25%;
    z-index: 10;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .header .container-text span {
    font-size: 20px;
    line-height: 43px;
  }

  .header .container-text .text1 {
    margin-bottom: 40px;
  }

  .header .container-text .text3 {
    margin-top: 10px;
  }

  .header .container-text .title {
    font-size: 90px;
    letter-spacing: 1px;
    color: white;
    line-height: 55px;
  }

  .header .container-text .description {
    font-family: "Raleway";
    color: white;
    font-size: 20px;
    line-height: 24px;
    font-weight: 300;
    margin-top: 40px;
    max-width: 300px;
  }

  .header .container-text .description.mobile {
    display: block;
  }

  .header .container-text .description.desktop {
    display: none;
  }

  .logo {
    width: 70px;
    height: 40px;
    display: none;
  }

  .logo.mobile {
    display: block;
  }
}

/*about*/
.about {
  position: relative;
  width: 100%;
}

.about .about-text {
  right: 10px;
  margin-left: 54%;
  margin-top: 54px;
  text-align: center;
  font-family: "Raleway";
  color: var(--roxosecundario);
  width: 100%;
  max-width: 560px;
}

.about .about-text > .ola {
  font-weight: 400;
  font-size: 25px;
  letter-spacing: 1px;
}

.about .about-text > .nome {
  font-family: "Fleur";
  font-weight: bold;
  font-size: 150px;
  line-height: 88px;
  margin-top: 35px;
  margin-bottom: 85px;
}

.about .about-text > .description1 {
  text-align: left;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.01em;
  font-weight: 300;
}

.about .about-text > .description1.first {
  margin-bottom: 20px;
}

.about .about-text > .description2 {
  text-align: left;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.01em;
  font-weight: 500;
  font-style: italic;
  margin-top: 20px;
  margin-bottom: 20px;
}

.imagem-about {
  margin-left: 300px;
  position: absolute;
  width: 450px;
  top: -230px;
  z-index: 10;
  opacity: 0;
}

.imagem-about img {
  border-radius: 330px;
}

.star-right {
  width: 35px;
  height: 60px;
  object-fit: contain;
  position: absolute;
  right: 70px;
}

.star-left1 {
  width: 29px;
  height: 50px;
  object-fit: contain;
  position: absolute;
  left: 280px;
  top: 420px;
}

.star-left2 {
  width: 20px;
  height: 30px;
  object-fit: contain;
  position: absolute;
  left: 350px;
  top: 480px;
}

.flor {
  width: 210px;
  height: 160px;
  object-fit: contain;
  position: absolute;
  left: 550px;
  top: 300px;
  z-index: 10;
}

.imagem-about.mobile {
  display: none;
}
@media screen and (max-width: 1490px) {
  .imagem-about {
    top: -200px;
  }
  .flor {
    left: 450px;
    top: 350px;
  }

  .star-left1 {
    left: 280px;
    top: 500px;
  }

  .star-left2 {
    top: 550px;
  }
}

@media screen and (max-width: 1364px) {
  .imagem-about {
    top: -150px;
  }
  .flor {
    left: 400px;
    top: 400px;
  }

  .star-left1 {
    left: 280px;
    top: 550px;
  }

  .star-left2 {
    top: 610px;
  }
}

@media screen and (max-width: 1200px) {
  .imagem-about {
    margin-left: 100px;
    top: -100px;
  }
  .flor {
    left: 370px;
    top: 400px;
  }

  .star-left1 {
    left: 280px;
    top: 550px;
  }

  .star-left2 {
    top: 600px;
  }

  .about .about-text {
    max-width: 400px;
  }

  .about .about-text > .nome {
    font-size: 130px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 1140px) {
  .logo {
    display: none;
  }
  .logo.mobile {
    display: block;
    height: 100px;
  }

  .mobile-flor {
    display: block;
    height: 140px;
    object-fit: contain;
    margin-top: 60px;
  }

  .imagem-about {
    all: unset;
    margin-left: 0;
    position: absolute;
    width: 50vw;
    top: -450px;
    object-fit: cover;
    z-index: 10;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .about .about-text {
    right: 0;
    margin-left: 10%;
    margin-top: 700px;
    text-align: center;
    font-family: "Raleway";
    color: var(--roxosecundario);
    width: 100%;
    max-width: 80%;
  }
  .flor {
    left: 570px;
    top: -200px;
  }

  .star-left1 {
    left: 230px;
    top: -100px;
  }

  .star-left2 {
    top: 0;
  }
}

@media screen and (max-width: 1000px) {
  .mobile-flor {
    height: 100px;
  }
  .imagem-about {
    all: unset;
    margin-left: 0;
    position: absolute;
    width: 55vw;
    top: -450px;
    object-fit: cover;
    z-index: 10;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .about .about-text {
    right: 0;
    margin-left: 10%;
    margin-top: 650px;
    width: 100%;
    max-width: 80%;
  }

  .flor {
    left: 570px;
    top: -200px;
  }

  .star-left1 {
    left: 230px;
    top: -150px;
  }

  .star-left2 {
    top: -50px;
  }
}

@media screen and (max-width: 880px) {
  .logo.mobile.menu2 {
    display: block;
    height: 100px;
  }

  .mobile-flor {
    height: 80px;
  }
  .imagem-about {
    all: unset;
    margin-left: 0;
    position: absolute;
    width: 60vw;
    top: -450px;
    object-fit: cover;
    z-index: 10;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .flor {
    left: 500px;
    top: -250px;
    width: 20%;
  }
}

@media screen and (max-width: 660px) {
  .flor {
    left: 400px;
    top: -300px;
    width: 20%;
  }
  .star-left1 {
    left: 100px;
    top: -200px;
  }

  .star-left2 {
    top: -100px;
    left: 200px;
  }
}

@media screen and (max-width: 480px) {
  /* .imagem-about.desktop {
    display: none;
  }
  .imagem-about.mobile {
    display: block;
  } */

  .logo.mobile.menu2 {
    display: block;
    height: auto;
  }
  .imagem-about {
    all: unset;
    margin-left: 0;
    position: absolute;
    width: 80vw;
    top: -500px;
    object-fit: cover;
    z-index: 10;
    left: 10%;
  }

  .imagem-about img {
    height: 100%;
  }

  .about .about-text {
    right: 10px;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 400px;
    text-align: center;
    font-family: "Raleway";
    color: var(--roxosecundario);
    width: 100%;
    max-width: fit-content;
  }
  .about .about-text > .ola {
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 1px;
  }

  .about .about-text > .nome {
    font-family: "Fleur";
    font-weight: bold;
    font-size: 60px;
    line-height: 45px;
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .about .about-text > .description1 {
    text-align: center;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0;
    font-weight: 300;
  }

  .about .about-text > .description2 {
    text-align: center;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0;
    font-weight: 500;
    font-style: italic;
    margin-top: 30px;
  }

  .star-right {
    width: 35px;
    height: 60px;
    object-fit: contain;
    position: absolute;
    right: 70px;
    top: 0;
  }

  .star-left1 {
    width: 29px;
    height: 50px;
    object-fit: contain;
    position: absolute;
    left: 50px;
    top: 50px;
    z-index: 10;
  }

  .star-left2 {
    width: 20px;
    height: 30px;
    object-fit: contain;
    position: absolute;
    left: 350px;
    top: 70px;
  }

  .flor {
    display: none;
  }
}

.faq .terapias-container {
  height: 85px;
  width: 750px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  background: linear-gradient(
    270deg,
    rgba(239, 194, 218, 1) 0%,
    rgba(150, 149, 201, 1) 50%,
    rgba(102, 94, 168, 1) 100%
  );
  transition: box-shadow 0.6s ease, transform 0.6s ease;
  will-change: transform;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.faq {
  margin-top: 150px;
  width: 100%;
  display: flex;
  justify-content: center; /* Horizontal centering */
  align-items: center; /* Vertical centering */
  flex-direction: column;
}

.faq > div p {
  font-family: "Fleur";
  font-size: 87px;
  line-height: 68px;
  text-align: center;
  color: var(--roxoprimario);
  font-weight: bold;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.faq > div p.description {
  font-family: "Raleway";
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 23px;
  font-size: 16px;
  max-width: 545px;
  width: 100%;
  margin-top: 50px;
}

.faq > div > div > p {
  line-height: 68px;
  color: white;
  font-weight: bold;
  margin-top: 12px;
}

.saber-mais {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin-bottom: 150px;
}
.saber-mais p {
  font-family: "Raleway";
  line-height: 28px;
  letter-spacing: 0.01em;
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--roxoprimario);
  margin-bottom: 45px;
}

.saber-mais .marcacao-container .text {
  font-family: "Raleway";
  font-weight: 500;
}
.saber-mais .marcacao-container {
  height: 45px;
  width: 155px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  background: linear-gradient(
    90deg,
    rgba(239, 194, 218, 1) 0%,
    rgba(252, 231, 194, 1) 100%
  );
  transition: box-shadow 0.6s ease, transform 0.6s ease;
  will-change: transform;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  cursor: pointer;
}

.saber-mais .marcacao-container:hover {
  box-shadow: 5px 5px 30px 1px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 5px 5px 30px 1x rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 5px 5px 30px 1px rgba(0, 0, 0, 0.2);
}

.saber-mais .marcacao-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    270deg,
    rgba(252, 231, 194, 1) 0%,
    rgba(239, 194, 218, 1) 50%,
    rgba(251, 179, 219, 1) 98%
  );
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  z-index: 0;
}

.saber-mais .marcacao-container:hover::before {
  opacity: 1;
}

.saber-mais .marcacao-container > * {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1140px) {
  .faq {
    margin-top: 100px;
  }
}

@media screen and (max-width: 670px) {
  .faq {
    margin-top: 70px;
  }

  .faq .terapias-container {
    background-image: url("/images/icons/background-purple-mobile.svg");
    height: 70px;
    max-width: 430px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    margin-top: 12px;
    background-size: contain;
    width: 100%;
  }

  .faq > div p {
    font-size: 60px;
    line-height: 30px;
  }

  .faq > div > div > p {
    line-height: 68px;
    color: white;
    font-weight: bold;
    margin-top: 6px;
  }
}

@media screen and (max-width: 480px) {
  .faq > div p {
    font-size: 37px;
    line-height: 30px;
  }

  .faq .terapias-container {
    background-image: url("/images/icons/background-purple-mobile.svg");
    height: 60px;
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    margin-top: 12px;
  }
}

.answers {
  margin-top: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.answers.second {
  margin-top: 35px;
  margin-bottom: 90px;
}

.answers img {
  width: 100px;
  height: 100px;
  margin-bottom: 32px;
  object-fit: contain;
}

.answers .first-row {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 250px;
}

.answers .second-row {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 250px;
}

.answers .first-row div,
.answers .second-row div {
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.answers .first-row .title,
.answers .second-row .title {
  font-family: "Raleway";
  font-size: 22px;
  line-height: 27px;
  letter-spacing: 0.01em;
  color: var(--roxoprimario);
  font-weight: 500;
}

.answers .first-row .description,
.answers .second-row .description {
  font-family: "Raleway";
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: var(--roxoprimario);
  font-weight: 200;
  margin-top: 19px;
  width: 100%;
  max-width: 280px;
}
@media screen and (max-width: 1300px) {
  .answers .first-row {
    gap: 100px;
  }
}
.answers .first-row div.tablet {
  display: none;
}

.answers .second-row div.no-tablet {
  display: block;
}

.answers .first-row div.mobile-grid {
  display: none;
}

@media screen and (max-width: 1050px) {
  .answers .second-row div.desktop-grid {
    display: none;
  }

  .answers .first-row div.tablet {
    display: block;
  }
  .answers .second-row div.no-tablet {
    display: none;
  }

  .answers .first-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
  }
  .answers .second-row {
    gap: 100px;
  }
  .answers .second-row {
    display: inline-grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .answers .first-row div.mobile-grid {
    display: flex;
  }

  .answers.second {
    margin-bottom: 150px;
  }
}

@media screen and (max-width: 700px) {
  .answers .first-row div.tablet {
    display: none;
  }
  .answers .second-row div.no-tablet {
    display: grid;
  }
  .answers {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .answers .first-row {
    display: inline-grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  .answers .second-row {
    display: inline-grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }

  .answers.second {
    margin-bottom: 100px;
  }

  .answers .first-row > div,
  .answers .second-row > div,
  .answers .second-row > .no-tablet {
    display: grid;
    grid-template-columns: 100px 250px;
    gap: 0;
  }

  .answers .first-row .description,
  .answers .second-row .description {
    margin-top: 10px;
    text-align: left;
    font-size: 18px;
    line-height: 24px;
    text-align: left;
    letter-spacing: 0;
  }

  .answers img {
    margin-bottom: 0;
  }

  .answers .first-row .title,
  .answers .second-row .title {
    font-size: 16px;
    line-height: 20px;
    text-align: left;
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .answers .first-row div.tablet {
    display: none;
  }
  .answers .second-row div.no-tablet {
    display: grid;
  }
  .answers {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .answers .first-row {
    display: inline-grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  .answers .second-row {
    display: inline-grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }

  .answers.second {
    margin-bottom: 30px;
  }

  .answers .first-row > div,
  .answers .second-row > div,
  .answers .second-row > .no-tablet {
    display: grid;
    grid-template-columns: 100px 200px;
    gap: 0;
  }

  .answers .first-row .description,
  .answers .second-row .description {
    margin-top: 10px;
    text-align: left;
    font-size: 14px;
    line-height: 18px;
    text-align: left;
    letter-spacing: 0;
  }

  .answers img {
    margin-bottom: 0;
  }

  .answers .first-row .title,
  .answers .second-row .title {
    font-size: 16px;
    line-height: 20px;
    text-align: left;
    width: 100%;
  }
  .saber-mais p {
    line-height: 20px;
    font-size: 16px;
    margin-bottom: 10px;
  }

  .saber-mais {
    margin-bottom: 70px;
  }

  .answers img {
    height: 70px;
    width: 70px;
  }
  .answers .first-row div.mobile-grid {
    display: grid;
  }

  .faq > div p.description {
    line-height: 23px;
    font-size: 16px;
    max-width: 450px;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 30px;
  }
}

/**vamos começar*/
.vamos-comecar {
  display: flex;
}
.imagem-comecar {
  width: 60%;
  height: 80%;
}

.pronto-marcacao {
  background: #9695c9;
  background: linear-gradient(
    180deg,
    rgba(150, 149, 201, 1) 0%,
    rgba(102, 94, 168, 1) 100%
  );
  height: 100%;
  width: 40vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
}

.pronto-marcacao .pronto {
  font-size: 25px;
  width: 100%;
  max-width: 450px;
  line-height: 35px;
  font-family: "Montserrat";
  text-align: center;
  font-weight: 300;
}

.pronto-marcacao .title {
  font-size: 100px;
  font-weight: 600;
  font-family: "Fleur";
  margin-top: 10px;
}

.vamos-comecar .marcacao-container {
  height: 45px;
  width: 203px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  background: linear-gradient(
    180deg,
    rgba(239, 194, 218, 1) 0%,
    rgba(252, 231, 194, 1) 100%
  );
  transition: box-shadow 0.6s ease, transform 0.6s ease;
  will-change: transform;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  cursor: pointer;
}

.vamos-comecar .marcacao-container:hover {
  box-shadow: 5px 5px 30px 1px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 5px 5px 30px 1x rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 5px 5px 30px 1px rgba(0, 0, 0, 0.2);
}

.vamos-comecar .marcacao-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(252, 231, 194, 1) 0%,
    rgba(239, 194, 218, 1) 50%,
    rgba(251, 179, 219, 1) 98%
  );
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  z-index: 0;
}
.vamos-comecar .marcacao-container:hover::before {
  opacity: 1;
}

.vamos-comecar .marcacao-container .text {
  color: var(--roxoprimario);
  font-family: "Raleway";
  font-weight: 500;
  text-transform: uppercase;
  z-index: 1;
}

@media screen and (max-width: 1430px) {
  .pronto-marcacao {
    width: 600px;
  }
}

@media screen and (max-width: 1210px) {
  .pronto-marcacao {
    width: 500px;
  }

  .pronto-marcacao .title {
    font-size: 70px;
  }
  .pronto-marcacao .pronto {
    font-size: 20px;
    line-height: 25px;
  }

  .vamos-comecar .marcacao-container {
    margin-top: 0;
  }
}

@media screen and (max-width: 900px) {
  .vamos-comecar {
    flex-direction: column;
  }
  .pronto-marcacao {
    padding-bottom: 0;
    width: 100vw;
    height: 400px;
  }

  .imagem-comecar {
    width: 100vw;
    height: 400px;
  }

  .imagem-comecar img {
    height: 100%;
  }

  .pronto-marcacao .title {
    font-size: 90px;
  }
  .pronto-marcacao .pronto {
    font-size: 25px;
    line-height: 25px;
  }

  .vamos-comecar .marcacao-container {
    margin-top: 20px;
  }
}
@media screen and (max-width: 480px) {
  .pronto-marcacao {
    height: 300px;
  }
  .imagem-comecar {
    width: 100%;
    height: 225px;
    object-fit: cover;
  }

  .imagem-comecar img {
    object-fit: inherit;
    width: 100%;
    height: 100%;
  }

  .pronto-marcacao .pronto {
    font-size: 16px;
    max-width: 300px;
    line-height: 20px;
    margin-top: 0;
  }

  .pronto-marcacao .title {
    font-size: 50px;
    font-weight: 600;
    font-family: "Fleur";
    margin-top: 10px;
  }

  .vamos-comecar .marcacao-container {
    background-image: url("/images/icons/marcacao.svg");
    height: 45px;
    width: 190px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .vamos-comecar .marcacao-container .text {
    color: var(--roxoprimario);
    font-family: "Raleway";
    font-weight: 500;
    text-transform: uppercase;
  }
}
/**como funciona**/
.como-funciona {
  margin-top: 180px;
  background: #b0a8d2;
  background: linear-gradient(
    0deg,
    rgba(176, 168, 210, 1) 0%,
    rgba(250, 223, 237, 1) 37%,
    rgba(255, 255, 255, 1) 74%
  );
}

.como-funciona > .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.como-funciona > .title p {
  font-family: "Fleur";
  font-weight: bold;
  font-size: 87px;
  line-height: 72px;
  letter-spacing: 1px;
  color: var(--roxoprimario);
}

.como-funciona .marcacao-container {
  background-image: url("/images/icons/background-purple-como-funciona.svg");
  height: 81px;
  width: 406px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.como-funciona > .title span {
  font-size: 87px;
  color: white;
  line-height: 89px;
  letter-spacing: 1px;
  font-family: "Fleur";
  font-weight: bold;
  margin-top: 10px;
}

.steps {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.steps .first-row {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 220px;
}

.steps .first-row div,
.steps .second-row div {
  display: flex;
  font-size: 187px;
  line-height: 130px;
  font-family: "Fleur";
  font-weight: bold;
  color: var(--roxoprimario);
}

.steps .first-row div p,
.steps .second-row div p {
  margin-right: 55px;
}

.steps .first-row div > .description,
.steps .second-row div > .description {
  flex-direction: column;
  width: 100%;
  max-width: 430px;
}

.steps .first-row div > .description > .title,
.steps .second-row div > .description > .title {
  font-size: 24px;
  font-weight: 400;
  font-family: "Raleway";
  line-height: 27px;
  margin-bottom: 27px;
}

.steps .first-row div > .description > .description2,
.steps .second-row div > .description > .description2 {
  font-size: 16px;
  font-weight: 200;
  font-family: "Raleway";
  line-height: 24px;
}

.steps .second-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 135px;
}

.saber-mais-sessao {
  padding-bottom: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.saber-mais-sessao p {
  text-transform: uppercase;
  color: var(--roxoprimario);
  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
  font-family: "Raleway";
  letter-spacing: 0.01em;
}

.saber-mais-sessao .marcacao-container span {
  font-family: "Raleway";
  font-size: 16px;
  letter-spacing: 0.01em;
  font-weight: 500;
  z-index: 1;
}
.saber-mais-sessao .marcacao-container {
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  height: 45px;
  width: 155px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background: linear-gradient(
    180deg,
    rgba(239, 194, 218, 1) 0%,
    rgba(252, 231, 194, 1) 100%
  );
  transition: box-shadow 0.6s ease, transform 0.6s ease;
  will-change: transform;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  cursor: pointer;
}

.saber-mais-sessao .marcacao-container:hover {
  box-shadow: 5px 5px 30px 1px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 5px 5px 30px 1x rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 5px 5px 30px 1px rgba(0, 0, 0, 0.2);
}

.saber-mais-sessao .marcacao-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(252, 231, 194, 1) 0%,
    rgba(239, 194, 218, 1) 50%,
    rgba(251, 179, 219, 1) 98%
  );
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  z-index: 0;
}

.saber-mais-sessao .marcacao-container:hover::before {
  opacity: 1;
}

@media screen and (max-width: 1430px) {
  .steps .first-row {
    gap: 100px;
    margin-left: 100px;
    margin-right: 100px;
  }
}
@media screen and (max-width: 1040px) {
  .steps .first-row {
    gap: 50px;
    margin-left: 100px;
    margin-right: 100px;
  }
}

@media screen and (max-width: 846px) {
  .steps .first-row {
    display: inline-grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
  }

  .steps {
    margin-top: 50px;
    justify-content: center;
  }
  .steps .second-row {
    margin-top: 0;
    margin-left: 100px;
    margin-right: 100px;
  }

  .steps .first-row div,
  .steps .second-row div {
    font-size: 160px;
    line-height: 100px;
  }

  .number {
    width: 100%;
    max-width: 50px;
  }

  .como-funciona {
    margin-top: 130px;
  }

  .steps .second-row {
    margin-bottom: 140px;
  }
}

@media screen and (max-width: 480px) {
  .number {
    width: 100%;
    max-width: 30px;
  }

  .como-funciona {
    margin-top: 100px;
  }

  .como-funciona > .title p {
    font-size: 40px;
    line-height: 30px;
  }

  .como-funciona .marcacao-container {
    height: 50px;
    width: 230px;
    display: flex;
    justify-content: center;
    align-items: center;

    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 5px;
  }

  .como-funciona > .title span {
    font-size: 40px;
    line-height: 40px;
    margin-top: 5px;
  }

  .steps {
    margin-top: 30px;
    padding-left: 30px;
    justify-content: left;
  }

  .steps .first-row {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin-right: 0;
    margin-left: 0;
  }

  .steps .first-row div,
  .steps .second-row div {
    font-size: 80px;
    line-height: 90px;
  }

  .steps .first-row div p,
  .steps .second-row div p {
    margin-right: 30px;
  }

  .steps .first-row div p.number {
    width: 50px;
  }

  .steps .first-row div > .description,
  .steps .second-row div > .description {
    max-width: 430px;
  }

  .steps .first-row div > .description > .title,
  .steps .second-row div > .description > .title {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 8px;
  }

  .steps .first-row div > .description > .description2,
  .steps .second-row div > .description > .description2 {
    font-size: 14px;
    font-weight: 200;
    font-family: "Raleway";
    line-height: 18px;
  }

  .steps .second-row {
    margin-bottom: 40px;
    margin-left: 0;
    margin-right: 0;
  }

  .saber-mais-sessao p {
    font-size: 16px;
    margin-left: 30px;
    margin-right: 30px;
    line-height: 20px;
    margin-bottom: 10px;
  }
}

/**os nossos serviços**/
.os-nossos-servicos {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  position: relative;
}

.os-nossos-servicos .title {
  margin-top: 190px;
  font-family: "Fleur";
  font-size: 87px;
  line-height: 97px;
  letter-spacing: 0.02em;
  font-weight: bold;
  color: var(--roxoprimario);
  margin-bottom: 100px;
}

.os-nossos-servicos .grid ul {
  list-style: none; /* Remove default list styling */
  margin: 0;
  padding: 0;
}

.os-nossos-servicos .grid ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6%;
  transform: translateY(0%);
  width: 1em;
  height: 1em;
  background-image: url("/images/icons/list-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.os-nossos-servicos .grid ul li.duplo::before {
  top: 5%;
}

.os-nossos-servicos .grid ul li {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 30px;
  color: var(--roxoprimario);
  font-family: "Raleway";
  padding-bottom: 35px;
  position: relative;
  padding-left: 1.5em;
}

.os-nossos-servicos .grid {
  display: grid;
  grid-template-columns: repeat(2, 540px);
  gap: 0px;
  text-align: left;
}

.os-nossos-servicos .marcacao-container span {
  z-index: 1;
  font-family: "Raleway";
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.01em;
  font-weight: 500;
}
.os-nossos-servicos .marcacao-container {
  position: relative;
  overflow: hidden;
  height: 45px;
  width: 245px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background: linear-gradient(
    180deg,
    rgba(239, 194, 218, 1) 0%,
    rgba(252, 231, 194, 1) 100%
  );
  transition: box-shadow 0.6s ease, transform 0.6s ease;
  will-change: transform;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  margin-bottom: 200px;
  margin-top: 60px;
  cursor: pointer;
}

.os-nossos-servicos .marcacao-container:hover {
  box-shadow: 5px 5px 30px 1px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 5px 5px 30px 1x rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 5px 5px 30px 1px rgba(0, 0, 0, 0.2);
}

.os-nossos-servicos .marcacao-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(252, 231, 194, 1) 0%,
    rgba(239, 194, 218, 1) 50%,
    rgba(251, 179, 219, 1) 98%
  );
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  z-index: 0;
}

.os-nossos-servicos .marcacao-container:hover::before {
  opacity: 1;
}

.os-nossos-servicos .pendulo {
  width: 500px;
  object-fit: contain;
  position: absolute;
  right: -2%;
  top: -10%;
  z-index: 10;
}

@media screen and (max-width: 1400px) {
  .pendulo {
    display: none;
  }
}

@media screen and (max-width: 1160px) {
  .os-nossos-servicos .grid {
    grid-template-columns: repeat(2, 440px);
  }
}

@media screen and (max-width: 940px) {
  .os-nossos-servicos .grid ul li {
    font-size: 18px;
    padding-bottom: 10px;
  }

  .os-nossos-servicos .title {
    margin-top: 150px;
    margin-bottom: 70px;
  }

  .os-nossos-servicos .marcacao-container {
    margin-bottom: 150px;
  }
  .os-nossos-servicos .grid {
    grid-template-columns: repeat(1, 540px);
  }
}

@media screen and (max-width: 700px) {
  .os-nossos-servicos .title {
    margin-top: 70px;
    font-size: 50px;
    line-height: 55px;
    margin-bottom: 10px;
  }

  .os-nossos-servicos .grid {
    padding-left: 30px;
    padding-right: 30px;
    grid-template-columns: repeat(1, 1fr);
  }

  .os-nossos-servicos .grid ul li::before {
    top: 20%;
  }

  .os-nossos-servicos .grid ul li.duplo::before {
    top: 10%;
  }

  .os-nossos-servicos .grid ul li.duplo {
    line-height: 22px;
  }

  .os-nossos-servicos .grid ul li {
    font-size: 14px;
    padding-bottom: 10px;
  }

  .os-nossos-servicos .marcacao-container {
    margin-bottom: 70px;
  }

  .saber-mais-sessao {
    padding-bottom: 70px;
  }
}
/**vamos falar*/
.vamos-falar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.vamos-falar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Adjust this */
  z-index: -1;
  opacity: 1;
  background: #efc2da;
  background: linear-gradient(
    0deg,
    rgba(239, 194, 218, 1) 5%,
    rgba(150, 149, 201, 1) 61%,
    rgba(102, 94, 168, 1) 90%
  );
}

.vamos-falar > .question {
  font-family: "Fleur";
  font-size: 87px;
  font-weight: bold;
  line-height: 88px;
  color: white;
  margin-top: 195px;
  margin-bottom: 100px;
}

.vamos-falar > .form .container {
  flex-direction: row;
  display: flex;
}

.vamos-falar > .form .container .input {
  flex-direction: column;
  display: flex;
  margin-left: 30px;
  margin-right: 30px;
  width: 360px;
  margin-bottom: 66px;
}

.vamos-falar > .form .container.last .input {
  width: 100%;
}

.vamos-falar > .form .container .input label {
  color: white;
  font-family: "Raleway";
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0.4px;
}

.vamos-falar > .form .container .input input {
  background-color: transparent;
  outline: none;
  border: none;
  border-bottom: 1px solid white;
  padding-top: 30px;
  font-size: 20px;
  color: white;
  font-family: "Raleway";
}

.vamos-falar .button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 57px;
}

.vamos-falar button {
  all: unset;
  cursor: pointer;
  text-decoration: none;
  width: 210px;
  height: 44px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  font-family: "Raleway";
  color: var(--roxoprimario);
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in-out;

  border-radius: 50px;
  background: linear-gradient(
    180deg,
    rgba(239, 194, 218, 1) 0%,
    rgba(252, 231, 194, 1) 100%
  );
  transition: box-shadow 0.6s ease, transform 0.6s ease;
  will-change: transform;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.vamos-falar button span {
  z-index: 1;
}

.vamos-falar button:hover {
  box-shadow: 5px 5px 30px 1px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 5px 5px 30px 1x rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 5px 5px 30px 1px rgba(0, 0, 0, 0.2);
}

.vamos-falar button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(252, 231, 194, 1) 0%,
    rgba(239, 194, 218, 1) 50%,
    rgba(251, 179, 219, 1) 98%
  );
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  z-index: 0;
}

.vamos-falar button:hover::before {
  opacity: 1;
}

.redes-sociais-form {
  position: absolute;
  right: 60px;
  display: flex;
  top: 500px;
}

.redes-sociais-form > div > .text {
  font-family: "Fleur";
  font-size: 52px;
  font-weight: bold;
  color: white;
  transform: rotate(270deg);
}

.redes-sociais-form .redes img {
  width: 26px;
  height: 26px;
}

.redes-sociais-form .marcacao-container {
  cursor: pointer;
  text-decoration: none;
  background-image: url("/images/icons/marcacao.svg");
  width: 300px;
  height: 57px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  position: absolute;
  right: -240px;
  /* right: -100px; */
  top: -20px;
  display: flex;
  justify-content: start;
  align-items: center;
  transition: all 0.2s ease-in-out;
}

.redes-sociais-form .marcacao-container a,
.redes-sociais-form .marcacao-container-last a {
  font-family: "Raleway";
  font-size: 25px;
  margin-left: 120px;
  text-align: center;
  line-height: 30px;
}

.redes-sociais-form .marcacao-container:hover,
.redes-sociais-form .marcacao-container-last:hover {
  right: -120px;
}

.redes-sociais-form .marcacao-container img,
.redes-sociais-form .marcacao-container-last img {
  right: 230px;
  top: 17px;
  position: absolute;
}

.redes-sociais-form .marcacao-container-last {
  cursor: pointer;
  text-decoration: none;
  background-image: url("/images/icons/marcacao.svg");
  width: 300px;
  height: 57px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  position: absolute;
  right: -240px;
  top: 60px;
  display: flex;
  justify-content: start;
  align-items: center;
  transition: all 0.2s ease-in-out;
}

@media screen and (max-width: 1050px) {
  .redes-sociais-form {
    top: 250px;
  }
}

@media screen and (max-width: 846px) {
  .vamos-falar > .question {
    margin-top: 130px;
  }

  .vamos-falar > .form .container .input {
    width: 300px;
  }

  .redes-sociais-form {
    top: 150px;
  }

  .form {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 720px) {
  .vamos-falar > .form .container .input {
    width: 200px;
  }
}

@media screen and (max-width: 480px) {
  .vamos-falar {
    padding-bottom: 30px;
  }
  .redes-sociais-form {
    display: none;
  }
  .vamos-falar > .form .container.last .input {
    width: auto;
  }
  .vamos-falar > .question {
    font-size: 60px;
    line-height: 88px;
    margin-top: 70px;
    margin-bottom: 30px;
  }

  .vamos-falar > .form .container {
    flex-direction: column;
    display: flex;
  }

  .vamos-falar > .form .container .input {
    margin-left: 30px;
    margin-right: 30px;
    width: 310px;
    margin-bottom: 20px;
  }

  .vamos-falar > .form .container .input label {
    color: white;
    font-family: "Raleway";
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.4px;
  }
  .vamos-falar .button {
    margin-top: 30px;
  }
}

/**contactos*/
.contactos {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 260px;
}

.contactos .title {
  font-family: "Raleway";
  font-weight: 600;
  font-size: 24px;
  line-height: 27px;
  letter-spacing: 0.4px;
  color: white;
  padding-bottom: 34px;
}

.contactos .description {
  font-family: "Raleway";
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.4px;
  color: white;
}

.marcar-sessao {
  padding-top: 150px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.marcar-sessao .title {
  font-family: "Fleur";
  font-size: 87px;
  line-height: 89px;
  font-weight: bold;
  letter-spacing: 1px;
  color: white;
  padding-bottom: 50px;
}

.marcar-sessao .description {
  font-family: "Raleway";
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.4px;
  font-style: italic;
  color: white;
  margin-bottom: 50px;
}

.marcar-sessao .marcacao-container {
  cursor: pointer;
  text-decoration: none;
  background-image: url("/images/icons/background-number.svg");
  width: 300px;
  height: 57px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  font-family: "Raleway";
  color: var(--roxoprimario);
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  line-height: 30px;
  color: white;
}

.marcar-sessao .marcacao-container a {
  color: white;
  transition: all 0.4s ease-in-out;
}

.marcar-sessao .marcacao-container a:hover {
  color: var(--rosaclaro);
  transition: all 0.4s ease-in-out;
}

.vamos-falar button:hover {
  transition: all 0.4s ease-in-out;
}

@media screen and (max-width: 846px) {
  .contactos {
    grid-template-columns: repeat(1, 250px);
    gap: 100px;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .contactos {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin-top: 0;
    text-align: center;
  }

  .contactos .title {
    font-family: "Raleway";
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0px;
    color: white;
    padding-bottom: 10px;
  }

  .contactos .description {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0px;
    color: white;
  }

  .marcar-sessao {
    padding-top: 100px;
  }

  .marcar-sessao .title {
    font-size: 50px;
    line-height: 40px;
    padding-bottom: 20px;
  }

  .marcar-sessao .description {
    font-family: "Raleway";
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0.4px;
    font-style: italic;
    color: white;
    margin-bottom: 30px;
  }
}

/**footer*/
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background-image: url("/images/footer.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  position: relative;
  padding-bottom: 150px;

  background-position: center 80%;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%; /* Adjust this */
  z-index: 1;
  opacity: 1;
  background: #efc2da;
  background: linear-gradient(
    180deg,
    rgba(239, 194, 218, 1) 3%,
    rgba(239, 194, 218, 0) 100%
  );
}

.footer .logo {
  margin-top: 160px;
}

.footer .redes-sociais {
  display: flex;
  flex-direction: row;
  margin-top: 55px;
}

.footer .redes-sociais img {
  width: 27px;
  height: 27px;
  cursor: pointer;
  margin-left: 5px;
  margin-right: 5px;
  transition: all 0.2s ease-in-out;
}

.footer .redes-sociais .facebook:hover {
  transform: scale(1.5);
  transition: all 0.2s ease-in-out;
}

.footer .redes-sociais .instagram:hover {
  transform: scale(1.5);
  transition: all 0.2s ease-in-out;
}

@media screen and (max-width: 846px) {
  .footer::before {
    height: 40%;
  }
}
@media screen and (max-width: 480px) {
  .footer {
    padding-bottom: 50px;

    background-position: center 80%;
  }

  .footer {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url("/images/footer.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  .footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Adjust this */
    z-index: 1;
    opacity: 1;
    background: #efc2da;
    background: linear-gradient(
      180deg,
      rgba(239, 194, 218, 1) 3%,
      rgba(239, 194, 218, 0) 100%
    );
  }

  .footer .logo {
    width: 120px;
    object-fit: contain;
    z-index: 1;
    height: 120px;
    margin-top: 70px;
  }
}

/**foooter pages */
.footer.pages {
  background-image: none;
  background-color: white;
  padding-bottom: 100px;
}

.footer.pages::before {
  background: none;
}

.footer.pages .logo {
  margin-top: 100px;
}

/**footer nor */
footer {
  background-color: var(--rosaclaro);
  display: flex;
  justify-content: space-between;
  padding-left: 150px;
  padding-right: 150px;
  height: 46px;
  align-items: center;
}

footer div p {
  font-family: "Montserrat";
  font-size: 12px;
  font-weight: 400;
  color: var(--roxoprimario);
}

footer div p a {
  cursor: pointer;
}

footer div p a:hover {
  color: var(--roxosecundario);
}

@media screen and (max-width: 480px) {
  footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-left: 25px;
    padding-right: 25px;
  }

  footer div p {
    font-family: "Montserrat";
    font-size: 10px;
    font-weight: 400;
    color: var(--roxoprimario);
    text-align: center;
  }

  footer div p a {
    cursor: pointer;
  }

  footer div p a:hover {
    color: var(--roxosecundario);
  }
}

/** footer nor pages **/
footer.pages {
  background-color: var(--roxosecundario);
}

footer.pages div p,
footer.pages div p a {
  color: white;
}

footer.pages div p a:hover {
  color: var(--rosaclaro);
}

.radiestesia,
.radiestesia > div {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.radiestesia .title {
  font-size: 87px;
  font-weight: bold;
  line-height: 66px;
  letter-spacing: 0.02em;
  margin-top: 220px;
  font-family: "Fleur";
  color: var(--roxoprimario);
}

.radiestesia .arrow {
  height: 63px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.radiestesia .texto1 {
  text-align: left;
  font-size: 16px;
  line-height: 23px;
  color: var(--roxoprimario);
  max-width: 500px;
  width: 100%;
  letter-spacing: 0.01em;
  font-family: "Raleway";
  font-weight: 300;
}

.radiestesia .texto2 {
  text-align: left;
  font-size: 16px;
  line-height: 23px;
  color: var(--roxoprimario);
  max-width: 500px;
  width: 100%;
  letter-spacing: 0.01em;
  font-family: "Raleway";
  font-weight: 300;
  margin-top: 10px;
  margin-bottom: 100px;
}

.radiestesia .grid {
  display: flex;
  flex-direction: row;
}

.radiestesia .grid .container1 {
  background: rgba(235, 235, 235, 0.4);
  text-align: left;
  height: 100%;
  height: 120vh;
}

.radiestesia .grid .container1 .title {
  padding-left: 200px;
  padding-right: 130px;
  margin-top: 84px;
  font-family: "Raleway";
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.radiestesia .grid .container1 .texto {
  padding-left: 200px;
  padding-right: 130px;
  margin-top: 30px;
  color: var(--roxoprimario);
  font-family: "Raleway";
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.01em;
  font-weight: 300;
}

.radiestesia .grid .container1 .lista {
  list-style: none; /* Remove default list styling */
  margin: 0;
  padding-left: 200px;
  padding-right: 130px;
  margin-top: 55px;
  margin-bottom: 70px;
}

.radiestesia .grid .container1 ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5%;
  transform: translateY(0%);
  width: 1em;
  height: 1em;
  background-image: url("/images/icons/list-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.radiestesia .grid .container1 ul li {
  position: relative;
  padding-left: 1.5em;
}
.radiestesia .grid .container1 ul li.duplo::before {
  top: 10%;
}

.radiestesia .grid .container1 ul li {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 22px;
  color: var(--roxoprimario);
  font-family: "Raleway";
  padding-bottom: 20px;
}

.radiestesia .grid .container2 {
  background: rgba(150, 149, 201, 0.4);
  text-align: left;
  height: 100%;
  height: 120vh;
}

.radiestesia .grid .container2 .title {
  padding-left: 130px;
  padding-right: 200px;
  margin-top: 84px;
  font-family: "Raleway";
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.radiestesia .grid .container2 .texto {
  padding-left: 130px;
  padding-right: 200px;
  margin-top: 30px;
  color: var(--roxoprimario);
  font-family: "Raleway";
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.01em;
  font-weight: 300;
}

.radiestesia .grid .container2 .lista {
  list-style: none; /* Remove default list styling */
  margin: 0;
  padding-left: 130px;
  padding-right: 200px;
  margin-top: 55px;
  margin-bottom: 70px;
}

.radiestesia .grid .container2 .lista .title-list {
  font-weight: 500;
  text-transform: uppercase;
  padding-bottom: 2px;
}

.radiestesia .grid .container2 ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5%;
  transform: translateY(0%);
  width: 1em;
  height: 1em;
  background-image: url("/images/icons/list-icon-escuro.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.radiestesia .grid .container2 ul li {
  position: relative;
  padding-left: 1.5em;
}
.radiestesia .grid .container2 ul li.duplo::before {
  top: 10%;
}

.radiestesia .grid .container2 ul li {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 22px;
  color: var(--roxoprimario);
  font-family: "Raleway";
  padding-bottom: 45px;
}

.radiestesia .container1 {
  position: relative;
  display: flex;
  flex-direction: column;
}

.radiestesia .cristais {
  width: auto;
  height: 23.85vw;
  object-fit: contain;
  /* position: absolute; */
  bottom: 0;
  margin-top: auto;
}

@media screen and (max-width: 1700px) {
  .radiestesia .grid .container2 ul li {
    padding-bottom: 20px;
  }

  .header.pages .menu > .container {
    display: grid;
    grid-template-columns: 280px 300px 260px;
    gap: 300px;
  }
}

@media screen and (max-width: 1530px) {
  .radiestesia .grid .container2 .lista {
    padding-left: 130px;
    padding-right: 130px;
  }

  .radiestesia .grid .container1 .lista {
    padding-left: 130px;
  }
  .radiestesia .grid .container1 .texto {
    padding-left: 130px;
    padding-right: 130px;
  }
  .radiestesia .grid .container1 .title {
    padding-left: 130px;
    padding-right: 130px;
  }

  .radiestesia .grid .container2 .texto {
    padding-left: 130px;
    padding-right: 130px;
  }
  .radiestesia .grid .container2 .title {
    padding-left: 130px;
    padding-right: 130px;
  }

  .header.pages .menu > .container {
    display: grid;
    grid-template-columns: 250px 300px 260px;
    gap: 250px;
  }
}

@media screen and (max-width: 1377px) {
  .radiestesia .grid .container2 .lista,
  .radiestesia .grid .container1 .lista,
  .radiestesia .grid .container1 .texto,
  .radiestesia .grid .container1 .title,
  .radiestesia .grid .container2 .texto,
  .radiestesia .grid .container2 .title {
    padding-left: 50px;
    padding-right: 50px;
    margin-top: 30px;
  }

  .header.pages .menu > .container {
    display: grid;
    grid-template-columns: 270px 200px 260px;
    gap: 200px;
  }
}

@media screen and (max-width: 1377px) {
  .radiestesia .grid .container2 .lista,
  .radiestesia .grid .container1 .lista,
  .radiestesia .grid .container1 .texto,
  .radiestesia .grid .container1 .title,
  .radiestesia .grid .container2 .texto,
  .radiestesia .grid .container2 .title {
    padding-left: 30px;
    padding-right: 30px;
  }
  .radiestesia .grid .container2 .texto,
  .radiestesia .grid .container1 .texto,
  .radiestesia .grid .container1 ul li,
  .radiestesia .grid .container2 ul li {
    font-size: 14px;
  }

  .radiestesia .grid .container2 .lista,
  .radiestesia .grid .container1 .lista {
    margin-top: 30px;
  }

  .header.pages .menu > .container {
    display: grid;
    grid-template-columns: 200px 100px 260px;
    gap: 200px;
  }
  .header.pages .menu {
    padding-left: 180px;
  }
}

@media screen and (max-width: 1377px) {
  .header.pages .menu {
    padding-left: 100px;
  }
  .radiestesia .grid .container1,
  .radiestesia .grid .container2 {
    height: 110vh;
  }
}

@media screen and (max-width: 870px) {
  .radiestesia .grid {
    display: flex;
    flex-direction: column;
  }
  .radiestesia .cristais {
    height: 50vw;
  }
  .radiestesia .grid .container1 .lista {
    margin-bottom: 10px;
  }
  .radiestesia .grid .container1 {
    height: 90vh;
  }

  .radiestesia .grid .container2 {
    height: auto;
  }

  .header.pages .menu > .container {
    display: grid;
    grid-template-columns: 270px 200px 260px;
    gap: 200px;
  }

  .header.pages .menu > .container {
    display: grid;
    grid-template-columns: 100px 100px 200px;
    gap: 150px;
  }
  .header.pages .menu {
    padding-left: 50px;
  }
}
.logo.pages {
  display: block;
}
@media screen and (max-width: 480px) {
  .radiestesia .title {
    font-size: 65px;
    line-height: 50px;
    margin-top: 150px;
  }

  .radiestesia .texto1,
  .radiestesia .texto2 {
    font-size: 14px;
    line-height: 20px;
    max-width: 330px;
  }

  .radiestesia .texto2 {
    margin-bottom: 70px;
  }

  .radiestesia .grid .container1 {
    height: 110dvh;
  }
  .header.pages .menu > .container {
    display: grid;
    grid-template-columns: 30px 30px 100px;
    gap: 110px;
  }
  .header.pages .menu {
    padding-left: 30px;
  }
}
/**como funciona página**/
.como-funciona-page,
.como-funciona-page div {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.como-funciona-page .title {
  margin-top: 215px;
  font-family: "Fleur";
  font-weight: bold;
  font-size: 87px;
  color: var(--roxoprimario);
  line-height: 88px;
  letter-spacing: 0.02em;
}

.como-funciona-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Adjust this */
  z-index: 0;
  opacity: 0.3;
  background: linear-gradient(
    0deg,
    rgba(176, 168, 210, 1) 0%,
    rgba(232, 210, 230, 1) 37%,
    rgba(255, 255, 255, 1) 74%
  );
}

.como-funciona-page .marcacao-container .text {
  color: white;
  font-family: "Fleur";
  font-size: 87px;
  line-height: 88px;
  letter-spacing: 0.02em;
  font-weight: bold;
}

.como-funciona-page .marcacao-container .text {
  margin-top: 10px;
}
.como-funciona-page .marcacao-container {
  position: relative;
  overflow: hidden;
  height: 86px;
  width: 410px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background: linear-gradient(
    270deg,
    rgba(239, 194, 218, 1) 0%,
    rgba(150, 149, 201, 1) 37%,
    rgba(102, 94, 168, 1) 74%
  );
  transition: box-shadow 0.6s ease, transform 0.6s ease;
  will-change: transform;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.como-funciona-page .arrow {
  margin-top: 45px;
  margin-bottom: 45px;
}

.como-funciona-page .texto1 {
  font-family: "Raleway";
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 23px;
  font-weight: 300;
  color: var(--roxoprimario);
  width: 100%;
  max-width: 580px;
  text-align: left;
}

.como-funciona-page .texto2 {
  margin-top: 27px;
  font-family: "Raleway";
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 23px;
  font-weight: 600;
  color: var(--roxoprimario);
  width: 100%;
  max-width: 580px;
  text-align: left;
  padding-bottom: 70px;
}

.como-funciona-page .bola1,
.como-funciona-page .bola3,
.como-funciona-page .bola7,
.como-funciona-page .bola8 {
  background-color: var(--rosaclaro);
  width: 270px;
  height: 270px;
  border-radius: 100%;
  position: absolute;
}

.como-funciona-page .bola1 {
  left: 10%;
  bottom: 60%;
}

.como-funciona-page .bola3 {
  left: 53%;
  bottom: 60%;
}

.como-funciona-page .bola2 {
  left: 33%;
  bottom: 30%;
}

.como-funciona-page .bola4 {
  left: 73%;
  bottom: 30%;
}

.como-funciona-page .bola5 {
  left: -11%;
  bottom: 95%;
}

.como-funciona-page .bola6 {
  left: 5%;
  bottom: -24%;
  z-index: 0;
}

.como-funciona-page .bola7 {
  left: 80%;
  bottom: -24%;
  z-index: 0;
}

.como-funciona-page .bola8 {
  left: 5%;
  bottom: -24%;
  z-index: 0;
}

.como-funciona-page .bola1 p,
.como-funciona-page .bola3 p {
  color: var(--roxoprimario);
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.01em;
  font-weight: 600;
  font-family: "Raleway";
}

.como-funciona-page .bola2,
.como-funciona-page .bola4,
.como-funciona-page .bola5,
.como-funciona-page .bola6 {
  background-color: var(--roxoprimario);
  width: 270px;
  height: 270px;
  border-radius: 100%;
  position: absolute;
}

.como-funciona-page .bola2 p,
.como-funciona-page .bola4 p {
  color: var(--rosaclaro);
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.01em;
  font-weight: 600;
  font-family: "Raleway";
}

.bolas {
  position: relative;
  height: 80vh;
  width: 100%;
}

@media screen and (max-width: 1130px) {
  .como-funciona-page .bola1,
  .como-funciona-page .bola2,
  .como-funciona-page .bola3,
  .como-funciona-page .bola4,
  .como-funciona-page .bola5,
  .como-funciona-page .bola6,
  .como-funciona-page .bola7,
  .como-funciona-page .bola8 {
    width: 200px;
    height: 200px;
    border-radius: 100%;
    position: absolute;
  }
  .como-funciona-page .bola2 p,
  .como-funciona-page .bola1 p,
  .como-funciona-page .bola4 p,
  .como-funciona-page .bola3 p {
    font-size: 16px;
    line-height: 20px;
  }

  .como-funciona-page .bola5 {
    left: -20%;
    bottom: 95%;
  }
}

@media screen and (max-width: 800px) {
  .como-funciona-page .bola2 {
    left: 10%;
    bottom: 28%;
  }
  .como-funciona-page .bola4 {
    left: 53%;
    bottom: 28%;
  }

  .como-funciona-page .bola5 {
    left: -20%;
    bottom: 80%;
  }

  .como-funciona-page .bola3 {
    background-color: var(--roxoprimario);
  }

  .como-funciona-page .bola4 {
    background-color: var(--rosaclaro);
  }

  .como-funciona-page .bola3 p {
    color: var(--rosaclaro);
  }

  .como-funciona-page .bola4 p {
    color: var(--roxoprimario);
  }
}

@media screen and (max-width: 480px) {
  .como-funciona-page .arrow {
    height: 63px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .como-funciona-page .title {
    margin-top: 150px;
    font-size: 50px;
    line-height: 30px;
  }
  .como-funciona-page .marcacao-container .text {
    margin-top: 5px;
  }
  .como-funciona-page .marcacao-container .text {
    font-size: 50px;
    line-height: 30px;
  }
  .como-funciona-page .marcacao-container {
    height: 40px;
    width: 197px;
  }
  .como-funciona-page .texto1,
  .como-funciona-page .texto2 {
    font-size: 14px;
    line-height: 20px;
    max-width: 300px;
  }
  .como-funciona-page .bola5 {
    left: -40%;
    bottom: 80%;
  }
  .como-funciona-page .bola1,
  .como-funciona-page .bola2,
  .como-funciona-page .bola3,
  .como-funciona-page .bola4,
  .como-funciona-page .bola5,
  .como-funciona-page .bola6,
  .como-funciona-page .bola7,
  .como-funciona-page .bola8 {
    width: 180px;
    height: 180px;
  }

  .como-funciona-page .bola1 {
    left: 7%;
    bottom: 70%;
  }

  .como-funciona-page .bola2 {
    left: 7%;
    bottom: 33%;
  }
  .como-funciona-page .bola4 {
    left: 53%;
    bottom: 23%;
  }

  .como-funciona-page .bola7 {
    display: none;
  }

  .como-funciona-page .bola8 {
    bottom: -30%;
  }

  .como-funciona-page .bola6 {
    display: none;
  }

  .bolas {
    height: 70vh;
  }

  .como-funciona-page .bola2 p,
  .como-funciona-page .bola1 p,
  .como-funciona-page .bola4 p,
  .como-funciona-page .bola3 p {
    font-size: 14px;
    line-height: 20px;
    max-width: 150px;
    width: 100%;
  }
}

/** serviços page */
.servicos-page {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.servicos-page .title {
  margin-top: 226px;
  font-family: "Fleur";
  font-size: 87px;
  letter-spacing: 0.02em;
  line-height: 68px;
  font-weight: bold;
  color: var(--roxoprimario);
  margin-bottom: 50px;
}

.servicos-page .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: left;
  margin: 0 230px;
  gap: 100px;
}

.servicos-page .grid ul {
  list-style: none; /* Remove default list styling */
  margin: 0;
  margin-top: 55px;
  margin-bottom: 70px;

  color: var(--roxoprimario);
}

.servicos-page .grid ul li p {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  font-family: "Raleway";
  margin-top: 45px;
}

.servicos-page .grid ul li span {
  font-weight: 300;
  font-family: "Raleway";
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 1560px) {
  .servicos-page .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
    margin: 0 150px;
    gap: 100px;
  }
}

@media screen and (max-width: 1020px) {
  .servicos-page .grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    text-align: left;
    margin: 0 30px;
    gap: 0px;
  }

  .servicos-page .grid ul {
    list-style: none;
    margin: 0;
    margin-top: 35px;
    margin-bottom: 0px;
    color: var(--roxoprimario);
  }
}
@media screen and (max-width: 480px) {
  .servicos-page .title {
    margin-top: 150px;
    font-size: 50px;
    line-height: 30px;
    margin-bottom: 15px;
  }

  .servicos-page .grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    text-align: left;
    margin: 0 30px;
    gap: 0;
  }

  .servicos-page .grid ul {
    list-style: none;
    margin: 0;
    margin-top: 35px;
    margin-bottom: 0px;
    color: var(--roxoprimario);
  }

  .servicos-page .arrow {
    width: 30px;
    height: 30px;
  }
}

/** politicas de privacidade **/
.politicas-page p,
h2,
li {
  color: var(--roxoprimario);
  text-align: left;
  font-family: "Raleway";
}

.politicas-page {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.politicas-page .title {
  margin-top: 226px;
  font-family: "Fleur";
  font-size: 87px;
  letter-spacing: 0.02em;
  line-height: 68px;
  font-weight: bold;
  color: var(--roxoprimario);
  margin-bottom: 50px;
  text-align: center;
}

.politicas-page .container {
  padding-left: 300px;
  padding-right: 300px;
  margin-top: 50px;
}

.politicas-page .container .description {
  margin-bottom: 50px;
}

.politicas-page h2 {
  padding-bottom: 20px;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 22px;
  font-weight: 600;
}

.politicas-page .description {
  font-weight: 500;
}

.politicas-page p,
li {
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 23px;
  font-weight: 300;
}

.politicas-page p {
  padding-bottom: 20px;
}

.politicas-page ul {
  padding-left: 23px;
  padding-bottom: 20px;
}

@media screen and (max-width: 1160px) {
  .politicas-page .container {
    padding-left: 200px;
    padding-right: 200px;
  }
}

@media screen and (max-width: 800px) {
  .politicas-page .container {
    padding-left: 100px;
    padding-right: 100px;
  }
}

@media screen and (max-width: 480px) {
  .politicas-page .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .politicas-page .title {
    font-size: 65px;
    line-height: 50px;
    margin-top: 150px;
    margin-bottom: 30px;
    text-align: center;
  }

  .politicas-page .arrow {
    height: 30px;
    width: 50px;
    object-fit: contain;
    margin-top: 0px;
    margin-bottom: 0px;
  }
}
