.elementor-10593 .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-10593 .elementor-element.elementor-element-1324359{--content-width:100%;}}/* Start custom CSS for html, class: .elementor-element-5848a10 */@font-face {
  font-family: "Asheya";
  src: url("../fonts/Asheya-Regular.woff2") format("woff2"),
       url("../fonts/Asheya-Regular.woff")  format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* cores da marca */
  --taupe:          #A29887;  /* principal — superfícies, detalhes, bordas */
  --taupe-texto:    #7A7060;  /* taupe escurecido para textos pequenos sobre claro */
  --taupe-escuro:   #5C5446;  /* títulos, seções escuras, rodapé */
  --taupe-profundo: #433D33;  /* CTA final */
  --areia-marca:    #D7D4C8;  /* apoio — detalhes sobre fundo escuro */
  --areia-claro:    #ECEAE3;

  /* neutros */
  --branco:      #FFFFFF;
  --areia:       #F5F4EF;
  --texto:       #3A362F;
  --texto-suave: #6B655A;
  --linha:       #E2DFD6;

  /* WhatsApp */
  --wa:        #25D366;
  --wa-escuro: #1DA851;

  /* tipografia */
  --display: "Asheya", "Cormorant Garamond", Georgia, serif;
  --corpo:   "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --fs-hero:  clamp(2rem, 1.15rem + 3.6vw, 3.75rem);
  --fs-h2:    clamp(1.6rem, 1.1rem + 2.1vw, 2.6rem);
  --fs-h3:    clamp(1.05rem, .95rem + .45vw, 1.3rem);
  --fs-body:  clamp(.95rem, .9rem + .2vw, 1.05rem);
  --fs-small: .8125rem;

  /* layout */
  --max:      1180px;
  --max-narrow: 800px;
  --gutter:   clamp(1.25rem, 4vw, 2.5rem);
  --sec-y:    clamp(3.5rem, 7vw, 6.5rem);
  --radius:   4px;
  --radius-lg: 8px;

  --shadow-sm: 0 2px 10px rgba(92, 84, 70, .07);
  --shadow-md: 0 12px 40px rgba(92, 84, 70, .12);

  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--corpo);
  font-weight: 500;
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--texto);
  background: var(--branco);
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; line-height: 1.15; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--taupe-escuro); color: #fff; padding: .75rem 1.25rem;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--taupe);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Utilitários ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--max-narrow); }

.eyebrow {
  font-family: var(--corpo);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--taupe-texto);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: .65rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--taupe);
  flex: none;
}
.eyebrow--light { color: var(--areia-marca); }
.eyebrow--light::before { background: var(--areia-marca); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--corpo);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1.2;
  text-decoration: none;
  padding: .95rem 1.75rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease,
              border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.btn--gold  { background: var(--wa); color: #fff; }
.btn--gold:hover  { background: var(--wa-escuro); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--taupe-escuro); border-color: var(--taupe-escuro); }
.btn--ghost:hover { background: var(--taupe-escuro); color: #fff; }
.btn--lg { padding: 1.15rem 2.4rem; font-size: .95rem; }
.btn--sm { padding: .7rem 1.25rem; font-size: .78rem; }

/* ---------- Placeholders de imagem ---------- */
.media {
  position: relative;
  margin: 0;
  background:
    repeating-linear-gradient(135deg, var(--areia-claro) 0 12px, #E4E1D8 12px 24px);
  border: 1px dashed var(--taupe);
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.media__label {
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--taupe-texto);
  text-align: center;
  padding: 1rem;
  line-height: 1.5;
}
.media__label small {
  display: block;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: none;
  opacity: .8;
  margin-top: .35rem;
}
.media__label--light { color: rgba(255,255,255,.75); }
.media--portrait { aspect-ratio: 3 / 4; }
.media--wide     { aspect-ratio: 4 / 3; }
.media--sm       { aspect-ratio: 16 / 10; }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: #FFFFFF;
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.header.is-stuck { box-shadow: var(--shadow-sm); border-bottom-color: var(--linha); }

.header__inner {
  max-width: var(--max);
  margin-inline: auto;
  padding: 0 var(--gutter);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.header__brand { display: flex; align-items: center; text-decoration: none; }
.header__logo { max-height: 52px; width: auto; object-fit: contain; }
.header__logo-fallback,
.footer__logo-fallback {
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--taupe-escuro);
  letter-spacing: .01em;
}
.header__logo-fallback em,
.footer__logo-fallback em {
  font-family: var(--corpo);
  font-style: normal;
  display: block;
  font-size: .58rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: .25rem;
}

.nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* esconde a logo antiga no desktop (a nova fica dentro do nav) */
.header__brand { display: none; }

.nav__logo {
  max-height: 40px;
  width: auto;
  object-fit: contain;
  flex: none;
}
.nav__list { display: flex; align-items: center; gap: 1.75rem; }
.nav__link {
  position: relative;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--texto);
  text-decoration: none;
  padding: .35rem 0;
  transition: color .25s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--taupe);
  transition: width .28s ease;
}
.nav__link:hover { color: var(--taupe-escuro); }
.nav__link:hover::after { width: 100%; }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--taupe-escuro);
  border-radius: 2px;
  transition: transform .3s ease, opacity .25s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 6vw, 5.5rem);
  background: var(--branco);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0 0 0 auto;
  width: 46%;
  background: linear-gradient(180deg, var(--areia-marca), var(--areia));
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
  opacity: .8;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero__title {
  font-family: var(--display);
  font-size: var(--fs-hero);
  line-height: 1.08;
  color: var(--taupe-escuro);
  letter-spacing: -.01em;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
.hero__title em {
  font-style: italic;
  color: var(--taupe);
}
.hero__subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: var(--taupe-escuro);
  line-height: 1.6;
  padding-left: 1.1rem;
  border-left: 2px solid var(--taupe);
  margin-bottom: 1.6rem;
}
.hero__text {
  color: var(--texto-suave);
  max-width: 60ch;
  margin-bottom: 2.2rem;
}
.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
}
.hero__credential {
  margin: 0;
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--texto-suave);
}

