@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --verde: #535D22;
    --amarelo: #CC930E;
    --white: #FDFCF8;
    --white2:#FFFFFF;
    --grey:#D6D1D1;
    --dark: #090101;
    --max-width: 1200px;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html, body {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

ul {
    list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/*Hero*/
.hero {
  min-height: 100vh;
  background-image: url('/img/herom2.webp');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 60px 20px;
  width: 100%;
  position: relative;
}

.hero-text {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  margin-top: 30px;
}

.hero-text img {
  max-width: 200px;
  height: auto;
}

.hero-text h1 {
  font-size: 2.3rem;
  line-height: 1.2;
  color: var(--verde);
  font-weight: 700;
}

.hero-text p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--dark);
  max-width: 450px;
}

.btn {
  display: inline-block;
  padding: 16px 20px;
  background-color: var(--amarelo);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 4px;
  transition: all .3s ease;
  box-shadow: 0 4px 28px var(--amarelo);
  max-width: 280px;
  text-align: center;
}

.btn:hover {  
  transform: translateY(-2px);
}

.infos {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: absolute;
  right: 180px;
  top: 85%;
  transform: translateY(-50%);
  z-index: 10;
}

.infos .infos2 {
  max-width: 300px;
  right: -20px;
  position: relative;
}

.hero-infos span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 5px 15px;
  background-color: #fdfcf8da;
  border-radius: 10px;
  font-size: .8rem;
  font-weight: 500;
  box-shadow: 0 4px 10px #535d22b5;
  border: 1px solid var(--verde);
  transition: all .3s ease;
  max-width: 500px;
}

.hero-infos svg {
  flex-shrink: 0;
  color: var(--verde);
  width: 22px;
  height: 22px;
}

/*Nutrologia*/

.nutrologia {
  padding: 80px 20px;
}

.texto-nutrologia {
  display: flex;
  align-items: center;
  gap: 60px;
}

.descricao {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.descricao h2 {
  color: var(--amarelo);
  font-weight: 600;
  line-height: 1.3;
  max-width: 400px;
  font-size: 1.8rem;
}

.img-mosaico {
  flex: 1;
  position: relative;
}

.img-mosaico img {
  width: 100%;
  max-width: 500px;
  height: auto;
  flex: 1;
  display: block;
}

.descricao p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--dark);
  max-width: 450px;
  margin-top: 6px;
}

.texto-nutrologia b {
  font-weight: 600;
}

/* Serviços*/

.servicos {
  padding: 80px 20px;
  background-color: var(--verde);
  height: 600px;
  z-index: 9;
}

.title-p  {
  text-transform: uppercase;
  font-size: 12px;
  color: var(--white);
  font-weight: 300;
}

.servicos-content {
  display: flex;
  gap: 100px;
  align-items: flex-start;
}

.text-servicos {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--white);
}

.text-servicos h2 {
  font-weight: 600;
  line-height: 1.3;
  max-width: 450px;
  font-size: 1.8rem;
}

.text-servicos .desc {
  line-height: 1.5;
  font-size: 16px;
  max-width: 380px;
  margin-bottom: 10px;
}

.servicos-cards {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  grid-auto-rows: 1fr;
}

.card-servicos {
  background-color: var(--white2);
  padding: 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--amarelo);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-header img {
  width: 40px;
  height: 40px;
}

.card-servicos h3 {
  font-size: 1.1rem;
  color: var(--dark);
  font-weight: 500;
  line-height: 1.3;
}

.card-servicos p {
  font-size: .9rem;
  line-height: 1.6;
  color: var(--dark);
}

.card-servicos b {
  font-weight: 600;
}

/* Plano */

.plano {
  position: relative;
  text-align: center;
  background-color: var(--white);
  border: 1px solid var(--verde);
  border-radius: 10px;
  padding: 60px 40px 50px;
  z-index: 10;
  margin-top: -90px;
}

.plano-logo {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: auto;
    z-index: 1;
}

.content-plano {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.text-plano {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--verde);
  max-width: 700px;
}

.text-plano h2 {
  font-weight: 600;
  line-height: 1.3;
  font-size: 1.8rem;
}

.text-plano p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  max-width: 600px;
}

.cards-plano {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /*dois em uma linha*/
  gap: 16px;
  width: 100%;
  max-width: 850px;
}

.card {
  background-color: var(--verde);
  color: var(--white2);
  padding: 20px 24px;
  border-radius: 8px;
  text-align: left;
  transition: transform .3s ease;
  min-height: 100px;
  display: flex;
  align-items: center;
}

