@font-face {
  font-family: 'TituloMetodo';
  src: url('/fonts/Fashion-Fetish-Light.woff') format('woff');
}

@font-face {
  font-family: 'TextoPrincipal';
  src: url('/fonts/principal.woff') format('woff');
}

@font-face {
  font-family: 'TextosMenores';
  src: url('/fonts/AvenirLTStd-Light.woff') format('woff');
}


h1, h2 {
    font-family: 'TextoPrincipal', serif;
}

p, h3, a, label {
    font-family: 'TextosMenores', sans-serif;
}

h4 {
  font-family:'TituloMetodo', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
}


:root {
    --text-title: #AA8450;
    --text-light: #727272;
    --extra-light: #a1a1a1;
    --white: #FAFAFA;
    --destaque:#C7B395;
    --grey:#EDE7E2;
    --dark: #292E25;
    --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-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/** destaques palavras*/

/* Highlight sutil com animação suave */
.highlight {
    background: linear-gradient(120deg, rgba(231, 225, 198, 0.234));
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

/* Alternativa: highlight verde suave (tema saúde) */
.highlight2 {
    background: linear-gradient(120deg, rgba(237, 201, 155, 0.471));
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}


/* CONTEÚDO ALINHADO À ESQUERDA */
.header-content {
    max-width: 550px;
    text-align: left; /* garantindo alinhamento à esquerda */
    color: var(--white);
}

.header-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.3;
    
}

.header-content p {
    font-size: 20px;
    margin-bottom: 2rem;
    width: 400px;
}

.btn  {
    background: linear-gradient(
    90deg,
    #C39C69 0%,
    #AE844E 50%,
    #DEBA8A 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)
}

.logo-icon {
    font-size: 14px;
}

h4 img {
  width:30px;
}

.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(--grey);
    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: 600px;
  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;
    text-align: left;
    background-color: var(--text-title);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 300px;
    margin-bottom: 20px;
}


.icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon svg {
    display: block;
}


.beneficios-card p {
  margin-left: 10px;
    font-size: 14px;
    color: #E9E7E6;
    line-height: 1.5;
    width: 200px!important;
    align-items: center;
}

.text-beneficios {
  color: var(--text-title);
  font-size: 20px;
  
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.pilares-container .section-header {
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  align-content: center;
  text-align: center;
}

h3 {
  font-size: 18px;
  color: var(--extra-light);
  letter-spacing: 1px;
  font-weight: 500;
}

.pilares-container h2 {
  font-size: 32px;
  margin: 10px;
  color: var(--text-title);
}

.pilares-container .section-header p {
  font-size: 18px;
  width: 900px;
  color: var(--dark);
}

.pilar-grid {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  text-align: left;
}

.pilar-card {
  background-color: var(--grey);
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pilar {
  font-family:'TextosMenores', sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  background-color: var(--text-title);
  max-width: 100px;
  padding: 10px 0 10px 25px   ;
  border-radius: 40px;
  color: var(--grey);
}

.title-pilar {
  font-weight: bold;
  font-family:'TextoPrincipal', sans-serif;
  font-size: 1.3rem;
  color:var(--text-title);
}

.content-pilar {
  font-size: 16px;
  line-height: 1.4;
  color: var(--dark);
}

.pilar-grid .btn- {
  grid-column: 1 / -1; /* faz o botão ocupar toda a largura da grid */
  justify-self: center;
  align-items: center;
}

.metodo-container {
  margin: 4rem auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.metodo-container .section-header {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  align-items: start;
}

.metodo-container h2 {
  font-size: 32px;
  margin-top: 10px;
  color: var(--text-title);
  font-weight: bold;
  width: 300px;
  margin-bottom: 20px;
}

.metodo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.metodo-card, .metodo-card-destaque {
  background-color: var(--text-title);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  
}

.metodo-card .card-title,
.metodo-card-destaque .card-title {
  font-family: 'TextoPrincipal', sans-serif;
  font-size:24px;
  color: var(--white);
  font-weight: bold;
}

.metodo-card .content-metodo,
.metodo-card-destaque .content-metodo {
  font-size: 1rem;
  color: var(--white);
  line-height: 1.6;
}

.metodo-card-destaque {
  grid-column: span 2; /* ocupa as duas colunas */
  background-color: var(--text-title);
}

.title-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.title {
  font-family: 'TextoPrincipal', sans-serif;
  font-size:24px;
  color: var(--white);
  font-weight: bold;
}

.metodo-card-destaque .content-metodo {
  font-family: 'TextosMenores', sans-serif;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.6;
  gap: 5px;
}
        
      
.depoimentos-container .section-header {
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  align-content: center;
  text-align: center;
}

.depoimentos-container h2 {
  font-size: 32px;
  font-weight: bold;
  margin: 10px;
  color: var(--text-title);
  width: 500px;
}

.img-depoimentos {
  column-count: 3;
  column-gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.img-depoimentos img {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 10px;
  display: block;
  border: .5px solid #ede1e1;
}

.carrossel-container {
            position: relative;
            max-width: 320px;
            margin: 2rem auto;
            overflow: hidden;
            min-height: 400px; /* Altura mínima para evitar saltos */
        }

        .depoimentos-carousel {
            display: flex;
            transition: transform 0.3s ease-in-out;
            margin-bottom: 50px; /* Espaço reservado para as setas */
        }

        .depoimento {
            min-width: 100%;
            display: none;
            justify-content: center;
            align-items: center;
        }

        .depoimento.ativo {
            display: flex;
        }

        .depoimento img {
            width: 100%;
            max-height: 400px; /* Altura máxima para as imagens */
            object-fit: contain; /* Mantém proporção sem cortar */
            border-radius: 12px;
        }

        /* Container fixo para as setas */
        .setas-container {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
            padding: 10px 0;
        }

        /* Setas fixas */
        .btn-seta {
            background-color: var(--text-title);
            border: none;
            color: var(--white);
            font-size: 1rem;
            padding: 0.6rem 1rem;
            cursor: pointer;
            border-radius: 6px;
            z-index: 2;
            margin: 0;
            transition: all 0.3s ease;
        }

        .btn-seta:hover {
            background-color: rgba(174, 132, 78, 1);
            transform: scale(1.05);
        }

.carrossel-container, .btn-seta {
  display: none;
}

.sobre-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1200px;
  gap: 3rem;
}

.sobre-content img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
}

.sobre-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 600px;
}

.sobre-text h3 {
  font-size: 1rem;
  color: var(--extra-light);
  margin-bottom: 0.2rem;
  margin-top: 30px;
}

.sobre-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--dark);
}


