.elementor-9346 .elementor-element.elementor-element-1324359{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(min-width:768px){.elementor-9346 .elementor-element.elementor-element-1324359{--content-width:100%;}}/* Start custom CSS for html, class: .elementor-element-5848a10 */:root {
  /* Cores */
  --bg:            #171717;
  --bg-alt:        #1e1e1e;
  --bg-deep:       #101010;
  --bg-light:      #ffffff;

  --text:          #ffffff;
  --text-soft:     #c9c9c9;
  --text-muted:    #8f8f8f;
  --text-dark:     #111111;
  --text-dark-soft:#4a4a4a;

  --line:          rgba(255, 255, 255, 0.12);
  --line-strong:   rgba(255, 255, 255, 0.22);
  --line-dark:     rgba(0, 0, 0, 0.12);

  --btn-bg:        #61ce70;
  --btn-bg-hover:  #4a4a4a;
  --btn-border:    rgba(255, 255, 255, 0.18);

  --wa:            #25d366;

  /* Tipografia */
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Layout */
  --container:     1180px;
  --gutter:        24px;
  --section-y:     clamp(72px, 9vw, 128px);
  --radius:        4px;
  --radius-pill:   999px;
}

/* ------------------------------ RESET ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
}

h1 { font-size: clamp(1.7rem, 5vw, 2.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1rem; }

:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* --------------------------- SCROLL REVEAL ------------------------ */
.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
}

.js-reveal [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-reveal [data-reveal] { opacity: 1; transform: none; transition: none; }
  .clinic__track { animation: none !important; }
}

/* ------------------------------ BOTÕES ---------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border: 1px solid var(--btn-border);
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

/* Brilho diagonal da referência */
.btn::after {
  content: '';
  position: absolute;
  top: -60%;
  left: -30%;
  width: 40%;
  height: 220%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: rotate(12deg);
  pointer-events: none;
  transition: left 0.6s ease;
}

.btn:hover {
  background: var(--btn-bg-hover);
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.btn:hover::after { left: 110%; }

.btn__icon {
  width: 17px;
  height: 17px;
  fill: currentColor;
  flex: none;
}

.btn--lg { padding: 19px 44px; font-size: 0.88rem; }
.btn--sm { padding: 11px 22px; font-size: 0.7rem; letter-spacing: 0.07em; }

/* Botão sobre fundo claro (seção Método) */
.method .btn {
  background: #61ce70;;
}
.method .btn:hover { background: #1a1a1a; color:#ffffff; }

/* --------------------------- PLACEHOLDERS ------------------------- */
/* Blocos temporários. Trocar por <img> quando as fotos chegarem. */
.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 10px, transparent 10px 20px),
    #232323;
  color: var(--text-muted);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
}

.ph--tall  { min-height: 460px; height: 100%; }
.ph--case  { aspect-ratio: 4 / 3; min-height: 0; }
.ph--shot  { flex: none; width: 300px; aspect-ratio: 4 / 3; min-height: 0; }

.ph--light {
  border-color: rgba(0, 0, 0, 0.18);
  background:
    repeating-linear-gradient(45deg, rgba(0,0,0,0.02) 0 10px, transparent 10px 20px),
    #ececec;
  color: #8a8a8a;
}

/* ------------------------------ HEADER ---------------------------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 16px 0;
  background: transparent;
  transition: background 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  padding: 10px 0;
  background: rgba(16, 16, 16, 0.92);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header__logo { display: flex; align-items: center; gap: 12px; }
.header__logo-img { width: 34px; height: 34px; object-fit: contain; }

.header__wordmark { display: flex; flex-direction: column; line-height: 1.15; }

.header__name {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.header__subtitle {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav { display: flex; align-items: center; gap: 26px; }

.nav__link {
  position: relative;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--text-soft);
  transition: color 0.25s ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 1px;
  background: var(--text);
  transition: width 0.3s ease;
}

.nav__link:hover { color: var(--text); }
.nav__link:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  margin: 0 auto;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ------------------------------- HERO ----------------------------- */
.hero {
  position: relative;
  background: var(--bg-deep);
  padding: clamp(130px, 16vh, 180px) 0 clamp(70px, 9vw, 110px);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 15% 20%, rgba(255,255,255,0.05), transparent 60%),
    radial-gradient(90% 70% at 85% 60%, rgba(255,255,255,0.035), transparent 65%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
}

