@font-face {
  font-family: 'TextoPrincipal';
  src: url('/fonts/primaria.woff') format('woff');
}

@font-face {
  font-family: 'TextosMenores';
  src: url('/fonts/Poppins-Regular.woff') format('woff');
}

@font-face {
  font-family: 'poppinsbold';
  src: url('/fonts/Poppins-Bold.woff') format('woff');
}


h1, h2 {
    font-family: 'TextoPrincipal', serif;
}

p, h3, a {
    font-family: 'TextosMenores', sans-serif;
}

h4 {
  font-family:'TituloMetodo', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
}

:root {
    --text-title: #663C64;
    --text-light: #E9E7E6;
    --second-color:#F4E4E6;
    --terciary-color:#EFD2CE;
    --extra-light: #a1a1a1;
    --white: #FAFAFA;
    --grey:#EDE7E2;
    --dark: #1F1F1F;
    --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);
}

ul {
    list-style: none;
}

header {
    position: relative;
}

.header {
    min-height: 50vh; /* cobre a tela toda, mas pode crescer se necessário */
    height: auto;
    padding: 4rem 1.5rem; /* garante respiro no mobile */
    background-image: url('/Img/bg-hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.header-content h4 img {
  width: 180px;
}


.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* CONTEÚDO ALINHADO À ESQUERDA */
.header-content {
    max-width: 490px;
    text-align: left; /* garantindo alinhamento à esquerda */
    color: var(--text-title);
}

.header-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.header-content p {
    font-size: 20px;
    margin-bottom: 2rem;
    width: 450px;
}

.btn  {
    background: linear-gradient(
    90deg,
    #663C64 0%,
    #815E9C 50%,
    #663C64 100%
  );
  color: var(--white);
  padding: 0.75rem 1.8rem;
  border-radius: 10px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: filter 0.3s ease;
  filter: brightness(1.1)
}

.btn-arrow {
  width: 27px;
  height: 27px;
  transition: transform 0.3s ease;
  transform: rotate(320deg)
}

.section-container {
    max-width: var(--max-width);
    margin: auto;
    padding: 2rem 1rem;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    font-size: 2rem;
    font-weight: 400;
    font-family: var(--header-fount);
    color: var(--text-dark);
}

.section-description {
    color:  var(--text-light);
    line-height: 1.5rem;
    text-align: center;
}

a {
    text-decoration: none;
    transition: .3s;
}

.beneficios-container {
    text-align: center;
    background-color: var(--second-color);
    padding: 50px ;
    position: relative;
    border-radius: 50px;
    margin-top: -30px; /* sobrepõe a hero section */
    z-index: 3;
}

.beneficios-container h2 {
  font-size: 32px;
  width: 800px;
  margin-bottom: 5px;
  color: var(--text-title);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
     padding: 0 40px;
}

.beneficios-card {
    border-radius: 10px;
    padding: 20px;
    background-color: var(--text-title);
    gap: 12px;
    width: 300px;
    align-items: center;
    display: flex;
    justify-content: center;
    height: 120px;
}

.beneficios-card p {
    font-size: 16px;
    color: var(--white);
    line-height: 1.5;
    
}

.service-container .section-header {
  padding-top: 60px;
  margin-bottom: 70px;
  display: flex;
  flex-direction: column;
  align-content: center;
  text-align: center;
}

h3 {
  font-size: 14px;
  color: var(--dark);
  letter-spacing: 1px;
  font-weight: 300;
}

.service-container h2 {
  font-size: 32px;
  margin: 10px;
  color: var(--text-title);
}

.service-container .section-header p {
  font-size: 20px;
  width: 700px;
  color: var(--dark);
  font-weight: 200;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}

.servico-card {
  background-color: var(--terciary-color); /* cor rosada suave, substitua se tiver outra var */
  border-radius: 12px;
  overflow: hidden;
  padding: 0 0 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  height: 100%;
}

.servico-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.servico-card h3 {
  font-size: 18px;
  margin: 16px 12px 18px;
  color: var(--text-title);
  font-weight: 600;
  min-height: 48px
}

.servico-card p {
  font-size: 14px;
  padding: 0 12px;
  color: var(--text-body);
}

.servico-card a {
  font-size: 13px;
  color: #5d4da1;
  text-decoration: underline;
  margin-top: 10px;
  padding: 0 12px;
}

.hidden{
  display: none;
}

.alinhadores-mob, .alinhadores {
  background-color: var(--text-title);
  color: var(--terciary-color)
}

.alinhadores-mob h3, .alinhadores h3 {
  color: var(--terciary-color);
}

.alinhadores-mob a, .alinhadores a {
  color: var(--white);
  
}

/* Responsivo: volta ao normal em telas pequenas */
@media (max-width: 768px) {
  .alinhadores {
    grid-column: span 1;
  }
}

 .btn- {
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 40px;
  
}

.diferenciais-container .section-header {
  padding-top: 60px;
  margin-bottom: 70px;
  display: flex;
  flex-direction: column;
  align-content: center;
  text-align: center;
}

.diferenciais-container h2 {
  font-size: 32px;
  color: var(--text-title);
  width: 300px;
}

.diferenciais-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 550px;
  margin: 0 auto;
}

.diferenciais-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--terciary-color); /* cor de fundo rosinha */
  padding: 16px 20px;
  border-radius: 12px;
  justify-content: start;
}

.diferenciais-card img {
  width: 30px;
  height: 30px;
}