.hero__media { position: relative; }
.hero__media > img { border-radius: var(--radius-lg); }
.hero__badge {
  position: absolute;
  left: -1.5rem;
  bottom: 2rem;
  background: var(--taupe-escuro);
  color: #fff;
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: .85rem;
}
.hero__badge strong {
  font-family: var(--display);
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 400;
  color: var(--areia-marca);
}
.hero__badge span {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* =========================================================
   FAIXA DE REFERÊNCIA — elemento-assinatura
   ========================================================= */
.rangeband { padding: clamp(2.5rem, 5vw, 4rem) 0; background: var(--branco); }
.rangeband__card {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
  padding: clamp(2rem, 4vw, 3.25rem);
  border: 1px solid var(--linha);
  border-radius: var(--radius-lg);
  background: var(--areia);
}
.rangeband__caption {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--texto-suave);
  margin-bottom: 1.1rem;
}
.rangeband__track {
  position: relative;
  display: flex;
  height: 10px;
  border-radius: 999px;
  overflow: visible;
  margin-bottom: .9rem;
}
.rangeband__zone { height: 10px; }
.rangeband__zone--low  { flex: 1; background: var(--linha); border-radius: 999px 0 0 999px; }
.rangeband__zone--ok   { flex: 3; background: linear-gradient(90deg, var(--areia-marca), var(--taupe)); }
.rangeband__zone--high { flex: 1; background: var(--linha); border-radius: 0 999px 999px 0; }
.rangeband__marker {
  position: absolute;
  top: 50%;
  left: var(--pos, 22%);
  transform: translate(-50%, -50%);
}
.rangeband__marker i {
  display: block;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--taupe-escuro);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--taupe-escuro);
  animation: pulse 2.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 1px var(--taupe-escuro), 0 0 0 0 rgba(92,84,70,.3); }
  50%      { box-shadow: 0 0 0 1px var(--taupe-escuro), 0 0 0 10px rgba(92,84,70,0); }
}
.rangeband__legend {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-small);
  color: var(--texto-suave);
  margin-bottom: 2rem;
}
.rangeband__legend-right { color: var(--taupe-texto); font-weight: 600; }
.rangeband__title {
  font-family: var(--display);
  font-size: var(--fs-h2);
  line-height: 1.2;
  color: var(--taupe-escuro);
  margin: 0;
  text-wrap: balance;
}

/* =========================================================
   SEÇÕES
   ========================================================= */
.section { padding-block: var(--sec-y); }
.section--sand { background: var(--areia); }
.section--deep { background: var(--taupe-escuro); color: rgba(255,255,255,.85); }

.section__head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }

