* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
}

.menu {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 50px;
  padding: 12px 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 40px;
  font-weight: 600;
}

.menu img {
  height: 36px;
}

.menu a {
  text-decoration: none;
  color: #222;
  transition: 0.3s;
}
.menu a:hover {
  color: #0e8c42;
}


.hero {
  min-height: 100vh;
  background: url("../images/hero-bg.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  padding: 120px 8% 60px;
}

.hero-content {
  max-width: 700px;
  color: #111;
}

.hero h4 {
  color: #00B066;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 1rem;
}


.hero h1 {
  font-size: 2.4em;
  font-weight: 300;
  line-height: 1.3;
  color: #00A2E4;
  margin-bottom: 16px;
}

.hero .highlight {
  color: #00B066;
}


.hero p {
  font-size: 1em;
  font-weight: 400;
  color: #4d4d4d;
  line-height: 1.6;
  max-width: 90%;
}


.btn-demo {
  background: #00a2e4;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
  border: none;
}
.btn-demo:hover {
  background: #007bb6;
}


@media (max-width: 900px) {
  .hero {
    padding: 100px 5% 40px;
    text-align: center;
    justify-content: center;
  }
  .menu {
    flex-direction: column;
    padding: 10px 20px;
  }
}

.section-agenda {
  background: #f8f8f8;
  padding: 80px 5% 60px;
  text-align: center;
}

.section-agenda .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-agenda h2 {
  color: #00B066;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.section-agenda p {
  color: #4a4a4a;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.card {
  background: #00B066;
  color: white;
  border-radius: 12px;
  padding: 20px;
  width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
  font-size: 0.95rem;
  line-height: 1.4;
}

.card img {
  height: 100px;
  margin-bottom: 10px;
}

.img-bottom img {
  width: 100%;
  max-width: 300px;
  margin: 40px auto 20px;
  display: block;
}

.cta-agenda h3 {
  color: #00B066;
  font-size: 1.8rem;
  font-weight: 600;
}

.cta-agenda h3 span {
  font-weight: 400;
  display: block;
}

.cta-agenda p {
  font-family: 'Inter', sans-serif;
  color: #00B066;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 0;
}

.cta-agenda p strong {
  font-weight: 700;
}

/* MOBILE MENU */
.menu-mobile {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.menu-mobile button {
  font-size: 1.8rem;
  background: white;
  border: none;
  padding: 10px 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  cursor: pointer;
}

.menu-mobile .mobile-dropdown {
  display: none;
  flex-direction: column;
  align-items: center;
  background: white;
  border-radius: 30px;
  padding: 25px;
  margin-top: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.menu-mobile .mobile-dropdown a {
  margin: 10px 0;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  font-size: 1.1rem;
}

.menu-mobile .mobile-dropdown img {
  height: 36px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .menu {
    display: none;
  }

  .menu-mobile {
    display: block;
  }
}

.section-agenda .card {
  transition: transform 0.3s ease;
  
}

.section-agenda .card.zoom-effect {
  transform: scale(1.05);
  cursor: pointer;
}

.cta-agenda-final {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.cta-agenda-final .cta-text p {
  font-family: 'Inter', sans-serif;
  font-size: 2.6rem;
  color: #00B066;
  line-height: 1.4;
  text-align: left;
  margin: 0;
  max-width: 415px;
}

.cta-agenda-final .cta-text strong {
  font-weight: 600;
}

.cta-agenda-final .cta-img img {
  max-width: 400px;
  height: auto;
}

.section-benefits {
  background: #ffffff;
  padding: 80px 5%;
  font-family: 'Inter', sans-serif;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.benefits-left img {
  max-width: 400px;
  width: 100%;
}

.benefits-right h2 {
  font-size: 1.8rem;
  color: #1d1d1d;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 30px;
}

.benefits-right h2 strong {
  color: #00B066;
  font-weight: 500;
}

.benefits-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-right li {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

.benefits-right li strong {
  color: #00B066;
  font-weight: 600;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #00B066;
   
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
  color: #00B066;
}

.benefits-list img {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  margin-top: 3px;
}

.benefits-list div {
  font-size: 1rem;
  color: #00B066;
  line-height: 1.5;
}

.benefits-list strong {
  color: #00B066;
  font-weight: 600;
}

.section-auto-response {
  background-color: #f8f8f8;
  padding: 80px 5% 60px;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.container-auto-response {
  max-width: 900px;
  margin: 0 auto;
}

.section-auto-response h2 {
  color: #00B066;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.section-auto-response p {
  color: #1d1d1d;
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.section-auto-response img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.section-numeros-bg {
  background-image: url('images/bg-clinic.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 5%;
  font-family: 'Inter', sans-serif;
  color: #1d1d1d;
}

.numeros-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

 

.section-numeros-bg h2 {
  color: #0a7f3e;
  font-size: 2.4rem;
  margin-bottom: 10px;
  font-weight: 500;
}

.badge {
  background: #00B066;
  color: #fff;
  font-size: 1.2rem;
  padding: 6px 14px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 30px;
}

blockquote {
  font-size: 1.1rem;
  font-style: italic;
  margin: 0 0 30px;
}

blockquote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 600;
}

.numeros-cards {
  display: flex;
  gap: 30px;
  justify-content: left;
  flex-wrap: wrap;
}

.section-numeros-bg .card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 15px;
  min-width: 240px;
  max-width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
  color: #1d1d1d;
}

 

.section-numeros-bg .card h3 {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-numeros-bg .card.antes h3 {
  color: red;
}

.section-numeros-bg .card.depois h3 {
  color: #00B066;
}

.section-numeros-bg .card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section-numeros-bg .card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  margin-bottom: 12px;
  justify-content: flex-start;
}

.section-numeros-bg .card li img {
  width: 24px;
  height: 24px;
}

.section-numeros-wrapper {
  position: relative;
}

.profissional-img {
  position: absolute;
  bottom: -3em;
  right: 4em;
  max-height: 95%;
  z-index: 2;
}

.section-numeros-bg {
  position: relative;
  z-index: 1;
}

.section-conversao {
  height: 45em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 5%;
  background-image: url('images/bg-transform.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: 'Inter', sans-serif;
  flex-wrap: wrap;
}

.conversao-content {
  max-width: 600px;
  margin-left: 4em;
}

.conversao-content h2 {
  font-size: 2.5rem;
  font-weight: 500;
  color: #00723F;
  margin-bottom: 20px;
}

.conversao-content p {
  
  font-size: 1.2rem;
  color: #0c6634;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-cta {
  background-color: #00A859;
  color: white;
  font-weight: 500;
  padding: 15px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.1rem;
  display: inline-block;
  box-shadow: 0px 4px 10px rgba(0, 168, 89, 0.25);
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background-color: #008F4F;
}

.conversao-img img {
  position: absolute;
  bottom: -3.6em;
  right: 4em;
  max-height: 95%;
  z-index: 2;
}

.section-planos {
  background: #f8f8f8;
  padding: 80px 5%;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.planos-titulo h2 {
  font-size: 2rem;
  color: #00723F;
  margin-bottom: 10px;
  font-weight: 500;
  
}

.planos-titulo p {
  color: #444;
  font-size: 1rem;
  margin-bottom: 40px;
}

.planos-tabela {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.plano {
  background: white;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  padding: 30px;
  width: 280px;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.plano:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.plano h3 {
  font-size: 1.4rem;
  color: #00723F;
  margin-top: 13px;
}

.plano .preco {
  font-size: 1.6rem;
  font-weight: 500;
  margin: 20px 0;
  color: #00A859;
}

.plano ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  color: #333;

  text-align: left;
  margin-top: 20px;
}

.plano li {
  margin: 8px -1px;
}

.btn-contratar {
  background: #067f46;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  
  margin-top: 20px;
  text-align: center;
}
.btn-contratar:hover{
  background:  #00A859;
}

.plano.selected {
  border: 2px solid #00A859 !important;
}

.plano.destaque {
  border: 2px solid #00A859;
  transform: scale(1.05);
  z-index: 2;
}

.planos-tabela {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.plano .selo {
  background: #00A859;
  color: white;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 6px;
  position: absolute;
  top: 15px;
  right: 15px;
  font-weight: 500;
}

.destaque-btn {
  background: #00723F;
}

 

@media (max-width: 768px) {
  .section-conversao {
    flex-direction: column;
    text-align: center;
  }

  .conversao-content {
    
    max-width: 100%;
  }

  .conversao-img {
    margin-top: 30px;
  }
}

.faq-section {
  background: #f8f8f8;
  padding: 80px 5%;
  font-family: 'Inter', sans-serif;
}

.faq-section h2 {
  font-size: 2rem;
  color: #00723F;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 500;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  background: white;
  color: #1d1d1d;
  font-weight: 500;
  font-size: 1rem;
  padding: 18px 20px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.2rem;
  color: #00B066;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  padding: 0 20px;
  font-size: 0.95rem;
  color: #4d4d4d;
  transition: max-height 0.0s ease, padding 0.4s ease;
}

.faq-question.active + .faq-answer {
  max-height: 500px;
  padding: 16px 20px;
}

.section-beneficios-clinica {
  background-color: #f5fff9;
  padding: 80px 5%;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.section-beneficios-clinica h2 {
  color: #0a7f3e;
  font-size: 2.2rem;
  margin-bottom: 40px;
  font-weight: 500;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 40px 0;
}

.beneficio-item {
  perspective: 1000px;
}

.card-flip {
  width: 100%;
  height: 100%;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 250px;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

.beneficio-item:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
  text-align: center;
}

.card-front img {
  height: 60px;
  width: 60px;
  margin-bottom: 20px;
}

.card-front p {
  color: #00a859;
  font-weight: 600;
  font-size: 1.05rem;
}

.card-back {
  transform: rotateY(180deg);
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
}

.card-back p {
  color: #00a859;
  font-size: 0.95rem;
  line-height: 1.5;
}

html {
  scroll-behavior: smooth;
}


.section-fluxo-whatsapp {
  padding: 80px 5%;
  background-color: #f6fff9;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.section-fluxo-whatsapp h2 {
  font-size: 2rem;
  color: #00723F;
  margin-bottom: 40px;
  font-weight: 500;
}

.fluxo-etapas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.etapa {
  max-width: 300px;
  text-align: center;
  //background: #fff;
  //border-radius: 16px;
  //box-shadow: 0 4px 20px rgba(0, 168, 89, 0.1);
  padding: 20px;
  transition: transform 0.3s;
}

.etapa:hover {
  transform: translateY(-5px);
}

.etapa img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 168, 89, 0.05);
  margin-bottom: 12px;
}

.etapa-legenda {
  font-size: 1rem;
  color: #00723F;
  font-weight: 600;
}

.section-passo-ustype {
  padding: 80px 5%;
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.passo-ustype-container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-passo-ustype h2 {
  font-size: 2rem;
  color: #00723F;
  margin-bottom: 50px;
  font-weight: 500;
}

.passo-ustype-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.passo-ustype-item {
  background: #f8f8f8;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.passo-ustype-item:hover {
  transform: translateY(-5px);
}

.passo-ustype-numero {
  display: inline-block;
  background: #00A859;
  color: white;
  font-weight: bold;
  font-size: 1.3rem;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.passo-ustype-item h3 {
  font-size: 1.2rem;
  color: #00723F;
  margin-bottom: 10px;
}

.passo-ustype-item p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

.passo-ustype-garantia {
  margin-top: 50px;
  background: #e9fef2;
  border-left: 6px solid #00A859;
  padding: 20px;
  border-radius: 10px;
  font-size: 1rem;
  color: #00723F;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.passo-ustype-garantia strong {
  color: #00723F;
}

@media (max-width: 768px) {
  .section-conversao {
    height: auto;
    flex-direction: column;
    justify-content: center;
    padding: 80px 5% 40px;
    text-align: center;
    position: relative;
  }

  .conversao-img {
    position: static;
    margin-top: 30px;
    text-align: center;
  }

  .conversao-img img {
    position: relative;
    max-width: 100%;
    height: auto;
    bottom: -6em;
    right: auto;
  }

  .conversao-content {
    margin: 0 auto;
    max-width: 100%;
  }
}


@media (max-width: 768px) {
  .section-numeros-wrapper {
    padding-top: 40px;
  }

  .section-numeros-bg {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .profissional-img {
    position: static;
    display: block;
    margin: 30px auto 0;
    max-width: 250px;
    height: auto;
    margin-bottom: -2em;
  }

  .numeros-content {
    text-align: center;
  }

  .numeros-cards {
    justify-content: center;
  }

  .section-numeros-bg .card {
    margin: 0 auto;
  }
}

.whatsapp-float {
 position: fixed;
    bottom: 80px;
    right: 80px;
    background-color: #25d366;
    border-radius: 50%;
    width: 80px;
    height: 87px;
    padding: 8px;
    display: flex
;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: transform 0.3s;
}

.whatsapp-float img {
    width: 140px;
    height: 89px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}


