/*---------------------------------------------global-assests-------------------------------------------*/
@font-face {
  font-family: 'Italiana';
  /* Nome personalizado no CSS */
  src: url('../assets/fonts/Italiana-Regular.woff2') format('woff2');
  font-weight: 400;
  /* Peso regular */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'BellotaText';
  /* Mesmo nome personalizado */
  src: url('../assets/fonts/BellotaText-Regular.woff2') format('woff2');
  font-weight: 400;
  /* Peso regular */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'BellotaText';
  src: url('../assets/fonts/BellotaText-Bold.woff2') format('woff2');
  font-weight: 700;
  /* Peso bold */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'BellotaText';
  src: url('../assets/fonts/BellotaText-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  /* Peso bold */
  font-style: italic;
  font-display: swap;
}

body {
  font-family: 'BellotaText', sans-serif;
  background-color: #fff;
  color: #000;
  margin: 0;
  padding: 0;
}

.container {
  width: auto;
}

/*smooth scroll*/
html {
  scroll-behavior: smooth;
}

/*general-line-height*/
h1,
h2,
p {
  line-height: 1.5;
}

[data-aos] {
  will-change: transform, opacity;
}

/*------------------------------------------------menu-desktop-------------------------------------*/
@media (min-width: 821px) {

  /*hide-menu-mobile*/
  .navbar-mobile,
  .menu-overlay,
  .menu-logo,
  .menu-toggle,
  .side-menu {
    display: none !important;
  }
}

/* bottom-fixed-menu */
.top-menu {
  display: flex;
  position: fixed;
  justify-content: space-between;
  white-space: nowrap;
  background: #fff;
  width: 100%;
  padding-top: 5px;
  margin-top: 8px;
  border-radius: 20px;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
  z-index: 1000;
}

.top-menu.visible {
  opacity: 1;
}

.top-menu.hidden {
  opacity: 0;
}

.top-menu img {
  margin-left: 20px;
}

.top-menu ul {
  display: flex;
  /* Garante que não quebre em múltiplas linhas */
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0 3rem 0;
}

.top-menu ul li {
  margin: -5px 0 0 3.13rem;
}

.top-menu ul li a {
  display: inline-block;
  color: #1B3A34;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.top-menu ul li a:hover {
  color: #E39C0C;
}

.top-menu ul li a.active {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  left: calc(50% - 2px);
  top: 68%;
  opacity: 0;
}

/*---------------------------------------------menu-mobile-version-----------------------------------------------*/
/*hide menu-desktop*/
@media (max-width: 820px) {
  .menu-desktop {
    display: none !important;
  }
}

/*menu-mobile*/
@media (max-width: 990px) {
  .menu-content {
    padding: 20px;
  }

  .menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .menu-list li {
    margin: 2.5rem 0 1rem;
    border-bottom: 1px solid #e39c0c;
  }

  .menu-list a {
    color: #636F79;
    font-size: 1.2rem;
    text-decoration: none;
  }

  /* menu bar */
  .menu-bar {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    position: fixed;
    top: 4px;
    left: 0;
    right: 0;
    border-radius: 5px;
    padding: 1rem 1.2rem;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
    z-index: 1100;
  }

  .menu-logo img {
    position: relative;
    padding: 0;
  }

  /* menu button*/
  .menu-toggle,
  .close-menu {
    background-color: #e39c0c;
    margin: 6px 0 0 0;
    border-radius: 4px;
    cursor: pointer;
  }

  .menu-toggle {
    height: 20px;
    width: 20px;
    padding: 5px 8px;
  }

  .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    height: 33px;
    width: 37px;
    padding: 6px 8px;
  }

  /* menu overlay drop*/
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 9999;
  }

  .menu-overlay.active {
    transform: translateY(0);
  }

  /*mobile nav header*/
  .top-barMobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111111;
    padding: 10px 5px;
    z-index: 1000;
  }

  #menuToggle {
    background: none;
    border: none;
    outline: none;
  }

  .mobile-logo {
    display: flex;
    justify-content: center;
    text-align: center;
  }

  /* top-bar-menu-mobile (open/close) */
  .side-menu {
    position: fixed;
    top: 0;
    left: -100%;
    background: rgb(255 255 255 / 50%);
    backdrop-filter: blur(10px);
    width: 65%;
    max-width: 300px;
    height: 100%;
    padding: 20px;
    overflow-y: auto;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: left 0.3s ease;
  }

  /* Quando ativo */
  .side-menu.active {
    left: 0;
  }

  /* Botão de fechar */
  .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    cursor: pointer;
    border: none;
  }

  /*overlay behind menu*/
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 26%);
    opacity: 0;
    visibility: hidden;
    z-index: 9998;
    transition: opacity 0.3s ease;
  }

  /* Quando ativo */
  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Estilo base para todos os itens do menu */
  .navbar-mobile ul {
    list-style: none;
    padding: 0;
  }

  .navbar-mobile ul li a {
    display: flex;
    align-items: center;
    color: #1b3a34;
    font-size: 1.5rem;
    font-weight: 600;
    /* text-transform: uppercase; */
    text-decoration: none;
    padding: 0;
  }

  /*mobile display none in desk*/
  .navbar-desk,
  .navbar-desktop {
    display: none;
  }

  .top-bar {
    display: none;
  }
}