.hero__brand img { width: 46px; height: 46px; object-fit: contain; }

.hero__brand span {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.hero__brand em {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero h1 { margin-bottom: 22px;}

.hero__sub {
  max-width: 44ch;
  font-size: 1.02rem;
  color: var(--text-soft);
  margin-bottom: 28px;
}

.hero__places { margin-bottom: 34px; }

.hero__places li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-soft);
  margin-bottom: 8px;
}

.dot {
  flex: none;
  width: 9px; height: 9px;
  margin-top: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  position: relative;
}

.dot::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--text);
}

.hero__figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.hero__figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(0.15) contrast(1.05);
}

.hero__figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,16,16,0.55), transparent 45%);
  pointer-events: none;
}

/* ------------------------------ SINAIS ---------------------------- */
.signs {
  background: var(--bg);
  padding: var(--section-y) 0;
}

.signs__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.signs h2 { margin-bottom: 18px; }

.signs__lead {
  max-width: 42ch;
  color: var(--text-soft);
  margin-bottom: 30px;
}

.checkbox-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.015);
}

.checkbox-card__title {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.checkbox-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-soft);
  padding: 7px 0;
}

.check {
  flex: none;
  position: relative;
  width: 17px; height: 17px;
  margin-top: 5px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.check::after {
  content: '';
  position: absolute;
  left: 5px; top: 3px;
  width: 4px; height: 8px;
  border: solid var(--text-soft);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.checkbox-card__note {
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--text);
}

.signs__figure { position: sticky; top: 110px; }

/* ---------------------------- RESULTADOS -------------------------- */
.proof {
  background: var(--bg-alt);
  padding: var(--section-y) 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(38px, 5vw, 60px);
  text-align: center;
}

.section-head p {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 0.98rem;
}

.section-head h2.rule { position: relative; padding-bottom: 20px; }

.section-head h2.rule::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 120px; height: 1px;
  background: var(--line-strong);
}

.proof__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.proof__disclaimer {
  max-width: 760px;
  margin: 20px auto 0;
  text-align: center;
  font-size: 0.76rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: clamp(38px, 5vw, 56px);
}

