/* ================================================================
   VARIÁVEIS GLOBAIS
================================================================ */

:root {
  --green: #0f5b49;
  --green-dark: #0a493b;
  --sage: #8fa58a;
  --sage-light: #c2d4be;
  --paper: #f7f7f7;
  --white: #ffffff;
  --heading: "Alta", "Poiret One", sans-serif;
  --body: "Montserrat", Arial, sans-serif;
  --page: 1480px;
  --gutter: clamp(1rem, 5vw, 5.5rem);
}

/* ================================================================
   RESET E PROTEÇÕES CONTRA ESTOURO
================================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--green);
  background: var(--paper);
  font-family: var(--body);
  font-weight: 300;
  overflow-x: hidden;
}

body.menu-open {
  position: fixed;
  inset-inline: 0;
  width: 100%;
  overflow: hidden;
}

img,
svg,
video,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--heading);
  font-weight: 400;
  text-transform: uppercase;
}

strong {
  font-weight: 700;
}

.page-container,
.narrow-container,
.header-container,
.intro__grid,
.myths__grid,
.about__grid,
.attendance__grid,
.trust__grid,
.services__grid,
.footer__grid {
  min-width: 0;
}

.page-container > *,
.narrow-container > *,
.header-container > *,
.intro__grid > *,
.myths__grid > *,
.about__grid > *,
.attendance__grid > *,
.trust__grid > *,
.services__grid > *,
.footer__grid > * {
  min-width: 0;
}

h1,
h2,
h3,
p,
li,
a {
  max-width: 100%;
}

p,
li {
  overflow-wrap: break-word;
}

.page-container {
  width: min(calc(100% - (2 * var(--gutter))), var(--page));
  margin-inline: auto;
}

.narrow-container {
  width: min(calc(100% - (2 * var(--gutter))), 1220px);
  margin-inline: auto;
}

.section-white {
  background: var(--paper);
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--green);
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: none;
}

/* ================================================================
   ANIMAÇÕES
================================================================ */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ================================================================
   CABEÇALHO
================================================================ */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  width: 100%;
  color: var(--white);
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - (2 * clamp(1.25rem, 5vw, 5.5rem))), 1540px);
  min-height: 96px;
  margin-inline: auto;
  gap: 1.5rem;
}

.brand {
  position: relative;
  z-index: 1004;
  width: 245px;
  height: 76px;
  flex: 0 0 245px;
}

.brand-logo {
  position: absolute;
  top: 50%;
  left: 0;
  width: 245px;
  height: auto;
  transform: translateY(-50%);
  transition: opacity 0.2s ease;
}

.brand-logo--dark {
  opacity: 0;
}

.site-header.is-scrolled,
.site-header.menu-active {
  color: var(--green);
  background: rgb(247 247 247 / 96%);
  box-shadow: 0 8px 25px rgb(20 69 57 / 10%);
}