/*-----------------------------------------------section-1-------------------------------------------*/
/*hero section*/
.section1 {
  overflow-x: hidden;
  padding: 7.3rem 5px 0 2.8rem;
}

.hero-benefits {
  display: inline-flex;
  margin: 4rem 0 0;
}

.hero-benefit1,
.hero-benefit2,
.hero-benefit3 {
  flex: 1;
  text-align: center;
  width: 155px;
  color: #1B3A34;
  font-size: .8rem;
  font-weight: 700;
  font-style: italic;
  padding: 10px 15px;
  margin: 0 10px;
  border: 1px dashed #E39C0C;
  border-top-left-radius: 100px;
  border-bottom-right-radius: 100px;
}

.hero-benefit1::before,
.hero-benefit2::before,
.hero-benefit3::before {
  content: "";
  background-image: url(../img/section-1/d-amoretta-purple-icon.svg);
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.hero-benefit1 {
  background-color: #E7CFDE;
}

.hero-benefit2 {
  background-color: #F9E6CA;
}

.hero-benefit3 {
  background-color: #E7F4F5;
}

.hero-benefit3 {
  background-color: #E7F4F5;
}

.hero-headline {
  font-family: 'Italiana', sans-serif;
  color: #862574;
  font-size: 2.48em;
  font-weight: 600;
}

.hero-subline {
  color: #1B3A34;
  font-size: 1.5rem;
  margin-bottom: 3rem;
}

.hero-btn,
.social-proof-btn {
  position: relative;
}

.main-cta {
  justify-content: center;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.main-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: #862574;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 25px 18px 28px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-cta::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -55px;
  transform: translateY(-50%);
  background-color: #862574;
  background-image: url(../img/section-1/d-amoretta-amora-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 15px;
}

.main-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.hero-location {
  display: flex;
  color: #1B3A34;
  font-weight: 700;
  margin-top: 6.5rem;
}

.hero-location:before {
  content: "";
  background-image: url(../img/section-1/local-hero-full-icon.svg);
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  width: 22px;
  height: 22px;
}

.hero-part-2 {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-img2 {
  display: block;
  position: absolute;
}

.hero-img2 {
  bottom: 5px;
  right: 88%;
  z-index: -1;
}

/* mobile version*/
@media (max-width: 767px) {
  .section1 {
    padding: 0;
  }

  .hero-benefits {
    margin: 6.5rem 0 0;
  }

  .hero-benefit1,
  .hero-benefit2,
  .hero-benefit3 {
    width: 100%;
    padding: 10px 20px;
    margin: 0 5px;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  .hero-benefit1::before,
  .hero-benefit2::before,
  .hero-benefit3::before {
    display: flex;
    position: relative;
    left: 38%;
  }

  .hero-headline {
    text-align: center;
    font-size: 2.5em;
    width: 100%;
    margin: 2rem 0 0 0;
  }

  .hero-subline {
    text-align: justify;
    padding: 0 15px;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    hyphens: auto;
  }

  .hero-btn,
  .social-proof-btn {
    display: flex;
    justify-content: center;
    padding-right: 40px;
  }

  .main-cta {
    margin: 0 auto;
    font-size: 1rem;
    padding: 15px 20px;
  }

  .main-cta::after {
    right: -45px;
    width: 48px;
    height: 48px;
    background-size: 22px;
  }

  .hero-location {
    justify-content: center;
    margin-top: 1.5rem;
  }

  .hero-part-2 {
    padding: 0 15px;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .hero-img {
    display: block;
    width: 100%;
    max-width: 370px;
    margin: 20px auto 0;
  }

  .hero-img img {
    width: 100%;
    height: auto;
    display: block;
  }

  .hero-img2 {
    display: none;
  }
}

/*----------------------------------------------social proof-------------------------------------------*/
.socialProof {
  position: relative;
  background-color: #E39C0C;
  padding: 1px;
  overflow: hidden;
  margin-top: -5px;
  text-align: center;
  z-index: 1;
}

.socialProof p {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
}

.socialProof p:before,
.socialProof p::after {
  content: "";
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  width: 13px;
  height: 22px;
}

.socialProof p:before {
  background-image: url(../img/section-1/outlined-left-arrow.svg);
  margin-right: 5px;
}

.socialProof p::after {
  background-image: url(../img/section-1/outlined-right-arrow.svg);
  margin-left: 5px;
}

@media (min-width: 768px) {
  .socialProof-mobile {
    display: none;
  }
}

/* mobile version*/
@media (max-width: 767px) {
  .socialProof-desktop {
    display: none;
  }

  .socialProof p {
    padding: 0 10px;
  }


  .socialProof p:before,
  .socialProof p::after {
    display: none;
  }
}

/*-------------------------------------------------section-2-------------------------------------------*/
.section2 {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0 1rem;
}

.section2-img {
  border: 1px solid #e39c0c;
  padding: 10px 10px 7px;
  border-top-left-radius: 45px;
  border-bottom-right-radius: 45px;
}

.section2-content {
  padding: 0 2rem;
}

.section2-content h2 {
  font-family: 'Italiana', sans-serif;
  color: #862574;
  font-size: 2.48em;
  font-weight: 600;
  margin: -15px 0 2.5rem;
}

.section1-text,
.section2-text {
  text-align: justify;
  color: #1B3A34;
  font-size: 1.5rem;
}

.section1-text {
  padding: 2.5rem 0 0;
  border-top: 1px dashed #e39c0c;
}

.section2-text {
  padding: 0 0 2.5rem;
  border-bottom: 1px dashed #e39c0c;
}

/* mobile version*/
@media (max-width: 767px) {
  .section2 {
    padding: 4rem 0 0;
    margin-bottom: 1rem;
  }

  .grid-mobile {
    display: grid !important;
    /* 1. Criamos a ordem: título primeiro, imagem depois, texto por último */
    grid-template-areas:
      "titulo"
      "imagem";
  }

  /* 2. Transformamos a div de conteúdo em sub-grid para liberar o H2 */
  .section2-content {
    display: contents;
    /* Isso faz os filhos (h2, p) virarem filhos diretos da row */
  }

  /* 3. Atribuímos cada elemento à sua área */
  .section2-content h2 {
    grid-area: titulo;
    font-size: 1.8rem;
    margin-bottom: 5px;
    padding: 0 15px;
  }

  .section2-img {
    grid-area: imagem;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    margin: 15px;
  }

  .section2-content p {
    font-size: 1.3rem;
    padding: 0 20px 0px;
    border-top: none;
    border-bottom: none;
    hyphens: auto;
  }
}

/*----------------------------------------------section-3-------------------------------------------*/
.section3 {
  position: relative;
  overflow: hidden;
  background-color: #E7F9F9;
  padding: 3.5rem 0;
  margin: 4.5rem 0 0;
}

.social-proof-headline {
  font-family: 'Italiana', sans-serif;
  color: #862574;
  font-size: 2.48em;
  font-weight: 600;
  margin: -15px 0 2.5rem;
}

.social-proof-subline {
  color: #1B3A34;
  font-size: 1.5rem;
  margin-bottom: 3rem;
}

/* Custom carousel social proof*/
.custom-carousel {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: visible;
}

.carousel-track-container {
  overflow: hidden;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  touch-action: pan-y;
}

.carousel-track {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  cursor: grab;
  user-select: none;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.carousel-track:active {
  cursor: grabbing;
}

.testimonial-card {
  background: #fff;
  padding: 1rem 1.5rem;
  margin: 10px;
  border: 1.8px dashed #1B3A34;
  border-radius: 30px;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.testimonial-name {
  font-family: 'Italiana', sans-serif;
  color: #1B3A34;
  font-size: 2.2rem;
  margin: 0;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.profile-img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #862574;
}

.testimonial-body p {
  color: #1B3A34;
  font-size: 1.15rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  width: 110%;
  /* Faz as setas ficarem pra fora */
  left: -5%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 5;
}

.carousel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  width: 45px;
  height: 45px;
  cursor: pointer;
  pointer-events: all;
  border: 0;
}

.carousel-btn svg {
  fill: #862574;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 8px;
}

.indicator {
  background: #ccc;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

.indicator.active {
  background: #e39c0c;
}

/* mobile version*/
@media (max-width: 767px) {
  .section3 {
    padding: 1rem 0;
    margin: 0;
    border-top: 1px dashed #e39c0c;
  }

  .testimonial-meta {
    justify-content: end;
  }

  .testimonial-name {
    font-size: 1.6rem;
  }

  .stars {
    width: 45%;
    height: auto;
  }

  .profile-img {
    width: 55px;
    height: 55px;
  }

  .social-proof-headline {
    font-size: 1.8rem;
    margin: 15px 0;
  }

  .social-proof-subline {
    font-size: 1.3rem;
  }

  /* changing positions */
  .grid-mobile-2 {
    display: grid !important;
    /* 3 colunas: uma de 20px na esquerda, o conteúdo no meio, e 20px na direita */
    grid-template-columns: 20px 1fr 20px;
    /* 1. Ordem dos elementos: título primeiro, texto depois, carrossel (repetido 3 vezes para ocupar tudo) por último o botão */
    grid-template-areas:
      ". titulo ."
      ". texto ."
      "carrossel carrossel carrossel"
      ". botao .";
  }

  .grid-mobile-2 {
    /* Espaço vertical entre as linhas */
    position: relative;
    left: 50%;
    right: 50%;
    width: 100vw;
    padding: 0;
    margin: 0;
    margin-left: -50vw;
    margin-right: -50vw;
  }

  /* 2. a div de conteúdo agora é um sub-grid para liberar o H2 */
  .social-proofPart-1 {
    display: contents;
    /* isso faz os filhos (h2, p e botão) virarem filhos diretos da row */
  }

  /* 3. Agora é atribuído a cada elemento à sua área */
  .social-proof-headline {
    grid-area: titulo;
    padding: 0;
    margin: 2.5rem 0 .5rem;
  }

  .social-proof-subline {
    grid-area: texto;
    padding: 0;
    margin-bottom: 1.8rem;
  }

  .social-proofPart-2 {
    grid-area: carrossel;
    padding: 0 20px 30px;
    overflow: hidden;
  }

  .social-proof-btn {
    grid-area: botao;
  }
}

/*------------------------------------------------section-4--------------------------------*/
.section4 .container {
  position: relative;
  z-index: 2;
  /* Garante que o conteúdo fique acima do background */
}

.section4 {
  display: flex;
  align-items: center;
  position: relative;
  text-align: center;
  overflow: hidden;
  padding: 4rem 0;
}

.section4-headline {
  display: flex;
  justify-content: center;
}

.section4-headline h2,
.section4-header h3 {
  font-family: 'Italiana', sans-serif;
  font-weight: 600;
}

.section4-headline h2 {
  color: #862574;
  font-size: 2.48em;
  width: 55%;
  margin-top: 0;
}

.section4-card {
  display: flex;
  padding: 0 20px;
  border-top-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
}

.section4-img {
  width: 100%;
  border-top-left-radius: 2rem;
}

.section4-itens {
  background: #FFF9F9;
  color: #1B3A34;
  padding: 0 0 1rem;
  border-top-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  border: 1.5px dashed #e39c0c;
}

.section4-header h3 {
  text-align: start;
  color: #E39C0C;
  font-size: 1.9rem;
  width: 50%;
  margin: .6rem 1rem;
}

.section4-body p {
  text-align: start;
  font-size: 1.5rem;
  margin: .6rem 1rem;
}

/* BG images */
.section4 {
  background-image:
    url(../img/section-4/bg-line-1.webp),
    url(../img/section-4/dress-vector.svg),
    url(../img/section-4/bg-line-2.webp),
    url(../img/section-4/bg-line-3.webp);

  /* element position */
  background-position:
    right 0 top -7%, right 0 bottom 59%, right 0 top 63%, right bottom -1%;

  /* element sizes */
  background-size: 100% auto, 19% auto, 100% auto, 100% auto;

  background-repeat: no-repeat;
}

/* mobile version*/
@media (max-width: 767px) {
  .section4 {
    background-image: none;
    padding: 3rem 0 1rem;
  }

  .section4-headline {
    text-align: start;
  }

  .section4-headline h2 {
    font-size: 1.8rem;
    width: 100%;
    margin-top: 0;
  }

  .mobileM {
    margin-bottom: 3rem;
  }

  .section4-card {
    padding: 0 10px;
  }

  .section4-body p {
    font-size: 1.3rem;
  }

  .section4-img {
    width: 100%;
    height: auto;
  }
}

/*------------------------------------------------section-5--------------------------------*/
.section5 {
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
  margin: -15px 0 0;
}

.section5-headline {
  display: flex;
  justify-content: center;
}

.section5-headline h2 {
  font-family: 'Italiana', sans-serif;
  color: #862574;
  font-size: 2.48em;
  font-weight: 600;
  width: 55%;
  margin-top: 0;
}

.section5-card {
  display: flex;
}

.section5-itens {
  background: #E7F9F9;
  padding: 1rem;
  border-radius: .65rem;
  border: 1px solid #87E2E3;
}

.section5-header {
  margin-bottom: 2rem;
  border-bottom: 1.5px dashed #1B3A34;
}

.section5-header h3 {
  color: #1B3A34;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin: .6rem 1rem;
}

.section5-body p {
  display: flex;
  align-items: flex-start;
  text-align: start;
  color: #000;
  font-size: 1.3rem;
  margin: .6rem 1rem;
}

.section5-body p::before {
  content: "•";
  color: black;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -15px;
}

.section5-btnCenter {
  display: flex;
  justify-content: center;
  margin: 3rem 0 .5rem;
}

.section5-support {
  margin-bottom: 1.3rem;
}

.section5-support,
.section7-support {
  display: inline;
  align-items: center;
  margin-bottom: 1.3rem;
}

.section5-support p,
.section7-support p {
  color: #000;
  font-size: 1.3rem;
  margin-left: 35px;

}

/* mobile version*/
@media (max-width: 767px) {
  .section5 {
    margin: 0;
  }

  .section5-headline h2 {
    font-size: 1.8rem;
    text-align: start;
    width: 100%;
  }

  .section5-btnCenter {
    margin: 3rem 45px .5rem 0;
  }

  .section5-support p,
  .section7-support p {
    font-size: 1.2rem;
    margin-left: 0px;
  }
}

/*------------------------------------------------section-6--------------------------------*/
.section6 {
  background-color: #FFF9F9;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px dashed #e39c0c;
}

.section6-main-img {
  border-radius: 40px;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.section6-headline h2 {
  font-family: 'Italiana', serif;
  color: #862574;
  font-size: 2.6rem;
  text-align: center;
  margin: 0 0 3rem;
}

.section6-content h3 {
  font-family: 'Italiana', serif;
  color: #1B3A34;
  font-size: 2.2rem;
  margin: 0;
}

.section6-item {
  border-bottom: 1px solid #D2D4D3;
  padding: 1.5rem 0;
  margin: 0;
}

.section6-item:last-child {
  border-bottom: none;
}

.section6-title {
  color: #e39c0c;
  font-size: 1.6rem;
  padding: 0 4rem 0 0;
  margin: 0;
}

.n-1:before,
.n-2:before,
.n-3:before,
.n-4:before {
  content: "";
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  width: 22px;
  height: 22px;
  margin-bottom: 10px;
}

.n-1:before {
  background-image: url(../img/section-6/number-1.svg);
}

.n-2:before {
  background-image: url(../img/section-6/number-2.svg);
}

.n-3:before {
  background-image: url(../img/section-6/number-3.svg);
}

.n-4:before {
  background-image: url(../img/section-6/number-4.svg);
}

.section6-text {
  align-self: center;
  font-size: 1.2rem;
  color: #1B3A34;
  padding: 0;
  margin: 0;
}

.section6::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-position: bottom center;
  background-repeat: repeat-x;
  pointer-events: none;
  z-index: 1;
  background-image: url(../img/section-6/bg-ruler.webp);
  left: 0;
  bottom: 35px;
  width: 100%;
  height: 70px;
}


/* mobile version*/
@media (max-width: 767px) {
  .section6 {
    padding: 3rem 0 0;
  }

  .section6-headline h2 {
    font-size: 2rem;
    margin: 0 0 1rem;
  }

  .section6-main-img {
    border-radius: 0;
  }

  .section6-item .col-lg-6 {
    padding-bottom: 10px;
  }

  .section6-text {
    padding-left: 0;
  }
}

/*------------------------------------------------section-7--------------------------------*/
.section7 {
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 5rem 0 0;
}

.section7-headline {
  display: flex;
  justify-content: center;
  text-align: center;
}

.section7-headline h2 {
  font-family: 'Italiana', serif;
  color: #862574;
  font-size: 2.6rem;
  width: 80%;
  margin: 0 0 3rem;
}

.map-container {
  border-radius: 40px;
  border: 1px solid #e39c0c;
  box-sizing: border-box;
}

.img-column,
.map-column {
  padding: 0;
}

.img-column img {
  object-fit: cover;
  border-top-left-radius: 40px;
}

iframe {
  padding: 0;
  border: 0;
  border-top-right-radius: 40px;
  width: 100%;
}

.information-column,
.location-column {
  display: inline;
  text-align: center;
  background-color: #E7CFDE;
  border-radius: 10px;
  border: 1px dashed;
  margin: 3rem 10px;
}

.information-column h3,
.location-column h3 {
  font-size: 1.6rem;
}

.phone::before,
.time::before,
.location-column h3::before {
  content: "";
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-bottom: 10px;
}

.phone::before,
.time::before {
  width: 17px;
  height: 17px;
  margin: 0 10px 2px 0;
}

.phone,
.time,
.location-column p {
  font-size: 1.1rem;
}

.phone::before {
  background-image: url(../img/section-7/phone-icon.svg);
}

.time::before {
  background-image: url(../img/section-7/time-icon.svg);
}

.location-column h3::before {
  background-image: url(../img/section-7/local-icon.svg);
  width: 24px;
  height: 24px;
  margin: 0px 7px 5px 0;
}


/* mobile version*/
@media (max-width: 767px) {
  .section7 {
    padding: 0;
    margin-top: 3rem;
  }

  .section7-headline h2 {
    text-align: start;
    font-size: 1.8rem;
    width: 100%;
    margin: 0 0 2rem;
  }

  .img-column img {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
  }

  iframe {
    border-top-right-radius: 0;
    margin-bottom: 1rem;
  }

  .information-column,
  .location-column {
    margin: 1rem 10px;
  }

  .map-container {
    padding-bottom: 15px;
  }
}

/*------------------------------------------------section-8--------------------------------*/
.section8 {
  background-color: #FFF9F9;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 4rem 0 5rem;
  border-top: 1px dashed;
}

.section8-headline {
  display: flex;
  justify-content: center;
  text-align: center;
}

.section8-headline h2 {
  font-family: 'Italiana', serif;
  color: #862574;
  font-size: 2.6rem;
  width: 80%;
  margin: 0 0 3rem;
}

.faq-item {
  background-color: #fff;
  padding: 2rem;
  margin: 0 0 2rem;
  border: 1px solid #e39c0c;
  border-top-left-radius: 200px;
  border-bottom-right-radius: 200px;
}

.faq-item h3 {
  color: #1b3a34;
  font-size: 1.5rem;
}

.faq-item p {
  color: #000;
  font-size: 1.2rem;
}

/* mobile version*/
@media (max-width: 767px) {
  .section8 {
    padding: 3rem 0 1rem;
  }

  .section8-headline h2 {
    font-size: 2rem;
    margin: 0 0 2rem;
  }

  .faq-item {
    border-radius: 2rem;
  }
}

/*------------------------------------------------section-9--------------------------------*/
.section9 {
  background-color: #E7F9F9;
  padding: 3rem 0 4rem;
  overflow: hidden;
}

.section9-title {
  font-family: 'Italiana', sans-serif;
  color: #862574;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  width: min-content;
  margin: 0 0 2rem;
}

.section9-content {
  border: 1.5px dashed #1B3A34;
  padding: 2.5rem;
  border-radius: 45px 0 45px 0;
  background-color: #fff;
}

.section9-text {
  text-align: left;
  color: #1B3A34;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.section9-text:last-child {
  margin-bottom: 0;
}

.section9-tree {
  max-width: 110%;
  height: auto;
  margin-bottom: -6rem;
}

/* mobile version*/
@media (max-width: 767px) {
  .section9 {
    padding: 3rem 0;
  }

  .section9-title {
    width: 100%;
    margin: 0 0 2rem;
  }

  .section9-tree {
    max-width: 100%;
    margin-bottom: 0;
    margin-top: 1rem;
  }

  .section9-title {
    text-align: center;
  }
}

/*--------------------------------------------------footer-----------------------------------------------*/
.footer-top {
  background-color: #1B3A34;
  color: #fff;
  padding: 3rem 0 1rem;
}

.footer-logo-text {
  max-width: 280px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 2.2;
  margin: 0 0 -3rem;
}

/* centrallogo */
.central-logo {
  display: grid;
  justify-content: center;
  text-align: center;
}

.central-logo img {
  max-width: 120px;
  height: auto;
  padding: 0 10px;
  margin-bottom: .5rem;
}

.central-logo p {
  font-size: 1.2rem;
  margin: 0 0 -1rem;
}

/* social media and A2D studio link */
.footer-social {
  display: grid;
  justify-content: flex-end;
}

.footer-social ul {
  display: flex;
  gap: 0;
  list-style: none;
  padding: 0;
}

.footer-social li {
  width: 35px;
  height: 36px;
  margin-right: 1rem;
}

.footer-social li a {
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
}

.footer-social li.menu-instagram a {
  background-image: url('../img/section-footer/instagram-icon.svg');
}

.footer-social li.menu-whatsapp a {
  background-image: url('../img/section-footer/whatsapp-icon.svg');
}

.footer-social li.menu-googlelocal a {
  background-image: url('../img/section-footer/googlelocal-icon.svg');
}

.a2dstudio-link {
  color: #fff;
  text-decoration: none;
  margin: 2rem 0 -2rem;
}

.a2dstudio-link strong {
  text-decoration: underline;
}

.footer-bottom {
  background-color: #fff;
  color: #000;
  padding: 1rem 0;
}

/*button whatsapp*/
.scroll-button {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* quando visível */
.scroll-button.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.whatsapp-button {
  display: flex;
  position: fixed;
  z-index: 100;
  bottom: 25px;
  right: 15px;
  text-decoration: none;
}

.whatsapp-button::before {
  content: "";
  display: inline-block;
  background-image: url('../img/section-footer/button-whatsapp.svg');
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  width: 70px;
  height: 70px;
}

/* mobile version*/
@media (max-width: 767px) {
  .footer-social-icons ul {
    justify-content: center;
  }

  .start-logo {
    text-align: center;
  }

  .central-logo img {
    padding: 50px 10px 0;
  }

  .footer-social ul {
    padding: 12px 0 0px;
  }

  .footer-social {
    justify-content: center;
  }

  .a2dstudio-link {
    margin: 0;
  }
}

/*--------------------------------------------- Page 404-----------------------------------------------*/
.page-404 {
  display: grid;
  justify-content: center;
  text-align: center;
  margin: 22vh 0 30vh 0;
}

.page-404 h1 {
  font-weight: 400
}

.page-404 h2 {
  font-family: 'Akshar';
  font-size: 6rem;
  text-transform: uppercase;
}