.card p {
  line-height: 1.4;
  font-size: .95rem;
  font-weight: 400;
}

.final-text {
  font-size: 20px;
  color: var(--verde);
  max-width: 600px;
  font-weight: 500;
}

.plano .btn {
  margin: 0 auto;
}

/* visitas*/
.visitas {
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.visitas-grid-mobile {
    display: none;
}

.visitas h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 50px;
  line-height: 1.3;
}

.visitas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /*dois em uma linha*/
  gap: 20px;
  width: 100%;
  max-width: 800px;
  text-align: left;
}

.visitas-cards {
  padding: 30px;
  border: 1px solid var(--verde);
  border-radius: 10px;
  background-color: #d6d1d117;
}

.visitas-header {
  text-align: center;
  margin-bottom: 25px;
  align-items: center;
}

.visitas-header h3 {
  color: var(--verde);
  font-weight: 500;
  margin-top: 10px;
}

.visita-text p {
  line-height: 1.5;
  font-size: 16px;
  color: var(--dark);
  text-align: center;
}

.visitas-header svg {
  width: 45px;
  height: 45px;
  background: linear-gradient(320deg, #cc930ee4, #fdfcf895);
  padding: 8px;
  color: #535D22;
  border-radius: 6px;
}


/*beneficios*/
.beneficios {
  padding: 80px 20px;
  text-align: center;
}

.beneficios h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 50px;
  line-height: 1.3;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.beneficios-card {
  background-color: #F9F8F8;
  border: 1px solid var(--dark);
  border-radius: 15px;
  overflow:visible;
  position: relative;
  display: flex;
  flex-direction: column;
}

.beneficios-card img {
  width: 100%;
  height: 200px;
  object-fit:cover;
  display: block;
  border-bottom: 1px solid var(--dark);
  border-radius: 14px 14px 0 0;
}

.beneficios-card svg {
  position: absolute;
  top: 180px;
  left: 15%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  padding: 12px;
  background-color: var(--verde);
  color: var(--white2);
  border-radius: 50%;
  border: 4px solid var(--white2);
  z-index: 1;
}

.beneficios-card p {
  padding: 40px 24px 24px;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--dark);
  flex: 1;
  text-align: left;
  font-weight: 400;
}

.beneficios-final {
  font-size: 1.1rem;
  line-height: 1.3;
  color: var(--dark);
  max-width: 700px;
  margin: 0 auto;
}

.carousel-indicators {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.carousel-indicators span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--grey);
  cursor: pointer;
  transition: all .3s ease;
}

.carousel-indicators span.active {
  background-color: var(--amarelo);
  border-radius: 5px;
}

/*depoimentos*/
.depoimentos{
  padding: 80px 20px;
  align-items: center;
  text-align: center;
  display: flex;
  flex-direction: column;
}
/*mudei*/
.depoimentos-grid-mobile .depoimentos-cards {
  display: none;
}

.carousel-arrows{
  display: none;
}

.depoimentos-text .title-p {
  color: var(--verde);
}

.depoimentos-text h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--verde);
  margin-bottom: 50px;
  line-height: 1.3;
}

.depoimentos-grid {
  display: flex;
  justify-content: center;
}

.depoimentos-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
}

.depoimentos-cards2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
   max-width: 800px;
}

.depoimentos-cards img {
  width: 100%;
  min-height: 250px;
  border-radius: 12px;
  border: 1px solid var(--amarelo);
  object-fit: contain;
  box-shadow: 0 4px 10px rgba(213, 151, 5, 0.662);
}

.depoimentos-cards2 img {
  width: 100%;
  min-height: 250px;
  border-radius: 12px;
  border: 1px solid var(--amarelo);
  object-fit: contain;
  box-shadow: 0 4px 10px rgba(213, 151, 5, 0.662);
}


/*Sobre mim*/
.sobre-mim {
  padding: 60px 20px;
}

.sobre {
  display: flex;
  gap: 50px;
}

.sobre img {
  width: 600px;
}

.sobre .title-p {
  color: var(--verde);
  font-weight: 300;
  font-size: 12px;
}

.sobre .text-sobre {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  gap: 15px;
  margin-top: 40px;
}

.text-sobre h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--verde);
  line-height: 1.3;
}

.text-sobre p {
  color: var(--verde);
  font-size: 17.5px;
  font-weight: 400;
}