.site-header.is-scrolled .brand-logo--light,
.site-header.menu-active .brand-logo--light {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo--dark,
.site-header.menu-active .brand-logo--dark {
  opacity: 1;
}

.header-cta,
.outline-button,
.mobile-nav-cta,
.final-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  border-radius: 12px;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
  cursor: pointer;
  transition:
    color 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.header-cta {
  padding: 0.8rem 1.45rem;
  color: var(--white);
  background: transparent;
  border: 1px solid currentColor;
  font-size: clamp(0.72rem, 1vw, 1.05rem);
  font-weight: 300;
}

.header-cta:hover {
  color: var(--green);
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.site-header.is-scrolled .header-cta {
  color: var(--green);
  border-color: var(--green);
}

.site-header.is-scrolled .header-cta:hover {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.menu-toggle {
  position: relative;
  z-index: 1004;
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-nav {
  display: none;
}

/* ================================================================
   TELA 1
================================================================ */

.hero {
  position: relative;
  display: grid;
  height: clamp(640px, 56.25vw, 920px);
  min-height: 640px;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__image {
  z-index: -2;
  background-image: url("images/hero.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 25%;
}

.hero__overlay {
  z-index: -1;
  background: rgb(17 22 21 / 54%);
}

.hero__content {
  align-self: end;
  justify-self: center;
  width: min(92%, 1220px);
  padding-bottom: clamp(4.3rem, 8.2vw, 8.2rem);
  text-align: center;
}

.hero h1 {
  margin-bottom: 1.3rem;
  color: var(--white);
  font-size: clamp(3.8rem, 6.3vw, 7.4rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.hero p {
  margin: 0;
  color: var(--white);
  font-size: clamp(1rem, 1.55vw, 1.55rem);
  line-height: 1.35;
}


/* Indicador visual de rolagem: formato de mouse com bolinha animada */
.scroll-hint {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  z-index: 3;
  width: 25px;
  height: 42px;
  border: 2px solid rgb(255 255 255 / 80%);
  border-radius: 20px;
  transform: translateX(-50%);
  pointer-events: none;
}

.scroll-hint span {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 4px;
  background: var(--white);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scroll-hint-dot 1.7s ease-in-out infinite;
}

@keyframes scroll-hint-dot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  25%,
  75% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
}

/* ================================================================
   TELA 2
================================================================ */

.intro {
  min-height: 760px;
  padding: clamp(6rem, 8.5vw, 9.5rem) 0 4.7rem;
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
}

.intro__title {
  position: relative;
  padding-top: 4.5rem;
  text-align: center;
}

.intro__quote {
  position: absolute;
  top: -1.8rem;
  left: 50%;
  color: var(--sage);
  font-family: Georgia, serif;
  font-size: clamp(6rem, 8vw, 9rem);
  line-height: 1;
  transform: translateX(-50%);
}

.intro h2 {
  margin-bottom: 0;
  color: var(--green);
  font-size: clamp(3rem, 4.15vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.intro__text {
  text-align: center;
}

.intro__text p {
  margin-bottom: 4.4rem;
  font-size: clamp(1rem, 1.45vw, 1.45rem);
  line-height: 1.5;
}

.outline-button {
  width: min(100%, 580px);
  min-height: 56px;
  padding: 0.8rem 1.4rem;
  color: var(--sage);
  background: transparent;
  border: 1px solid var(--sage);
  font-size: clamp(0.78rem, 1.25vw, 1.2rem);
  font-weight: 700;
}

.outline-button:hover {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 10px 24px rgb(15 91 73 / 18%);
  transform: translateY(-2px);
}

.credential-line {
  width: min(calc(100% - (2 * var(--gutter))), 1250px);
  margin: 6rem auto 0;
  text-align: center;
  font-size: clamp(0.8rem, 1.15vw, 1.12rem);
  font-weight: 300;
  line-height: 1.45;
}

/* ================================================================
   FUNDO COM FOLHAGENS
================================================================ */

.patterned-section {
  position: relative;
  background: var(--sage-light);
  overflow: hidden;
  isolation: isolate;
}

.patterned-section::before,
.patterned-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 310px;
  aspect-ratio: 1;
  opacity: 0.18;
  background:
    radial-gradient(ellipse at 50% 80%, var(--sage) 0 25%, transparent 27%) 5% 10% / 65px 92px no-repeat,
    radial-gradient(ellipse at 50% 80%, var(--sage) 0 25%, transparent 27%) 45% 0 / 65px 92px no-repeat,
    radial-gradient(ellipse at 50% 80%, var(--sage) 0 25%, transparent 27%) 70% 30% / 65px 92px no-repeat,
    radial-gradient(ellipse at 50% 80%, var(--sage) 0 25%, transparent 27%) 20% 55% / 65px 92px no-repeat,
    radial-gradient(ellipse at 50% 80%, var(--sage) 0 25%, transparent 27%) 65% 68% / 65px 92px no-repeat;
}

.patterned-section::before {
  top: -60px;
  left: -90px;
  transform: rotate(-45deg);
}

.patterned-section::after {
  right: -75px;
  bottom: -70px;
  transform: rotate(135deg);
}

/* ================================================================
   TELA 3
================================================================ */

.concerns {
  min-height: 690px;
  padding: 5.8rem 0 5rem;
}

.concerns h2 {
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: clamp(2.6rem, 3.6vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.concerns__lead {
  margin-bottom: 1.6rem;
  text-align: center;
  font-size: clamp(0.95rem, 1.25vw, 1.25rem);
}

.concern-list {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.concern-list li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 78px;
  margin-left: 2rem;
  padding: 1rem 2.2rem 1rem 2.5rem;
  background: var(--white);
  border: 1px solid rgb(15 91 73 / 28%);
  border-radius: 22px;
}

.concern-list p {
  margin: 0;
  font-size: clamp(0.93rem, 1.2vw, 1.22rem);
  line-height: 1.45;
}

.chevron {
  position: absolute;
  left: -2.1rem;
  width: 48px;
  height: 48px;
  background: var(--green);
  border-radius: 50%;
}

.chevron::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 17px;
  width: 12px;
  height: 12px;
  border-top: 5px solid var(--sage-light);
  border-right: 5px solid var(--sage-light);
  transform: rotate(45deg);
}

.concerns__closing {
  margin: 1.6rem 0 0;
  text-align: center;
  font-size: clamp(0.9rem, 1.15vw, 1.15rem);
  line-height: 1.35;
}

/* ================================================================
   TELA 4
================================================================ */

.myths {
  padding: 4.2rem 0;
}

.myths__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  width: min(calc(100% - 5.5rem), 1570px);
  margin-inline: auto;
  gap: clamp(3rem, 7vw, 8rem);
}

.myths__photo {
  position: relative;
  min-height: 670px;
  margin: 0;
  overflow: hidden;
}

.myths__photo picture,
.about__photo picture {
  display: block;
  width: 100%;
  height: 100%;
}

.myths__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.myths__photo figcaption {
  position: absolute;
  right: 0;
  bottom: 4.5rem;
  left: 0;
  color: var(--white);
  font-family: var(--heading);
  font-size: clamp(2.8rem, 4vw, 5rem);
  font-weight: 400;
  text-shadow: 0 3px 10px rgb(0 0 0 / 50%);
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.myths__items {
  display: grid;
  align-content: space-evenly;
}

.myth {
  text-align: center;
}

.myth__icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 1rem;
  fill: none;
  stroke: var(--sage);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.myth h3 {
  margin-bottom: 0.6rem;
  font-family: var(--body);
  font-size: clamp(1.02rem, 1.35vw, 1.35rem);
  font-weight: 700;
  line-height: 1.3;
  text-transform: none;
}

.myth p {
  margin-bottom: 0;
  font-size: clamp(0.95rem, 1.3vw, 1.3rem);
  line-height: 1.45;
}

/* ================================================================
   TELA 5
================================================================ */

.about {
  min-height: 900px;
  padding: 4.5rem 0 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: clamp(3rem, 6vw, 6rem);
}

.about__copy {
  padding-bottom: 3.7rem;
  color: var(--white);
}

.about__eyebrow {
  margin-bottom: 1rem;
  color: var(--green);
  font-size: clamp(0.95rem, 1.25vw, 1.2rem);
  font-style: italic;
  font-weight: 300;
  text-transform: uppercase;
}

.about h2 {
  margin-bottom: 1.6rem;
  color: var(--green);
  font-size: clamp(3rem, 4.2vw, 5rem);
  line-height: 1;
}

.about__lead {
  margin-bottom: 1.8rem;
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  font-weight: 700;
  line-height: 1.4;
}

.about__copy > p:not(.about__eyebrow):not(.about__lead) {
  margin-bottom: 1.6rem;
  font-size: clamp(0.91rem, 1.12vw, 1.16rem);
  line-height: 1.48;
}

.credentials {
  margin: 2rem 0 0;
  padding: 0;
  color: var(--green);
  list-style: none;
  font-size: clamp(0.72rem, 0.88vw, 0.9rem);
  font-weight: 700;
  line-height: 1.35;
}

.credentials li::before {
  content: "+ ";
}

.about__photo {
  align-self: stretch;
  min-height: 770px;
  margin: 0;
  overflow: hidden;
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ================================================================
   TELA 6
================================================================ */

.care-banner {
  position: relative;
  display: grid;
  place-items: center;
  height: clamp(600px, 47vw, 780px);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.care-banner__image,
.care-banner__overlay {
  position: absolute;
  inset: 0;
}

.care-banner__image {
  z-index: -2;
  background: url("images/cuidado.webp") center 40% / cover no-repeat;
}

.care-banner__overlay {
  z-index: -1;
  background: rgb(22 25 24 / 72%);
}

.care-banner h2 {
  width: min(92%, 1120px);
  margin: 0;
  color: var(--white);
  font-size: clamp(3.7rem, 6vw, 7rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-align: center;
}

.care-banner h2 span {
  display: block;
}

/* ================================================================
   TELA 7
================================================================ */

.attendance {
  min-height: 850px;
  padding: 6rem 0 4rem;
}

.attendance h2 {
  margin-bottom: 4.2rem;
  text-align: center;
  font-size: clamp(3.5rem, 5vw, 6rem);
  line-height: 1;
}

.attendance__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.attendance-card {
  min-height: 430px;
  padding: 3.2rem 2rem 2.5rem;
  border: 1px solid var(--sage);
  text-align: center;
}

.attendance-card + .attendance-card {
  border-left: 0;
}

.attendance-card__number {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin: 0 auto 2rem;
  color: var(--white);
  background: #99ae95;
  border-radius: 50%;
  font-family: var(--heading);
  font-size: 4rem;
}

.attendance-card h3 {
  margin-bottom: 1.7rem;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  line-height: 1.08;
}

.attendance-card p {
  margin-bottom: 0;
  color: var(--sage);
  font-size: clamp(0.98rem, 1.24vw, 1.3rem);
  line-height: 1.45;
}

.attendance .credential-line {
  margin-top: 4.7rem;
}

/* ================================================================
   TELA 8
================================================================ */

.trust {
  min-height: 820px;
  padding: 6.2rem 0 4.8rem;
}

.trust h2 {
  margin-bottom: 1.6rem;
  text-align: center;
  font-size: clamp(3.5rem, 5vw, 6rem);
  line-height: 1;
}

.trust__subtitle {
  margin-bottom: 4.5rem;
  color: var(--white);
  text-align: center;
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.2;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem 4.5rem;
}

.trust-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  min-height: 132px;
  padding: 1.3rem 2.2rem;
  background: var(--white);
  border: 1px solid rgb(15 91 73 / 36%);
}

.trust-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  line-height: 1;
}

.trust-card p {
  margin: 0;
  font-size: clamp(0.96rem, 1.25vw, 1.25rem);
  line-height: 1.42;
}

.credential-line--green {
  margin-top: 5rem;
}

/* ================================================================
   TELA 9
================================================================ */

.services {
  min-height: 900px;
  padding: 6rem 0 7rem;
}

.services h2 {
  margin-bottom: 5rem;
  text-align: center;
  font-size: clamp(3.5rem, 5vw, 6rem);
  line-height: 1;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.6rem 7rem;
}

.service {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: start;
  gap: 1.7rem;
}

.service svg {
  width: 105px;
  height: 105px;
  fill: none;
  stroke: var(--sage);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.7rem, 2.35vw, 2.55rem);
  line-height: 1;
}

.service p {
  margin-bottom: 0;
  color: var(--sage);
  font-size: clamp(0.98rem, 1.35vw, 1.35rem);
  line-height: 1.45;
}

/* A quinta necessidade permanece na primeira coluna, como no layout. */
.service:last-child:nth-child(odd) {
  grid-column: 1;
}

/* ================================================================
   TELA 10
================================================================ */

.final-cta {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 700px;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.final-cta__image,
.final-cta__overlay {
  position: absolute;
  inset: 0;
}

.final-cta__image {
  z-index: -2;
  background: url("images/cta.webp") center 45% / cover no-repeat;
}

.final-cta__overlay {
  z-index: -1;
  background: rgb(19 23 22 / 79%);
}

.final-cta__content {
  width: min(92%, 1180px);
  text-align: center;
}

.final-cta__content > img {
  width: 255px;
  margin: 0 auto 3.5rem;
}

.final-cta h2 {
  margin-bottom: 2rem;
  color: var(--white);
  font-size: clamp(4rem, 6.4vw, 7.2rem);
  line-height: 1.04;
}

.final-cta p {
  margin-bottom: 2.8rem;
  color: var(--white);
  font-size: clamp(1rem, 1.55vw, 1.55rem);
  line-height: 1.3;
}

.final-button {
  min-height: 58px;
  padding: 0.8rem 1.7rem;
  color: var(--white);
  background: transparent;
  border: 2px solid var(--white);
  font-size: clamp(0.78rem, 1.25vw, 1.25rem);
  font-weight: 700;
}

.final-button:hover {
  color: var(--green);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 10px 24px rgb(0 0 0 / 18%);
  transform: translateY(-2px);
}

/* ================================================================
   RODAPÉ
================================================================ */

.site-footer {
  padding: 2.8rem 0 3.1rem;
  background: var(--sage-light);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

.site-footer h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.4rem, 1.7vw, 1.8rem);
}

.site-footer p {
  margin-bottom: 0;
  font-size: clamp(0.85rem, 1.1vw, 1.1rem);
}

.footer__crm {
  font-family: var(--heading);
  line-height: 1.35;
  text-align: right;
  text-transform: uppercase;
}

.footer__crm strong {
  font-weight: 400;
}

/* ================================================================
   BOTÃO FLUTUANTE DO WHATSAPP
================================================================ */

.floating-whatsapp {
  position: fixed;
  right: max(1.2rem, env(safe-area-inset-right));
  bottom: max(1.2rem, env(safe-area-inset-bottom));
  z-index: 950;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  color: var(--white);
  background: #25d366;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgb(0 0 0 / 22%);
  transition: background-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.floating-whatsapp:hover {
  background: #128c4a;
  box-shadow: 0 16px 34px rgb(0 0 0 / 28%);
  transform: translateY(-3px) scale(1.03);
}

.floating-whatsapp svg {
  width: 31px;
  fill: currentColor;
}

body.menu-open .floating-whatsapp {
  opacity: 0;
  pointer-events: none;
}

/* ================================================================
   NOTEBOOKS MENORES
================================================================ */

@media (max-width: 1180px) {
  :root {
    --gutter: 2.5rem;
  }

  .header-container {
    width: calc(100% - 4rem);
  }

  .brand,
  .brand-logo {
    width: 215px;
  }

  .brand {
    flex-basis: 215px;
  }

  .intro__grid,
  .about__grid {
    gap: 3.5rem;
  }

  .myths__grid {
    width: calc(100% - 4rem);
    gap: 3.5rem;
  }

  .trust__grid {
    gap: 1.5rem 2rem;
  }

  .trust-card {
    grid-template-columns: 145px 1fr;
    padding-inline: 1.4rem;
  }

  .services__grid {
    gap: 3rem 4rem;
  }

  .service {
    grid-template-columns: 95px 1fr;
  }

  .service svg {
    width: 88px;
    height: 88px;
  }
}

/* ================================================================
   IPADS E TABLETS GRANDES - MENU MOBILE
================================================================ */

@media (max-width: 1024px) {
  html {
    scroll-padding-top: 78px;
  }

  .header-container {
    width: calc(100% - 2.5rem);
    min-height: 78px;
  }

  .brand,
  .brand-logo {
    width: 180px;
  }

  .brand {
    height: 58px;
    flex-basis: 180px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    height: 100dvh;
    gap: 1.8rem;
    padding: 6rem 1.5rem max(3rem, env(safe-area-inset-bottom));
    color: var(--green);
    background: var(--paper);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .mobile-nav-cta {
    width: min(100%, 320px);
    padding: 0.9rem 1rem;
    color: var(--green);
    background: transparent;
    border: 1px solid var(--green);
    font-weight: 700;
  }

  .mobile-nav-cta:hover {
    color: var(--white);
    background: var(--green);
    border-color: var(--green);
    transform: translateY(-2px);
  }

  .hero {
    height: auto;
    min-height: 760px;
  }

  .hero__content {
    width: calc(100% - 3rem);
    padding-bottom: 7rem;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 8vw, 5.6rem);
  }

  .intro__grid,
  .about__grid {
    gap: 2.5rem;
  }

  .intro h2 {
    font-size: clamp(2.7rem, 4.7vw, 4rem);
  }

  .intro__text p {
    font-size: 1rem;
  }

  .myths__photo {
    min-height: 600px;
  }

  .about__copy > p:not(.about__eyebrow):not(.about__lead) {
    font-size: 0.9rem;
  }

  .attendance-card {
    padding-inline: 1.2rem;
  }

  .attendance-card h3 {
    font-size: 1.5rem;
  }

  .attendance-card p {
    font-size: 0.94rem;
  }

  .trust-card {
    grid-template-columns: 125px 1fr;
  }
}

/* ================================================================
   TABLETS E IPADS EM MODO RETRATO
================================================================ */

@media (max-width: 900px) {
  :root {
    --gutter: 2rem;
  }

  .desktop-break {
    display: none;
  }

  .intro__grid,
  .myths__grid,
  .about__grid {
    grid-template-columns: 1fr;
  }

  .intro {
    min-height: 0;
  }

  .intro__grid {
    max-width: 760px;
    gap: 4rem;
  }

  .intro__text p {
    margin-bottom: 2.5rem;
  }

  .myths__grid {
    width: min(calc(100% - 3rem), 760px);
    gap: 4rem;
  }

  .myths__photo {
    min-height: 620px;
  }

  .myths__items {
    gap: 4rem;
  }

  .about {
    min-height: 0;
  }

  .about__grid {
    max-width: 760px;
  }

  .about__copy {
    padding-bottom: 0;
  }

  .about__photo {
    min-height: 680px;
  }

  .care-banner {
    height: 670px;
  }

  .care-banner h2 {
    width: min(94%, 760px);
    font-size: clamp(3.1rem, 7vw, 5rem);
  }

  .attendance__grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-inline: auto;
  }

  .attendance-card {
    min-height: 390px;
  }

  .attendance-card + .attendance-card {
    border-top: 0;
    border-left: 1px solid var(--sage);
  }

  .trust__grid,
  .services__grid {
    grid-template-columns: 1fr;
  }

  .trust__grid {
    max-width: 780px;
    margin-inline: auto;
  }

  .trust-card {
    grid-template-columns: 150px 1fr;
  }

  .services__grid {
    max-width: 760px;
    margin-inline: auto;
  }

  .final-cta {
    min-height: 720px;
  }

  .final-cta__content {
    width: calc(100% - 3rem);
  }
}

/* ================================================================
   CELULARES GRANDES
================================================================ */

@media (max-width: 767px) {
  :root {
    --gutter: 1.25rem;
  }

  body {
    font-size: 0.96rem;
  }

  .header-container {
    width: calc(100% - 2rem);
  }

  .brand,
  .brand-logo {
    width: 160px;
  }

  .brand {
    height: 52px;
    flex-basis: 160px;
  }

  .hero {
    height: 100svh;
    min-height: 700px;
  }

  .hero__image {
    /* Usa a mesma imagem em todas as telas e altera apenas o enquadramento. */
    background-position: 56% 25%;
  }

  .hero__content {
    width: calc(100% - 2rem);
    padding-bottom: 15vh;
  }

  .hero h1 {
    font-size: clamp(2rem, 10.2vw, 4.6rem);
    line-height: 1.02;
  }

  .hero p {
    font-size: 0.95rem;
    line-height: 1.5;
  }


  .scroll-hint {
    bottom: 1.2rem;
    width: 23px;
    height: 39px;
  }

  .intro {
    padding: 6.5rem 0 3.5rem;
  }

  .intro__grid {
    gap: 3.5rem;
  }

  .intro__title {
    padding-top: 3.5rem;
  }

  .intro__quote {
    top: -1.5rem;
    font-size: 6.4rem;
  }

  .intro h2 {
    font-size: clamp(2.7rem, 11vw, 4rem);
    line-height: 1.06;
  }

  .intro__text p {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .outline-button {
    width: 100%;
    min-height: 54px;
    font-size: 0.76rem;
  }

  .credential-line {
    margin-top: 3.8rem;
    font-size: 0.69rem;
    line-height: 1.65;
  }

  .concerns {
    min-height: 0;
    padding: 4.7rem 0;
  }

  .concerns h2 {
    font-size: clamp(2.4rem, 9.5vw, 3.3rem);
    line-height: 1.05;
  }

  .concerns__lead {
    font-size: 0.87rem;
    line-height: 1.55;
  }

  .concern-list {
    gap: 0.85rem;
  }

  .concern-list li {
    min-height: 82px;
    margin-left: 1rem;
    padding: 0.9rem 1rem 0.9rem 2.35rem;
    border-radius: 18px;
  }

  .concern-list p {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .chevron {
    left: -1rem;
    width: 40px;
    height: 40px;
  }

  .chevron::before {
    top: 12px;
    left: 14px;
    width: 10px;
    height: 10px;
    border-width: 4px;
  }

  .concerns__closing {
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .myths {
    padding: 2.5rem 0 4.5rem;
  }

  .myths__grid {
    width: calc(100% - 2rem);
    gap: 3.6rem;
  }

  .myths__photo {
    min-height: 540px;
  }

  .myths__photo figcaption {
    bottom: 2.6rem;
    font-size: clamp(2.7rem, 11vw, 4rem);
  }

  .myths__items {
    gap: 3.5rem;
  }

  .myth h3 {
    font-size: 1rem;
    line-height: 1.45;
  }

  .myth p {
    font-size: 0.93rem;
    line-height: 1.55;
  }

  .about {
    padding-top: 4.2rem;
  }

  .about h2 {
    font-size: clamp(2.8rem, 11vw, 4rem);
  }

  .about__lead {
    font-size: 1rem;
  }

  .about__copy > p:not(.about__eyebrow):not(.about__lead) {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .credentials {
    font-size: 0.71rem;
    line-height: 1.55;
  }

  .about__photo {
    height: 560px;
    min-height: 0;
    margin-inline: calc(-1 * var(--gutter));
  }

  .care-banner {
    height: 620px;
  }

  /* Tela 6: mantém a mesma foto e ajusta somente o enquadramento no celular. */
  .care-banner__image {
    background-position: 57% center;
  }

  .care-banner h2 {
    width: calc(100% - 2rem);
    font-size: clamp(1.65rem, 7.1vw, 4.2rem);
    line-height: 1.08;
  }

  .attendance {
    min-height: 0;
    padding: 4.8rem 0 3.8rem;
  }

  .attendance h2 {
    margin-bottom: 3.2rem;
    font-size: clamp(3rem, 12vw, 4.4rem);
  }

  .attendance-card {
    min-height: 390px;
    padding: 2.6rem 1.5rem 2.1rem;
  }

  .attendance-card__number {
    width: 78px;
    height: 78px;
    font-size: 3.2rem;
  }

  .attendance-card h3 {
    font-size: 1.75rem;
  }

  .attendance-card p {
    font-size: 1rem;
  }

  .trust {
    min-height: 0;
    padding: 4.8rem 0 4rem;
  }

  .trust h2 {
    font-size: clamp(3rem, 12vw, 4.4rem);
  }

  .trust__subtitle {
    margin-bottom: 3rem;
    font-size: 1.25rem;
  }

  .trust__grid {
    gap: 1rem;
  }

  .trust-card {
    grid-template-columns: 110px 1fr;
    min-height: 116px;
    padding: 1rem;
  }

  .trust-card h3 {
    font-size: 1.45rem;
  }

  .trust-card p {
    font-size: 0.83rem;
  }

  .services {
    min-height: 0;
    padding: 4.8rem 0 5.5rem;
  }

  .services h2 {
    margin-bottom: 3.7rem;
    font-size: clamp(2.9rem, 11vw, 4.1rem);
  }

  .services__grid {
    gap: 3.3rem;
  }

  .service:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .service {
    grid-template-columns: 78px 1fr;
    gap: 1.1rem;
  }

  .service svg {
    width: 70px;
    height: 70px;
  }

  .service h3 {
    font-size: 1.85rem;
  }

  .service p {
    font-size: 0.91rem;
    line-height: 1.55;
  }

  .final-cta {
    min-height: 700px;
  }

  /* Tela 10: mantém a mesma foto e ajusta somente o enquadramento no celular. */
  .final-cta__image {
    background-position: 56% center;
  }

  .final-cta__content {
    width: calc(100% - 2rem);
  }

  .final-cta__content > img {
    width: 210px;
    margin-bottom: 3rem;
  }

  .final-cta h2 {
    font-size: clamp(3.4rem, 13vw, 5rem);
  }

  .final-cta p {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .final-button {
    width: min(100%, 360px);
    font-size: 0.75rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .footer__crm {
    text-align: left;
  }

  .floating-whatsapp {
    right: max(0.9rem, env(safe-area-inset-right));
    bottom: max(0.9rem, env(safe-area-inset-bottom));
    width: 56px;
    height: 56px;
  }

  .floating-whatsapp svg {
    width: 29px;
  }
}

/* ================================================================
   CELULARES MÉDIOS
================================================================ */

@media (max-width: 430px) {
  :root {
    --gutter: 1rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 10.2vw, 3.55rem);
  }

  .intro h2 {
    font-size: clamp(2.45rem, 11.5vw, 3.35rem);
  }

  .concerns h2 {
    font-size: clamp(2.2rem, 9.5vw, 2.85rem);
  }

  .myths__photo {
    min-height: 510px;
  }

  .about h2 {
    font-size: clamp(2.55rem, 11vw, 3.35rem);
  }

  .care-banner h2 {
    font-size: clamp(1.65rem, 7.1vw, 3.3rem);
  }

  .attendance h2,
  .trust h2 {
    font-size: clamp(2.85rem, 12vw, 3.8rem);
  }

  .services h2 {
    font-size: clamp(2.55rem, 11vw, 3.6rem);
  }

  .trust-card {
    grid-template-columns: 100px 1fr;
  }

  .final-cta h2 {
    font-size: clamp(3.2rem, 13vw, 4.3rem);
  }
}

/* ================================================================
   CELULARES PEQUENOS
================================================================ */

@media (max-width: 380px) {
  :root {
    --gutter: 0.9rem;
  }

  .header-container {
    width: calc(100% - 1.6rem);
  }

  .brand,
  .brand-logo {
    width: 145px;
  }

  .brand {
    flex-basis: 145px;
  }

  .hero {
    min-height: 650px;
  }

  .hero__content {
    width: calc(100% - 1.5rem);
  }

  .hero h1 {
    font-size: clamp(1.95rem, 10vw, 3.05rem);
    letter-spacing: -0.025em;
  }

  .hero p {
    font-size: 0.84rem;
  }

  .intro h2 {
    font-size: clamp(2.3rem, 11.5vw, 2.95rem);
  }

  .intro__text p {
    font-size: 0.88rem;
  }

  .outline-button {
    padding-inline: 0.75rem;
    font-size: 0.68rem;
  }

  .concerns h2 {
    font-size: clamp(2rem, 9.5vw, 2.55rem);
  }

  .concern-list li {
    margin-left: 0.8rem;
    padding-left: 2.1rem;
    padding-right: 0.75rem;
  }

  .concern-list p {
    font-size: 0.78rem;
  }

  .chevron {
    left: -0.8rem;
    width: 37px;
    height: 37px;
  }

  .chevron::before {
    top: 11px;
    left: 13px;
    width: 9px;
    height: 9px;
  }

  .myths__photo {
    min-height: 470px;
  }

  .myths__photo figcaption {
    font-size: 2.5rem;
  }

  .about h2 {
    font-size: clamp(2.35rem, 11vw, 3rem);
  }

  .about__copy > p:not(.about__eyebrow):not(.about__lead) {
    font-size: 0.84rem;
  }

  .care-banner {
    height: 570px;
  }

  .care-banner h2 {
    width: calc(100% - 1.2rem);
    font-size: clamp(1.55rem, 7vw, 2.65rem);
  }

  .attendance h2,
  .trust h2 {
    font-size: clamp(2.55rem, 12vw, 3.3rem);
  }

  .attendance-card {
    padding-inline: 1rem;
  }

  .attendance-card h3 {
    font-size: 1.55rem;
  }

  .attendance-card p {
    font-size: 0.91rem;
  }

  .trust-card {
    grid-template-columns: 88px 1fr;
    gap: 0.7rem;
  }

  .trust-card h3 {
    font-size: 1.25rem;
  }

  .trust-card p {
    font-size: 0.75rem;
  }

  .services h2 {
    font-size: clamp(2.4rem, 11vw, 3.15rem);
  }

  .service {
    grid-template-columns: 65px 1fr;
    gap: 0.85rem;
  }

  .service svg {
    width: 60px;
    height: 60px;
  }

  .service h3 {
    font-size: 1.6rem;
  }

  .service p {
    font-size: 0.83rem;
  }

  .final-cta h2 {
    font-size: clamp(2.9rem, 13vw, 3.8rem);
  }

  .final-cta p {
    font-size: 0.84rem;
  }

  .final-button {
    padding-inline: 0.7rem;
    font-size: 0.68rem;
  }
}

/* ================================================================
   CELULARES MUITO PEQUENOS
================================================================ */

@media (max-width: 340px) {
  .brand,
  .brand-logo {
    width: 135px;
  }

  .brand {
    flex-basis: 135px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .intro h2 {
    font-size: 2.18rem;
  }

  .concerns h2 {
    font-size: 1.95rem;
  }

  .concern-list p {
    font-size: 0.74rem;
  }

  .myths__photo figcaption {
    font-size: 2.25rem;
  }

  .about h2 {
    font-size: 2.2rem;
  }

  .care-banner h2 {
    font-size: 1.42rem;
  }

  .attendance h2,
  .trust h2 {
    font-size: 2.4rem;
  }

  .trust-card {
    grid-template-columns: 78px 1fr;
  }

  .trust-card h3 {
    font-size: 1.1rem;
  }

  .trust-card p {
    font-size: 0.7rem;
  }

  .services h2 {
    font-size: 2.25rem;
  }

  .service {
    grid-template-columns: 58px 1fr;
  }

  .service svg {
    width: 54px;
    height: 54px;
  }

  .service h3 {
    font-size: 1.45rem;
  }

  .service p {
    font-size: 0.78rem;
  }

  .final-cta h2 {
    font-size: 2.7rem;
  }
}

/* ================================================================
   TABLETS E IPADS NA HORIZONTAL
================================================================ */

@media (min-width: 901px) and (max-width: 1180px) and (orientation: landscape) {
  .intro__grid,
  .myths__grid,
  .about__grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust__grid,
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================================================================
   CELULARES NA HORIZONTAL
================================================================ */

@media (max-width: 950px) and (max-height: 520px) and (orientation: landscape) {
  .hero {
    height: auto;
    min-height: 520px;
  }

  .hero__content {
    padding: 8rem 1rem 3rem;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 7vw, 3.7rem);
  }

  .mobile-nav {
    justify-content: flex-start;
    padding-top: 5.5rem;
    overflow-y: auto;
  }

  .care-banner,
  .final-cta {
    min-height: 520px;
    height: 520px;
  }

  .care-banner h2 {
    font-size: clamp(2rem, 5.8vw, 3.1rem);
  }
}

/* ================================================================
   ACESSIBILIDADE
================================================================ */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* ================================================================
   ENQUADRAMENTO RESPONSIVO DA PRIMEIRA TELA

   O eixo horizontal muda levemente em celulares para manter a médica
   visível. O eixo vertical permanece em 25%, evitando o corte da cabeça.
================================================================ */

@media (max-width: 380px) {
  .hero__image {
    background-position: 58% 25%;
  }
}

@media (max-width: 340px) {
  .hero__image {
    background-position: 60% 25%;
  }
}

/* ================================================================
   CORREÇÃO DEFINITIVA DA TELA 6

   Cada span corresponde a uma linha obrigatória. O tamanho da fonte
   diminui progressivamente para que nenhuma linha seja quebrada
   internamente ou ultrapasse a largura disponível.
================================================================ */

.care-banner #care-title {
  display: grid;
  justify-items: center;
  width: min(calc(100% - 2rem), 1120px);
  margin: 0 auto;
  font-size: clamp(3rem, 5.2vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-align: center;
}

.care-banner #care-title > span {
  display: block;
  max-width: 100%;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .care-banner #care-title {
    width: calc(100% - 2rem);
    font-size: clamp(2.45rem, 6vw, 4.8rem);
    line-height: 1.04;
  }
}

@media (max-width: 767px) {
  .care-banner #care-title {
    width: calc(100% - 1.5rem);
    font-size: clamp(1.75rem, 6.4vw, 3.4rem);
    line-height: 1.06;
    letter-spacing: -0.018em;
  }
}

@media (max-width: 430px) {
  .care-banner #care-title {
    width: calc(100% - 1rem);
    font-size: clamp(1.45rem, 6.2vw, 2rem);
    line-height: 1.08;
    letter-spacing: -0.012em;
  }
}

@media (max-width: 380px) {
  .care-banner #care-title {
    width: calc(100% - 0.75rem);
    font-size: clamp(1.3rem, 6vw, 1.65rem);
  }
}

@media (max-width: 340px) {
  .care-banner #care-title {
    width: calc(100% - 0.5rem);
    font-size: 1.22rem;
  }
}

@media (max-width: 950px) and (max-height: 520px) and (orientation: landscape) {
  .care-banner #care-title {
    width: calc(100% - 2rem);
    font-size: clamp(1.7rem, 5vw, 2.8rem);
  }
}