.stat {
  padding: 22px 14px;
  background: var(--bg-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat span {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: clamp(38px, 5vw, 56px);
}

.review {
  background: var(--bg-light);
  color: var(--text-dark);
  border-radius: var(--radius);
  padding: 22px;
}

.review__head { display: flex; align-items: center; gap: 11px; margin-bottom: 12px; }

.review__avatar {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #2b2b2b;
  color: #fff;
  font-size: 0.85rem;
}

.review__head strong { display: block; font-size: 0.87rem; font-weight: 500; }
.review__head small { font-size: 0.72rem; color: #8a8a8a; }

.review__stars { color: #f5a623; font-size: 0.85rem; margin-bottom: 10px; letter-spacing: 2px; }

.review p { margin: 0; font-size: 0.86rem; line-height: 1.6; color: var(--text-dark-soft); }

/* ------------------------------ MÉTODO ---------------------------- */
.method {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: var(--section-y) 0;
}

.section-head--dark h2 { color: var(--text-dark); }
.section-head--dark p  { color: var(--text-dark-soft); }

.method__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 34px);
}

.phase__media { position: relative; margin-bottom: 20px; }
.phase__media .ph { aspect-ratio: 16 / 10; min-height: 0; }

.phase__tag {
  position: absolute;
  top: 12px; left: 12px;
  padding: 5px 13px;
  background: var(--bg-light);
  border-radius: var(--radius-pill);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.phase h3 {
  font-size: 1.18rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.phase p { font-size: 0.9rem; color: var(--text-dark-soft); margin: 0; }

.method__kicker {
  margin: clamp(38px, 5vw, 56px) 0 30px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: var(--text-dark);
}

.method__cta { text-align: center; }

/* ------------------------------ O MÉDICO -------------------------- */
.doctor {
  background: var(--bg);
  padding: var(--section-y) 0;
}

.doctor__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.doctor__figure { position: relative; padding-bottom: 60px; }

.doctor__figure img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  filter: grayscale(0.12);
}

.doctor__quote {
  position: absolute;
  right: 0; bottom: 0;
  width: min(72%, 330px);
  margin: 0;
  padding: 24px;
  background: var(--bg-light);
  color: var(--text-dark);
  border-radius: var(--radius);
}

.doctor__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0 0 12px;
}

.doctor__quote cite {
  font-style: normal;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a8a8a;
}

.doctor__content h2 { margin-bottom: 16px; }

.doctor__crm {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 26px;
  line-height: 1.9;
}

.doctor__content p { color: var(--text-soft); font-size: 0.95rem; }
.doctor__content .btn { margin-top: 14px; }

/* ------------------------------ CLÍNICA --------------------------- */
.clinic {
  background: var(--bg-alt);
  padding: var(--section-y) 0;
  overflow: hidden;
}

.clinic .section-head h2 { line-height: 1.25; }

.clinic__strip {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.clinic__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: clinic-scroll 46s linear infinite;
}

.clinic__strip:hover .clinic__track { animation-play-state: paused; }

.ba__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.4vw, 26px);
}

.ba__item {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-alt);
  overflow: hidden;
}

.ba__item img {
  width: 100%;
  aspect-ratio: 4 / 5;   /* ajuste conforme o formato das suas fotos */
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 860px) {
  .ba__grid { grid-template-columns: 1fr; }
  .ba__item { max-width: 460px; margin: 0 auto; }
}

@keyframes clinic-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 8px)); }
}

/* ---------------------------- LOCALIZAÇÃO ------------------------- */
.location {
  background: var(--bg);
  padding: var(--section-y) 0;
}

.location__map {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  line-height: 0;
}

.location__map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  filter: grayscale(0.2);
}

.location__cta { text-align: center; margin-top: 34px; }

/* -------------------------------- FAQ ----------------------------- */
.faq {
  background: var(--bg-deep);
  padding: var(--section-y) 0;
}

.faq__list { max-width: 780px; margin: 0 auto; }

.faq__item { border-bottom: 1px solid var(--line); }

.faq__item summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 34px 18px 0;
  position: relative;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  transition: color 0.25s ease;
}

.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--text-soft); }

.faq__item summary::after {
  content: '';
  position: absolute;
  right: 6px; top: 50%;
  width: 8px; height: 8px;
  border: solid var(--text-muted);
  border-width: 0 1.5px 1.5px 0;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s ease;
}

.faq__item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }

.faq__num { color: var(--text-muted); font-size: 0.82rem; }

.faq__answer { padding: 0 34px 22px 0; }

.faq__answer p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.faq__cta { text-align: center; margin-top: 44px; }

/* ------------------------------ FOOTER ---------------------------- */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding-top: clamp(48px, 6vw, 72px);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.6fr;
  gap: 34px;
  padding-bottom: clamp(38px, 5vw, 56px);
}

.footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer__brand img { width: 38px; height: 38px; object-fit: contain; }

.footer__brand span {
  font-family: var(--font-display);
  font-size: 1.08rem;
}

.footer__tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer__col small { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.08em; }

.footer__line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.footer__line a { transition: color 0.25s ease; }
.footer__line a:hover { color: var(--text); }
.footer__ico { color: var(--text-muted); }

.footer__col--social { display: flex; align-items: flex-start; gap: 14px; }