/* atendimento*/
.atendimento {
  background-color: var(--verde);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  max-width: 900px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.atendimento h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.atendimento p {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
}

.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.tab {
  background-color: #d6d1d157;
  border: none;
  padding: .6rem 1.2rem;
  border-radius: 8px;
  color: #ffffffb5;
  cursor: pointer;
  font-weight: 400;
  transition: .3s;
  font-size: 18px;
}

.tab-content{
  display: none;
  animation: fadeIn .4s ease;
  margin-bottom: 20px;
}

.tab-content.active {
  display: block;
}

.tab.active {
  background: var(--white);
  color: var(--verde);
  font-weight: 500;
}

.info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  text-align: center;
  line-height: 1.6;
}
.map-container {
  width: 100%;
  max-width: 500px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.beneficios-online li {
  margin-bottom: 0.6rem;
  background-color: #fdfcf8da;
  padding: .6rem 1rem;
  border-radius: 6px;
  color: var(--dark);
  font-size: 16px;
}

@keyframes fadeIn {
  from {opacity:0; transform: translateY(10px);}
  to {opacity:1; transform: translateY(0);}
}

/*faq*/

.faq {
  display: flex;
  flex-direction: column;
  padding: 5rem;
  border-radius: 16px;
  text-align: center;
  align-items: center;
  margin: 2rem auto;
}

.faq h2 {
  color: var(--verde);
  margin-bottom: 3rem;
  font-size: 1.8rem;
  font-weight: 600;
}

.faq .title-p {
  color: var(--verde);
  margin-bottom: 10px;
}

.faq-container {
    margin: 0 auto;
    max-width: 800px;
}

.faq-item {
    border: 1px solid var(--amarelo);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    background-color: var(--white);
    justify-content: space-between;
    align-items: center;
    border: 1px solid #cc930e3a;
    cursor: pointer;
    text-align: left;
    transition: 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.faq-question span {
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    flex: 1;
}

.faq-question i {
    color: var(--dark);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 1.5rem 1.5rem;
    color: var(--dark);
    line-height: 1.4;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
}

/* Estado ativo (aberto) */
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
  background-color: #cc930e2d;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq h3 {
  color: var(--verde);
  margin-top: 25px;
  margin-bottom: 10px;
}

.faq .faq-final {
  color: var(--verde);
  max-width: 500px;
  margin-bottom: 20px;
}
/*cta-final*/

.cta-final {
 background-color: var(--verde);
 display: flex;
  flex-direction: column;
  padding: 5rem;
  border-radius: 16px;
  text-align: center;
  align-items: center;
  margin: 2rem auto;
  position: relative;
  max-width: 1000px;
  z-index: 0;
}

        /*divisor*/
        .cta-background::before {
            content: '';
            position: absolute;
            top: -58px;
            left: 50%;
            transform: translateX(-50%);
            width: 90px;
            height: 80px;
            background-image: url('/img/divisor.webp');
            background-size: 100% 100%;
            z-index: 1;
        }

        .cta-arrow {
          position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }

        .cta-content {
          padding: 2rem;
          color: var(--white);
          gap: 20px;
          display: flex;
          flex-direction: column;
          align-items: center;
        }
        .cta-content h2 {
          font-weight: 500;
          font-size: 1.6rem;
        }

        .cta-content p {
          font-weight: 300;
          line-height: 1.6;
          max-width: 700px;
          font-size: 18px;
          margin-bottom: 20px;
        }

/* footer */
footer {
  padding: 2rem 1.5rem;
  font-size: .8rem;
}

.footer {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 4rem;
}

.footer .logo img {
  width: 150px;
  height: auto;
}

.footer-text {
  text-align: center;
  flex: 1;
  line-height: 1.5;
  color: var(--verde);
}

.footer-text a {
  color: var(--verde);
}

.footer-redes svg {
  width: 30px;
  height: 30px;
  fill: var(--verde);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.footer-redes a {
  text-decoration: none;
}

/*animaçoes*/
.hero-text h1, .hero-text p, .hero-text .btn,
.hero-infos span, 
.nutrologia h2, .nutrologia .descricao p, .img-mosaico,
.servicos .text-servicos .title-p, .servicos .text-servicos h2, 
.servicos .text-servicos p, .card-servicos, 
.plano .text-plano h2, .plano .text-plano p,
.cards-plano .card, .plano .final-text, .plano .btn,
.beneficios > h2, .beneficios-card, .beneficios > p,
.cta-content h2, .cta-content p, .cta-content .btn,
.fade-up, .atendimento {
    transform: translateY(50px);
    opacity: 0;
}

.plano-logo {
    opacity: 0;
}

@media (max-width: 768px) {
  .hero {
    background-image: url('/img/ipadm2.webp');
    min-height: 110vh;
    background-position: center center;
  }
  
            .hero-container {
                padding: 40px 20px;
                flex-direction: column;
                align-items: flex-start;
            }

            .hero-infos {
            transform: scale(.8);     /* diminui o bloco inteiro */
            transform-origin: left;   /* mantém alinhado à esquerda */
          }

          .hero-infos span {
            white-space: nowrap;
            font-size: .8rem;
            padding: 4px 10px;
            gap: 8px;
          }
          
          .infos .infos2 {
            max-width: 315px;
          }

          .infos {
            right: -6px;
            gap: 0;
            top: 90%;
          }
            .hero-text h1 {
                font-size: 1.75rem;
            }

            .hero-text p {
                font-size: 1rem;
            }

            .hero-text {
              margin-bottom: 22rem;
              width: 100%;
              display: flex;
              flex-direction: column;
              align-items: center; 
              text-align: center;
            }

            .hero-text img {
                max-width: 160px;
                margin: 0 auto;
            }

            .hero-btn {
                width: 100%;
                align-items: center;
                text-align: center;
            }

            .hero-infos span {
                font-size: 0.95rem;
                padding: 14px 20px;
            }

            .hero-infos svg {
                width: 20px;
                height: 20px;
            }

            .nutrologia {
                padding: 60px 20px;
            }

            .texto-nutrologia {
                flex-direction: column-reverse;
                gap: 40px;
                text-align: center;
            }

            .img-mosaico {
                order: 1;
                display: flex;
                justify-content: center;
            }

            .img-mosaico img {
                max-width: 100%;
            }

            .descricao {
                order: 2;
            }

            .descricao h2 {
                font-size: 1.75rem;
            }

            .descricao p {
                font-size: 1rem;
            }

            .servicos {
                padding: 60px 20px;
            }

            .servicos-content {
                flex-direction: column;
                gap: 40px;
            }

            .text-servicos {
              text-align: center;
            }

            .text-servicos .btn {
              margin-bottom: 0;
            }

            .text-servicos h2 {
                font-size: 1.75rem;
                max-width: 100%;
            }

            .text-servicos .desc {
                max-width: 100%;
            }

            .hero-text .btn {
                width: 100%;
                margin-bottom: 10rem;
            }

            .servicos-cards {
                grid-template-columns: 1fr;
                align-items: stretch;
            }

            .servicos {
              height: 1100px;
            }

            .servicos .btn {
              margin: 0 auto;
            }

            .card-servicos {
                height: 100%;
            }

            .plano {
                padding: 60px 24px 40px;
            }

            .plano-logo {
              width: 50px;
            }

            .text-plano h2 {
                font-size: 1.6rem;
            }

            .cards-plano {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .card {
                padding: 16px 20px;
            }

            .beneficios {
              padding: 60px 20px;
            }

            .beneficios h2 {
              font-size: 1.7rem;
            }

            .beneficios-grid {
              display: flex;
                grid-template-columns: none;
                gap: 16px;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                scroll-behavior: smooth;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
                max-width: 100%;
                padding: 0 20px;
                margin-left: -20px;
                margin-right: -20px;
            }

            .beneficios-grid::-webkit-scrollbar {
                display: none;
            }

            .depoimentos-grid-mobile::-webkit-scrollbar {
                display: none;
            }

            .beneficios-card {
                min-width: 85%;
                max-width: 85%;
                flex-shrink: 0;
                scroll-snap-align: center;
            }

            .carousel-indicators {
                display: flex;
            }

            .beneficios  p {
                font-size: 1rem;
            }

            .sobre {
              flex-direction: column-reverse;
              text-align: center;
            }

            .sobre img {
              width: 100%;
            }

            .text-sobre h2 {
              font-size: 1.7rem;
            }

.atendimento {
    padding: 1.5rem;
    max-width: 350px;
  }

  .atendimento h2 {
    font-size: 1.7rem;
  }

  .atendimento .btn {
    margin-top: 10px;
  }

  .tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .tab {
    width: 100%;
    font-size: 1.3rem;
  }

  .info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .info p {
    line-height: 1.4;
    max-width: 300px;
  }

  .beneficios-online {
    text-align: center;
  }

  .beneficios-online li {
    font-size: 0.95rem;
  }

  .map-container {
    max-width: 100%;
    height: 150px;
  }

  .faq h2 {
    width: 300px;
  }

  .faq {
    padding: 1rem;
  }

  .faq-question span {
    font-size: 16px;
  }

  .faq-question {
    padding: 1rem;
  }

  .faq h3 {
    max-width: 250px;
  }

  .cta-final {
    padding: .6rem;
    margin-top: 75px;
    max-width: 350px;
  }
 
  .cta-content h2 {
    font-size: 1.6rem;
}

 .cta-content p {
  font-size: 1rem;
  }

  .cta-content {
    margin-top: 20px;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
  }

  .depoimentos {
                padding: 60px 20px;
            }

            .depoimentos-text h2 {
                max-width: 300px;
            }

            .depoimentos-cards, .depoimentos-cards2 {
                grid-template-columns: 1fr;
                gap: 16px;
            }
/*oque mudei*/
            .depoimentos-grid {
              display: none;
            }

            .depoimentos-grid-mobile {
              display: block;
              position: relative;
              width: 100%;
          }

          /* Carrossel mobile */
    .depoimentos-grid-mobile .depoimentos-cards {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 10px;
    }
    
    .depoimentos-grid-mobile .depoimentos-cards::-webkit-scrollbar {
        display: none;
    }
    
    /* Setas */
    .carousel-arrows {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 20px;
    }
    
    .carousel-arrows button {
        background-color: #CC930E;
        border: 1px solid #09010145;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: var(--white);
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }
    
    .carousel-arrows button:active {
        transform: scale(0.95);
    }
    
    .carousel-arrows button:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

   .visitas-grid {
    display: none;
   }
    
    /* Mostra accordion */
    .visitas-grid-mobile {
      display: block;
    }
    
    .visitas-accordion {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .accordion-item {
        background: #d6d1d117;
        border: 1px solid var(--verde);
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .accordion-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        cursor: pointer;
        user-select: none;
    }
    
    .accordion-title {
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 1;
        margin-bottom: 0;
    }
    
    .accordion-title h3 {
        margin: 0;
        font-size: 1.1rem;
    }
    
    .accordion-arrow {
        color: var(--verde);
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }
    
    .accordion-item.active .accordion-arrow {
        transform: rotate(180deg);
    }
    
    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0 20px;
    }
    
    .accordion-item.active .accordion-content {
        max-height: 500px;
        padding: 0 20px 20px 20px;
    }
    
    .accordion-content p {
        margin: 0;
        line-height: 1.6;
        color: var(--dark);
        text-align: left;
    }

    .visitas h2 {
      font-size: 1.5rem;
    }

    /*fim do que mudei*/
}

@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 1.5rem;
    }

    .texto-nutrologia {
                gap: 40px;
            }

            .descricao h2 {
                font-size: 2rem;
            }

            .img-mosaico img {
                max-width: 400px;
            }

            .servicos-content {
                gap: 40px;
            }

            .text-servicos h2 {
                font-size: 2rem;
            }

            .beneficios-grid {
              grid-template-columns: repeat(2, 1fr);
            }

            .beneficios h2 {
              font-size: 1.8rem;
            }

            .depoimentos-text h2 {
              font-size: 1.7rem;
            }

            

            
  }

  @media (max-width: 480px) {

    .hero {
    background-image: url('/img/bgmobm2.webp');
    min-height: 110vh;
    background-position: center center;
  }
            .hero-text h1 {
                font-size: 1.5rem;
            }

            .hero-infos span {
                font-size: 0.9rem;
                padding: 12px 16px;
            }

            .nutrologia {
                padding: 40px 20px;
            }

            .descricao h2 {
                font-size: 1.5rem;
            }

            .descricao p {
                font-size: 0.95rem;
            }

            .servicos {
                padding: 40px 20px;
            }

            .text-servicos h2 {
                font-size: 1.5rem;
            }

            .card-servicos h3 {
                font-size: 1.1rem;
            }

            .card-servicos p {
                font-size: 0.95rem;
            }

            .plano {
                padding: 50px 20px 30px;
                max-width: 350px;
            }

            .text-plano h2 {
                font-size: 1.3rem;
            }

            .final-text {
                font-size: 0.95rem;
            }

            .card p {
                font-size: 0.75rem;
            }

            .beneficios {
                padding: 40px 20px;
            }

            .beneficios > h2 {
                font-size: 1.5rem;
            }

            .beneficios-card img {
                height: 180px;
            }

            .beneficios-card svg {
                top: 160px;
                width: 55px;
                height: 55px;
            }

            .cta-content h2 {
                font-size: 1.4rem;
            }

            .cta-content p {
                font-size: 0.95rem;
            }
        }