.diferenciais-card p {
  font-size: 16px;
  color: var(--dark);
  margin: 0;
  font-weight: 200;
  text-align: left;
}

.procedimentos-container .section-header {
  padding-top: 60px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-content: center;
  text-align: center;
}

.procedimentos-container h2 {
  font-size: 32px;
  color: var(--text-title);
  width: 500px;
}

.procedimentos {
  align-items: center;
  text-align: center;
}

.procedimentos img {
  width: 500px;
}

.atendimento-container {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 3rem;
  align-items: start;
}

.atendimento-container .section-header {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  align-items: start;
}

.atendimento-container h2 {
  font-size: 32px;
  margin-top: 10px;
  color: var(--text-title);
  font-weight: bold;
  width: 300px;
}

.atendimento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  max-width: 1000px;
  align-items: stretch;
}

.atendimento-card {
  background-color: var(--terciary-color);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: flex-start; /* Alinha texto no topo */
  height: 100%;
}

.atendimento-card .card-number{
  font-family: 'TextoPrincipal', sans-serif;
  font-weight: bold;
  font-size: 24px;
  background-color: var(--text-title);
  width: 45px;
  padding: 10px 14px 10px 10px ;
  border-radius: 8px;
  color: var(--white);
}

.atendimento-card .card-title {
  font-family: 'TextoPrincipal', sans-serif;
  font-size:20px;
  color: var(--text-title);
  font-weight: bold;
  min-height: 64px;
}

.atendimento-card .content-atendimento{
  font-family: 'TextosMenores', sans-serif;
  font-size: 1rem;
  color: var(--text-title);
  line-height: 1.6;
}      

.sobre-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
}

.sobre-content img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
}

.sobre-text {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  width: 600px;
}

.sobre-container {
  background-color: var(--terciary-color); /* exemplo */
  width: 100%;
}

.sobre-container.section-container {
  max-width: 100%; /* ocupar toda a tela */
  margin: 60px 0; /* padding vertical apenas */
  padding-bottom: 0;
  
}

.sobre-text h3 {
  font-size: 14px;
  color: var(--dark);
}

.sobre-text p {
  font-size: 14px;
  line-height: 1.6;
}

.sobre-text h2 {
  font-size: 32px;
  font-weight: bold;
  color: var(--text-title);
  width: 500px;
}

.consultorio-container {
  padding: 60px 20px;
  background-color: var(--white);
  width: 100%;
}

.consultorio-texto h2 {
  font-size: 24px;
  color: var(--text-title);
  margin-bottom: 10px;
  width: 200px;
}
.consultorio-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center; /* <- alinha verticalmente no centro */
  max-width: 1200px;
  margin: 0 auto;
}

.consultorio-texto {
  flex: 1 1 400px;
  max-width: 500px;
}

.consultorio-texto h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.consultorio-texto p {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--dark);
  width: 300px;
}

.mapa {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  border: none;
  margin-top: 10px;
}

/* Carrossel */
.consultorio-carousel {
  flex: 1 1 400px;
  position: relative;
  max-width: 350px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-track img {
  min-width: 100%;
  border-radius: 12px;
  height: auto;
  object-fit: cover;
}

.carousel-dots {
  text-align: center;
  margin-top: 10px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--grey);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.dot.active {
  background-color: var(--text-title);
}

.faq-container {
  padding: 60px 20px;
}

.faq-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

.faq-texto {
  flex: 1 1 350px;
}

.faq-texto h2 {
  color: var(--text-title);
  font-size: 24px;
  margin-bottom: 16px;
}

.faq-texto p {
  font-size: 16px;
  color: var(--dark);
  line-height: 1.6;
}

.faq-accordion {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: var(--terciary-color);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.faq-item.active {
  background-color: var(--terciary-color);
  border-color: #e5b6b6;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: bold;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.faq-icon {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--second-color);
  padding: 0 16px;
  color: var(--dark);
}

.faq-item.active .faq-answer {
  padding: 12px 16px 16px;
  max-height: 300px; /* ajuste conforme necessário */
}

.faq-text {
  flex: 1;
  text-align: left;
  font-family: 'TextosMenores', sans-serif;
}

i {
  font-size: 30px;
  transition: transform 0.3s ease;
}

.faq-item.active i {
  transform: rotate(180deg);
}

.ofert-container {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.ofert-container .section-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: start;
}

.ofert-container {
  padding-bottom: 0!important;
}

.ofert-container h2 {
  font-size: 32px;
  margin-top: 10px;
  color: var(--text-title);
  font-weight: bold;
  width: 500px;
}

.ofert-container p {
  font-size: 16px;
  color: var(--dark);
  width: 400px;
  
}

.ofert-img img{
  margin-top: 30px;
  width: 500px;
}

footer {
  background-color: var(--second-color);
  color: var(--text-title);
  padding: 2rem 1.5rem;
  font-family: 'TextoPrincipal', sans-serif;
  font-size: 0.95rem;
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo img {
  width: 180px;
  height: auto;
}

.footer-textos {
  text-align: center;
  flex: 1;
  line-height: 1.5;
}

.footer-rede a  {
  color: var(--text-title);
  text-decoration:none;
}

.footer-textos a {
  color: var(--text-title);
  text-decoration:underline;
}

.footer-rede p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-title);
}

.footer-rede a svg {
  width: 18px;
  height: 18px;
  fill: var(--text-title);
  transition: transform 0.3s ease;
}

.footer-rede a:hover svg {
  transform: scale(1.1);
}


  