.footer__social {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.footer__social svg { width: 17px; height: 17px; fill: var(--text-soft); }
.footer__social:hover { border-color: var(--line-strong); background: rgba(255,255,255,0.05); }

.footer__bottom { border-top: 1px solid var(--line); padding: 20px 0; }

.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.footer__bottom p {
  margin: 0;
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* -------------------------- BOTÃO FLUTUANTE ----------------------- */
.float-wa {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--wa);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease;
}

.float-wa svg { width: 28px; height: 28px; fill: #fff; }
.float-wa:hover { transform: scale(1.07); }

/* ---------------------------- RESPONSIVO -------------------------- */
@media (max-width: 1024px) {
  .proof__gallery { grid-template-columns: repeat(2, 1fr); }
  .stats          { grid-template-columns: repeat(3, 1fr); }
  .reviews        { grid-template-columns: 1fr; }
  .method__grid   { grid-template-columns: 1fr; gap: 34px; }
  .footer__inner  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 92px 24px 34px;
    background: rgba(12, 12, 12, 0.98);
    backdrop-filter: blur(10px);
    transform: translateY(-102%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav.open { transform: translateY(0); }

  .nav__link {
    padding: 14px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--line);
  }

  .nav .btn { margin-top: 22px; align-self: flex-start; }

  .hamburger { display: flex; position: relative; z-index: 101; }

  .hero__inner,
  .signs__inner,
  .doctor__inner { grid-template-columns: 1fr; }

  .hero { padding-top: 118px; }
  .hero h1 { max-width: 100%; }
  .hero__figure { order: -1; max-width: 420px; }
  .hero__figure img { aspect-ratio: 1 / 1; }

  .signs__figure { position: static; }
  .ph--tall { min-height: 300px; }

  .doctor__figure { padding-bottom: 0; }
  .doctor__quote { position: static; width: 100%; margin-top: -30px; }
}

@media (max-width: 600px) {
  :root { --gutter: 18px; }

  .header__subtitle { display: none; }
  .proof__gallery   { grid-template-columns: 1fr; }
  .stats            { grid-template-columns: repeat(2, 1fr); }
  .footer__inner    { grid-template-columns: 1fr; }
  .ph--shot         { width: 220px; }

  .btn      { width: 100%; }
  .nav .btn { width: auto; }

  .location__map iframe { height: 300px; }
  .footer__bottom-inner { flex-direction: column; }
}

/* ---- Depoimentos verticais (formato celular) ---- */
.proof .vproof{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:24px;
  max-width:720px;
  margin:48px auto 0;
}

.proof .vproof__item{
  position:relative;
  margin:0;
  aspect-ratio:9 / 16;          /* proporção de tela de celular */
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 18px 40px rgba(0,0,0,.28);
}

.proof .vproof__item img{
  width:100%;
  height:100%;
  object-fit:cover;             /* troque para "contain" se cortar o texto do print */
  object-position:top center;
  display:block;
}

@media (max-width:768px){
  .proof .vproof{
    grid-template-columns:1fr;  /* um abaixo do outro */
    max-width:360px;
    gap:20px;
    margin-top:36px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4a024d0 *//* garante que não vai surgir barra horizontal */
html, body { overflow-x: hidden; }

.btn-whatsapp{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;

  background-color: rgb(37, 211, 102);
  width: 60px;
  height: 60px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 28px;
  text-decoration: none;
}

.btn-whatsapp:before,
.btn-whatsapp:after{
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid #25d366;
  inset: -20px;              /* no lugar de left/right/top/bottom */
  animation: animate 1.5s linear infinite;
  opacity: 0;
  pointer-events: none;
}

.pulsaDelay:after{ animation-delay: 0.5s; }

@keyframes animate{
  0%{ transform: scale(0.5); opacity: 0; }
  50%{ opacity: 1; }
  100%{ transform: scale(1.2); opacity: 0; }
}/* End custom CSS */