.section__title {
  font-family: var(--display);
  font-size: var(--fs-h2);
  line-height: 1.18;
  color: var(--taupe-escuro);
  text-wrap: balance;
}
.section__title--light { color: #fff; }
.section__lead {
  margin-top: 1.25rem;
  color: var(--texto-suave);
  margin-bottom: 0;
}
.section__lead--light { color: rgba(255,255,255,.78); }

/* ---------- Cards "por que aqui" ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--branco);
  border: 1px solid var(--linha);
  border-top: 2px solid var(--taupe);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__title {
  font-family: var(--display);
  font-size: var(--fs-h3);
  color: var(--taupe-escuro);
  margin-bottom: .85rem;
  line-height: 1.25;
}
.card__text { color: var(--texto-suave); margin: 0; font-size: .94rem; }

/* ---------- Etapas ---------- */
.steps {
  display: grid;
  gap: 0;
  max-width: 860px;
  margin-inline: auto;
}
.step {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 1.5rem;
  padding: 1.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.step:first-child { border-top: 1px solid rgba(255,255,255,.16); }
.step__num {
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--areia-marca);
}
.step__title {
  font-family: var(--display);
  font-size: var(--fs-h3);
  color: #fff;
  margin-bottom: .5rem;
}
.step__text { color: rgba(255,255,255,.78); margin: 0; font-size: .94rem; }

.fronts {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  max-width: 860px;
  margin-inline: auto;
}
.fronts__label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--areia-marca);
  margin-bottom: 1rem;
}
.fronts__items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-bottom: .85rem;
}
.fronts__item {
  font-family: var(--display);
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  color: #fff;
}
.fronts__divider { width: 1px; height: 26px; background: rgba(255,255,255,.3); }
.fronts__note { margin: 0; font-size: .88rem; color: rgba(255,255,255,.7); }

/* ---------- Sinais ---------- */
.signals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.75rem, 3vw, 2.5rem);
}
.signal .media { margin-bottom: 1.5rem; }
.signal__title {
  font-family: var(--display);
  font-size: var(--fs-h3);
  color: var(--taupe-escuro);
  margin-bottom: 1rem;
  padding-bottom: .85rem;
    padding-top: .85rem;
  border-bottom: 1px solid var(--linha);
}
.signal__list { display: grid; gap: .85rem; }
.signal__list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: .93rem;
  color: var(--texto-suave);
  line-height: 1.6;
}
.signal__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .6em;
  width: 8px; height: 8px;
  border: 1px solid var(--taupe);
  border-radius: 50%;
}
.signals__close {
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 1.05rem;
  color: var(--texto);
  line-height: 1.7;
}
.signals__close strong { color: var(--taupe-escuro); font-weight: 600; }

/* ---------- O que você leva ---------- */
.deliver {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  counter-reset: entrega;
}
.deliver__item {
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--linha);
  position: relative;
}
.deliver__item::before {
  counter-increment: entrega;
  content: counter(entrega, decimal-leading-zero);
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--taupe);
  display: block;
  margin-bottom: .9rem;
}
.deliver__title {
  font-family: var(--display);
  font-size: var(--fs-h3);
  color: var(--taupe-escuro);
  margin-bottom: .6rem;
}
.deliver__text { color: var(--texto-suave); font-size: .93rem; margin: 0; }

/* ---------- Sobre ---------- */
.about {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.about__media img { border-radius: var(--radius-lg); }
.about__text { color: var(--texto-suave); }
.about .section__title { margin-bottom: 1.5rem; }

.quote {
  margin: 2rem 0 0;
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--linha);
}
.quote p {
  font-family: var(--display);
  font-size: clamp(1.2rem, 1rem + 1vw, 1.6rem);
  line-height: 1.35;
  color: var(--taupe-escuro);
  font-style: italic;
  margin-bottom: .9rem;
}
.quote footer {
  font-size: var(--fs-small);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--taupe-texto);
  font-weight: 600;
}