.sobre-text h2 {
  font-size: 32px;
  font-weight: bold;
  color: var(--text-title);
  width: 400px;
}

.consultorio-container .section-header {
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  align-content: center;
  text-align: center;
}

.consultorio-container{
  max-width: 1200px;
}

.consultorio-container h2 {
  font-size: 32px;
  font-weight: bold;
  margin: 10px;
  color: var(--text-title);
  width: 400px;
}

.consultorio-container .section-header p {
  font-size: 20px;
  width: 600px;
  color: var(--dark);
  margin-bottom: 30px;
}

.img-consultorio {
  display: flex;
  gap: 1rem;  
  max-width: 900px;
  margin: 0 auto;
  justify-content: center;
  margin-bottom: 20px;
}

/* Coluna de imagens */
.img-consultorio img {
  width: 100%;
  max-width: 260px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Coluna do mapa + infos */
.infos-wrapper {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mapa {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.infos-consultorio {
  background-color: var(--text-title);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  width: 520px;
  letter-spacing: .5px;
  align-items: center;
}

.info {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.info-endereco {
  margin-bottom: 1.5rem;
}

iframe {
  width: 520px;
}

.consultorio-container .btn- {
  grid-column: 1 / -1; /* faz o botão ocupar toda a largura da grid */
  justify-self: center;
  align-items: center;
  padding-bottom: 50px;
}


footer {
  background-color: #AE844E;
  color: var(--white);
  padding: 2rem 1.5rem;
  font-family: 'TextoPrincipal', sans-serif;
  font-size: 0.95rem;
  margin-top: 60px;
}

.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-textos a, .footer-rede a  {
  color: var(--white);
  text-decoration: none;
}


.footer-rede p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--white);
}

.footer-rede a svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
  transition: transform 0.3s ease;
}

.footer-rede a:hover svg {
  transform: scale(1.1);
}


/* formulario*/

.container-form {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            padding: 60px 40px;
            border: 1px solid var(--text-title);
        }

        .headerform img, .success-page img{
          width: 25px;
        }

        .headerform span, .success-page span {
          font-size: 14px;
          text-transform: uppercase;
          font-family:'TituloMetodo', sans-serif;
          color: var(--text-title);
        }

.headerform h2 {
            font-size: 32px;
            font-weight: 600;
            color: var(--text-title);
            margin-top: 15px;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }

        .headerform .description {
            font-size: 18px;
            color: var(--text-title);
            margin: 0 auto;
            margin-bottom: 20px;
            line-height: 1.4;
        }

        .line {
        margin-bottom: 40px;
        background: var(--text-title);
        height: 1px;
}

        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            margin-bottom: 32px;
        }

        .form-field {
            display: grid;
            gap: 10px;
        }

        .form-field.full-width {
            grid-column: 1 / -1;
        }

        label {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-title);
        }

        label .required {
            color: #e53e3e;
        }

        input[type="text"],
        input[type="tel"],
        textarea {
            width: 100%;
            padding: 14px 16px;
            border: 1.5px solid var(--text-title);
            border-radius: 8px;
            font-size: 15px;
            transition: all 0.2s;
            background: #F4F2EE;
        }

        textarea {
            min-height: 120px;
            resize: vertical;
        }

        input[type="text"]:focus,
        input[type="tel"]:focus,
        textarea:focus {
            outline: none;
            border-color: #4299e1;
            box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
        }

        input::placeholder,
        textarea::placeholder {
            color: #a0aec0;
            font-family: 'TextosMenores', sans-serif;
        }

        .radio-group {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .radio-option {
            display: flex;
            align-items: flex-start;
            padding: 16px;
            border: 1.5px solid var(--text-title);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .radio-option:hover {
            border-color: #cbd5e0;
            background: #f7fafc;
        }

        .radio-option input[type="radio"] {
            margin-top: 2px;
            margin-right: 12px;
            cursor: pointer;
            accent-color: #4299e1;
        }

        .radio-option label {
            cursor: pointer;
            font-weight: 400;
            color: #4a5568;
            font-size: 14px;
        }

        .radio-option label:hover {
          font-weight: 600;
        }

        .radio-option input[type="radio"]:checked + label {
            color: #2d3748;
            font-weight: 600;
        }

        .submit-btn {
            max-width: 300px;
            border: var(--white);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            margin: 0 auto;
        }

        .submit-btn:active:not(:disabled) {
            transform: translateY(0);
        }

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .helper-text {
            font-size: 12px;
            color: #292E25;
            margin-top: -4px;
        }

        /* Success Page Styles */
        .success-page {
            display: none;
            text-align: center;
            animation: fadeIn 0.5s ease-in;
            min-height: 100vh;
            padding: 40px 20px;
            border: 1px solid var(--text-title);
            border-radius: 20px;
            max-width: 900px;
            margin: 0 auto;
        }

        .success-page.active {
            display: block;
        }

        .form-page.hidden {
            display: none;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .success-icon {
            width: 80px;
            height: 80px;
            background: #10b981;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            animation: scaleIn 0.5s ease-out;
        }

        @keyframes scaleIn {
            from {
                transform: scale(0);
            }
            to {
                transform: scale(1);
            }
        }

        .success-icon svg {
            width: 45px;
            height: 45px;
            stroke: white;
            stroke-width: 3;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
        }

        .success-title {
            font-size: 28px;
            font-weight: 600;
            color: var(--text-title);
            margin-bottom: 16px;
        }

        .success-message {
            font-size: 18px;
            color: var(--text-title);
            max-width: 500px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }

        .message-final {
          font-size: 18px;
            color: var(--text-title);
            max-width: 200px;
            margin: 0 auto;
            line-height: 1.4;
            margin-top: 20px;
        }

        strong {
          font-family: 'TextosMenores', sans-serif;
          color: var(--text-title);
          font-size: 18px;
        }

        .aviso {
          font-size: 14px;
          line-height: 1.4;
          margin-bottom: 25px;
          margin-top: -10px;
          color: var(--text-title);
        }

        @media (max-width: 768px) {
            .form-grid {
                grid-template-columns: 1fr;
            }

            .radio-group {
                grid-template-columns: 1fr;
            }

            .container-form {
                padding: 40px 24px;
                margin-top: 0;
            }

            .header h1, .success-title {
                font-size: 26px;
            }

            .header .subtitle {
                font-size: 16px;
            }

            .success-icon {
                width: 70px;
                height: 70px;
            }

            .success-icon svg {
                width: 40px;
                height: 40px;
            }
          }