/* ---------- CTA final ---------- */
.cta {
  background: var(--taupe-profundo);
  color: #fff;
  padding-block: clamp(3.5rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}
.cta::after {
  content: "";
  position: absolute;
  inset: auto -10% -60% auto;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215,212,200,.22), transparent 65%);
}
.cta__inner { position: relative; z-index: 1; max-width: 760px; text-align: center; }
.cta__title {
  font-family: var(--display);
  font-size: var(--fs-h2);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-wrap: balance;
}
.cta__text { color: rgba(255,255,255,.8); margin-bottom: 2rem; }
.cta__note {
  margin: 1.5rem 0 0;
  font-size: var(--fs-small);
  color: rgba(255,255,255,.65);
}

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .75rem; }
.faq__item {
  background: var(--branco);
  border: 1px solid var(--linha);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq__item[open] { border-color: var(--taupe); box-shadow: var(--shadow-sm); }
.faq__q {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 3.25rem 1.15rem 1.5rem;
  font-size: .98rem;
  font-weight: 600;
  color: var(--taupe-escuro);
  position: relative;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "";
  position: absolute;
  right: 1.5rem; top: 50%;
  width: 9px; height: 9px;
  border-right: 2px solid var(--taupe);
  border-bottom: 2px solid var(--taupe);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .3s ease;
}
.faq__item[open] .faq__q::after { transform: translateY(-20%) rotate(-135deg); }
.faq__a { padding: 0 1.5rem 1.35rem; }
.faq__a p { margin: 0; color: var(--texto-suave); font-size: .94rem; }

/* ---------- Footer ---------- */
.footer { background: var(--taupe-escuro); color: rgba(255,255,255,.8); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer__logo { max-height: 46px; width: auto; }
.footer__logo-fallback { color: #fff; }
.footer__logo-fallback em { color: var(--areia-marca); }
.footer__doctor { margin: 1.25rem 0 .75rem; font-weight: 600; color: #fff; line-height: 1.5; }
.footer__doctor span { font-weight: 400; font-size: .85rem; color: rgba(255,255,255,.7); }
.footer__crm {
  margin: 0;
  font-size: var(--fs-small);
  letter-spacing: .08em;
  color: var(--areia-marca);
  font-weight: 600;
}
.footer__title {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--areia-marca);
  margin: 0 0 .6rem;
}
.footer__col p + .footer__title { margin-top: 1.6rem; }
.footer__address + .footer__title { margin-top: 1.6rem; }
.footer__col p, .footer__address, .footer__hours {
  font-size: .9rem;
  font-style: normal;
  line-height: 1.7;
  margin: 0 0 .4rem;
}
.footer__col a { text-decoration: none; transition: color .2s ease; }
.footer__col a:hover { color: var(--areia-marca); }
.footer__map {
  aspect-ratio: 4 / 3;
  border: 1px dashed rgba(255,255,255,.35);
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.04);
}
.footer__map iframe { width: 100%; height: 100%; border: 0; border-radius: var(--radius-lg); }

.footer__bar { border-top: 1px solid rgba(255,255,255,.16); padding-block: 1.5rem; }
.footer__bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__bar p { margin: 0; font-size: .78rem; color: rgba(255,255,255,.6); }
.footer__legal { max-width: 560px; text-align: right; }

/* ---------- WhatsApp flutuante ---------- */
.wa {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--wa);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 26px rgba(37, 211, 102, .38);
  transition: transform .25s ease;
}
.wa:hover { transform: scale(1.07); }
.wa svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { max-width: 460px; margin-inline: auto; }
  .hero__bg { display: none; }
  .about { grid-template-columns: 1fr; }
  .about__media { max-width: 420px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .hamburger { display: flex; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--linha);
    box-shadow: var(--shadow-md);
    padding: 1rem var(--gutter) 1.75rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s ease, opacity .3s ease;
  }
    .nav__logo {
    align-self: center;
    max-height: 44px;
    margin: .5rem 0 1rem;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link {
    display: block;
    padding: .95rem 0;
    border-bottom: 1px solid var(--linha);
    font-size: .95rem;
  }
  .nav__link::after { display: none; }
  .nav__cta { margin-top: 1.25rem; width: 100%; }
}

@media (max-width: 640px) {
  :root { --header-h: 66px; }
  .header__logo { max-height: 42px; }
  .hero__badge { left: 0; bottom: 1rem; padding: .85rem 1.1rem; }
  .hero__badge strong { font-size: 2rem; }
  .hero__actions .btn { width: 100%; }
  .step { grid-template-columns: 1fr; gap: .5rem; }
  .step__num { font-size: 1.6rem; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bar-inner { flex-direction: column; align-items: flex-start; }
  .footer__legal { text-align: left; }
  .rangeband__legend { font-size: .72rem; }
}

/* ---------- Acessibilidade: movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Impressão ---------- */
@media print {
  .header, .wa, .hero__bg { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  body { color: #000; }
}/* 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 */