@font-face {
  font-family: Poppins;
  src: url("../fonts/poppins-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url("../fonts/poppins-500.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url("../fonts/poppins-600.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url("../fonts/poppins-700.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
:root {
  /* Cores da marca informadas pelo cliente a partir do Instagram. */
  --color-brand-primary: #388f6f;
  --color-brand-secondary: #85c7ab;
  /* Derivados para texto branco acessível e estados interativos. */
  --color-action: #2e795e;
  --color-action-hover: #27664f;
  --color-action-active: #205640;
  --color-secondary-hover: #75b99b;
  --color-secondary-active: #66ab8c;
  --color-white: #ffffff;
  --color-surface-soft: #edf7f2;
  --color-surface-mint: #f4faf7;
  --color-surface-accent: #d9eee3;
  --color-surface-strong: #c6e4d6;
  /* Apoio lúdico: superfícies suaves, sem competir com a marca. */
  --color-support-lavender: #ede7f6;
  --color-support-peach: #fbe5da;
  --color-support-butter: #fff2cc;
  --color-support-plum: #695184;
  --color-support-clay: #8a503c;
  --color-support-ochre: #796021;
  --color-surface-process: #f8f6fb;
  --color-surface-location: #f7f8fa;
  --color-gray-200: #e1e5e3;
  --color-gray-700: #504543;
  --color-ink: #171312;
  --color-text: var(--color-ink);
  --color-text-muted: var(--color-gray-700);
  --color-label: var(--color-action);
  --color-border: var(--color-gray-200);
  --color-focus: var(--color-action);
  --shadow-brand: 0 8px 22px rgb(56 143 111 / 16%);
  --shadow-brand-hover: 0 10px 26px rgb(56 143 111 / 22%);
  --shadow-floating: 0 12px 32px rgb(39 102 79 / 8%);
  --font-sans:
    "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --container-max: 1200px;
  --container-padding: 48px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-card: 24px;
  --duration-fast: 160ms;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}
body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-text);
  font: 400 15px/1.7 var(--font-sans);
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.035em;
}
h1 {
  font-size: 48px;
  line-height: 1.13;
}
h2 {
  font-size: 36px;
}
h3 {
  font-size: 22px;
  letter-spacing: -0.025em;
}
p {
  color: var(--color-text-muted);
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
svg {
  display: block;
}
::selection {
  background: var(--color-surface-strong);
  color: var(--color-ink);
}
:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 5px;
}
.container {
  width: min(calc(100% - var(--container-padding) * 2), var(--container-max));
  margin-inline: auto;
}
.section {
  padding-block: 112px;
}
.icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke: none;
  flex-shrink: 0;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 16px;
  padding: 12px;
  background: #fff;
  z-index: 100;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 23px;
  border: 0;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  transition:
    background-color var(--duration-fast),
    box-shadow var(--duration-fast);
  text-align: center;
}
.button .icon {
  width: 21px;
  height: 21px;
}
.button--primary {
  background: var(--color-action);
  color: var(--color-white);
  box-shadow: var(--shadow-brand);
}
.button--primary:hover {
  background: var(--color-action-hover);
  box-shadow: var(--shadow-brand-hover);
}
.button--primary:active {
  background: var(--color-action-active);
}
.button--secondary {
  background: var(--color-brand-secondary);
  color: var(--color-ink);
  box-shadow: var(--shadow-brand);
}
.button--secondary:hover {
  background: var(--color-secondary-hover);
}
.button--secondary:active {
  background: var(--color-secondary-active);
}
.site-header {
  height: 100px;
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: border-color var(--duration-fast);
}
.site-header.is-scrolled {
  border-color: var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-height: 48px;
}
.brand-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-top .brand-logo {
  width: 104px;
  height: 104px;
}
.brand-text {
  font-size: 19px;
  letter-spacing: -0.7px;
  font-weight: 500;
  line-height: 1.3;
}
.brand-text strong {
  font-weight: 600;
}
.brand-text small {
  display: block;
  color: var(--color-text-muted);
  font-size: 10px;
  letter-spacing: 0.55px;
  margin-top: 5px;
}
.nav {
  display: flex;
  gap: 27px;
  align-items: center;
}
.nav > a:not(.button) {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: 12px;
  position: relative;
  white-space: nowrap;
}
.nav > a:hover,
.nav > a[aria-current="location"] {
  color: var(--color-action);
}
.nav > a[aria-current="location"]:after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  margin: auto;
  width: 17px;
  height: 2px;
  border-radius: 4px;
  background: var(--color-action);
}
.nav .mobile-cta,
.menu-toggle {
  display: none;
}
.header-cta {
  padding-inline: 19px;
  white-space: nowrap;
}
.hero {
  padding-top: 120px;
}
.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 578px;
  background: var(--color-surface-soft);
  border-radius: 28px;
  overflow: hidden;
}
.hero-copy {
  padding: 60px 0 52px 54px;
  position: relative;
  z-index: 2;
}
.location-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  color: var(--color-label);
  margin-bottom: 26px;
}
.location-label .icon {
  width: 15px;
  height: 15px;
}
.hero h1 {
  margin-bottom: 22px;
  max-width: 480px;
}
.hero-copy > p {
  max-width: 385px;
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 26px;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  margin-top: 18px;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.hero-note .icon {
  width: 14px;
  height: 14px;
  color: var(--color-brand-primary);
}
.hero-visual {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
}
.hero-image {
  position: absolute;
  width: 111%;
  max-width: none;
  left: -7%;
  top: 50%;
  transform: translateY(-50%);
  aspect-ratio: 1;
  object-fit: cover;
  mask-image: radial-gradient(
    ellipse 80% 77% at 55% 50%,
    #000 60%,
    transparent 85%
  );
}
.care-badge {
  position: absolute;
  bottom: 93px;
  left: -15px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 20px 14px 14px;
  background: #fff;
  border-radius: 13px;
  box-shadow: var(--shadow-floating);
  font-size: 11px;
  line-height: 1.6;
  transform: rotate(-4deg);
}
.care-badge strong {
  font-weight: 500;
}
.badge-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  background: var(--color-surface-accent);
  border-radius: 50%;
  color: var(--color-brand-primary);
}
.badge-icon .icon {
  width: 19px;
  height: 19px;
}
.hero-caption {
  position: absolute;
  right: 35px;
  bottom: 30px;
  font-size: 11px;
  color: var(--color-label);
}
.hero-bottom {
  display: flex;
  gap: 28px;
  align-items: center;
  min-height: 125px;
  padding-inline: 54px;
}
.rating {
  display: flex;
  align-items: center;
  gap: 13px;
}
.google-letter {
  font-family: Arial, sans-serif;
  font-size: 33px;
  font-weight: 700;
  color: #4285f4;
}
.rating-score {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1.4;
}
.stars {
  color: #a66b00;
  font-size: 13px;
  letter-spacing: 2px;
}
.rating-description {
  font-size: 10px;
  color: #6b6b6b;
}
.rating-date {
  font-size: 9px;
  color: #707070;
}
.hero-bottom-divider {
  height: 38px;
  width: 1px;
  background: var(--color-border);
}
.hero-bottom > p {
  font-size: 11px;
  line-height: 1.6;
}
.age-note {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 11px;
  color: var(--color-text-muted);
}
.tiny-tooth {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-surface-soft);
  color: var(--color-brand-primary);
}
.tiny-tooth .icon {
  width: 25px;
  height: 25px;
}
.care-ribbon {
  background: var(--color-support-butter);
  padding: 18px 0;
}
.care-ribbon > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.care-ribbon span {
  font-size: 15px;
  letter-spacing: -0.3px;
  white-space: nowrap;
}
.care-ribbon .icon {
  width: 21px;
  height: 21px;
  color: var(--color-brand-primary);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--color-label);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 15px;
}
.eyebrow:before {
  content: "";
  width: 3px;
  height: 14px;
  border-radius: 3px;
  background: var(--color-brand-primary);
}
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}
.about-visual {
  position: relative;
  padding: 20px 0;
}
.about-visual > img {
  position: relative;
  width: 100%;
  aspect-ratio: 1.04;
  object-fit: cover;
  border-radius: 130px 28px 125px 28px;
  z-index: 1;
}
.about-orbit {
  position: absolute;
  width: 165px;
  height: 165px;
  border-radius: 50%;
  background: var(--color-support-peach);
  top: -3px;
  right: -26px;
}
.about-orbit:after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background: var(--color-brand-primary);
  border-radius: 50%;
  right: 10px;
  bottom: -35px;
}
.family-badge {
  position: absolute;
  z-index: 2;
  bottom: 46px;
  right: -34px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 22px;
  background: #fff;
  box-shadow: var(--shadow-floating);
  border-radius: 12px;
  font-size: 11px;
  line-height: 1.6;
}
.family-badge > .icon {
  width: 32px;
  height: 32px;
  color: var(--color-brand-primary);
}
.family-badge strong {
  font-weight: 500;
}
.about-visual figcaption {
  font-size: 9px;
  color: #707070;
  margin: 10px 0 0 14px;
}
.about-copy h2 {
  margin-bottom: 25px;
}
.about-copy > p {
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 16px;
}
.check-list {
  padding: 0;
  list-style: none;
  margin: 22px 0;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 11px;
  margin-bottom: 12px;
}
.check-list .icon {
  width: 17px;
  height: 17px;
  color: var(--color-brand-primary);
}
.text-cta {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
  font-size: 12px;
  min-height: 44px;
}
.text-cta > span {
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: var(--color-brand-secondary);
  transition: background-color var(--duration-fast);
}
.text-cta:hover > span {
  background: var(--color-secondary-hover);
}
.text-cta .icon {
  width: 16px;
  height: 16px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}
.section-heading > p {
  font-size: 14px;
  line-height: 1.8;
  max-width: 380px;
  padding-bottom: 4px;
}
.process-section {
  padding: 85px 0;
  background: var(--color-surface-process);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
}
.step-top {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
.step-number {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background: var(--color-surface-accent);
  color: var(--color-action-active);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 20px;
  flex-shrink: 0;
}
.step:nth-child(2) .step-number {
  background: var(--color-support-lavender);
  color: var(--color-support-plum);
}
.step:nth-child(3) .step-number {
  background: var(--color-support-peach);
  color: var(--color-support-clay);
}
.step-line {
  height: 1px;
  flex: 1;
  background: var(--color-border);
}
.step-heart {
  margin-left: auto;
  color: var(--color-brand-primary);
}
.step h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.step p {
  font-size: 14px;
  line-height: 1.85;
}
.process-foot {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--color-border);
  padding-top: 26px;
  margin-top: 38px;
}
.process-foot .icon {
  width: 17px;
  height: 17px;
  color: var(--color-brand-primary);
}
.process-foot p {
  font-size: 11px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  padding: 28px 24px 23px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  min-height: 316px;
}
.service-card--first-teeth {
  background: var(--color-surface-soft);
  --service-color: var(--color-action-active);
}
.service-card--prevention {
  background: var(--color-support-lavender);
  --service-color: var(--color-support-plum);
}
.service-card--treatment {
  background: var(--color-support-peach);
  --service-color: var(--color-support-clay);
}
.service-card--growth {
  background: var(--color-support-butter);
  --service-color: var(--color-support-ochre);
}
.service-icon {
  display: grid;
  place-items: center;
  background: #ffffffb3;
  border-radius: 16px;
  width: 59px;
  height: 59px;
  color: var(--service-color);
  margin-bottom: 24px;
}
.service-icon .icon {
  width: 32px;
  height: 32px;
}
.service-card h3 {
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.service-card p {
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 24px;
}
.service-tag {
  margin-top: auto;
  font-size: 9px;
  color: var(--service-color);
  font-weight: 500;
  padding-top: 15px;
  border-top: 1px solid #1713120d;
}
.services-note {
  text-align: center;
  font-size: 10px;
  margin: 29px 0 22px;
}
.services > .button {
  display: flex;
  width: max-content;
  margin-inline: auto;
}
.location-section {
  background: var(--color-surface-location);
  padding-block: 85px;
}
.location-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 85px;
  align-items: center;
}
.location-copy h2 {
  margin-bottom: 22px;
}
.location-copy > p {
  font-size: 14px;
  margin-bottom: 30px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 24px;
}
.contact-detail > span {
  width: 34px;
  height: 34px;
  background: var(--color-surface-accent);
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: var(--color-action);
  flex-shrink: 0;
}
.contact-detail .icon {
  width: 19px;
  height: 19px;
}
.contact-detail strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 5px;
}
.contact-detail address,
.contact-detail p {
  font-size: 14px;
  font-style: normal;
  line-height: 1.85;
  color: var(--color-text-muted);
}
.location-copy > .button {
  margin-top: 7px;
}
.map-wrap {
  height: 462px;
  position: relative;
  border-radius: 28px 100px 28px 28px;
  overflow: hidden;
  background: var(--color-surface-strong);
  border: 5px solid #fff;
  box-shadow: var(--shadow-floating);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.map-label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  pointer-events: none;
  box-shadow: var(--shadow-floating);
}
.map-label-icon {
  color: var(--color-brand-primary);
  background: var(--color-surface-soft);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
}
.map-label strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
}
.map-label small {
  font-size: 10px;
  color: var(--color-text-muted);
}
.map-credit {
  position: absolute;
  right: 10px;
  bottom: 0;
  padding: 2px 6px;
  background: #fff;
  color: #504543;
  font: 10px/1.6 var(--font-sans);
  border-radius: 4px 4px 0 0;
}
.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}
.faq-intro h2 {
  margin-bottom: 22px;
}
.faq-intro p {
  max-width: 310px;
  font-size: 14px;
  margin-bottom: 25px;
}
.faq-list details {
  border-bottom: 1px solid var(--color-border);
}
.faq-list details:first-child {
  border-top: 1px solid var(--color-border);
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  min-height: 75px;
  list-style: none;
  padding-block: 20px;
  line-height: 1.6;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-plus {
  width: 22px;
  height: 22px;
  position: relative;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-surface-soft);
  color: var(--color-brand-primary);
}
.faq-plus {
  display: grid;
  place-items: center;
}
.faq-plus .icon {
  width: 16px;
  height: 16px;
}
.faq-collapse-icon,
.faq-list details[open] .faq-expand-icon {
  display: none;
}
.faq-list details[open] .faq-collapse-icon {
  display: block;
}
.faq-list details[open] summary {
  color: var(--color-action);
}
.faq-answer {
  padding: 0 36px 23px 0;
}
.faq-answer p {
  font-size: 14px;
  line-height: 1.9;
}
.faq-answer small {
  display: block;
  margin-top: 12px;
  font-size: 9px;
  color: var(--color-text-muted);
}
.faq-answer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.final-cta {
  padding-bottom: 92px;
}
.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 52px 46px;
  background: var(--color-surface-accent);
  border-radius: 25px;
}
.final-cta-copy {
  flex: 1;
}
.final-cta h2 {
  font-size: 28px;
  margin-bottom: 12px;
}
.final-cta p {
  font-size: 14px;
  line-height: 1.8;
}
.cta-art {
  position: relative;
  width: 92px;
  height: 92px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  margin-right: 10px;
  color: var(--color-brand-primary);
}
.cta-art:before {
  content: "";
  position: absolute;
  inset: 5px;
  background: var(--color-brand-secondary);
  border-radius: 46% 54% 62% 38%;
  transform: rotate(-15deg);
}
.cta-art > .icon {
  position: relative;
  width: 47px;
  height: 47px;
  transform: rotate(-10deg);
}
.cta-spark {
  position: absolute;
  right: 0;
  top: -5px;
  font-size: 28px;
  color: var(--color-action);
}
.site-footer {
  background: var(--color-surface-mint);
  padding-top: 49px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding-bottom: 40px;
}
.footer-top > p {
  font-size: 14px;
  color: var(--color-label);
}
.footer-contact > a {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  font-size: 14px;
  font-weight: 500;
}
.footer-contact > a:hover {
  color: var(--color-action);
}
.footer-contact .icon {
  width: 19px;
  height: 19px;
  color: var(--color-brand-primary);
}
.footer-contact > span {
  font-size: 11px;
  color: var(--color-text-muted);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-border);
  padding-block: 20px;
  gap: 24px;
  font-size: 9px;
  color: var(--color-text-muted);
}
.footer-bottom nav {
  display: flex;
  gap: 22px;
}
.footer-bottom nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
}
.footer-bottom nav a:hover {
  color: var(--color-action);
}
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 40;
  width: 57px;
  height: 57px;
  border-radius: 50%;
  background: var(--color-brand-secondary);
  color: var(--color-ink);
  display: grid;
  place-items: center;
  box-shadow: 0 7px 24px rgb(56 143 111 / 22%);
  transition: background-color 160ms;
}
.floating-whatsapp > .icon {
  width: 29px;
  height: 29px;
}
.floating-whatsapp > span {
  position: absolute;
  right: 70px;
  white-space: nowrap;
  background: #fff;
  padding: 7px 13px;
  border-radius: 8px;
  box-shadow: var(--shadow-floating);
  font-size: 11px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 160ms;
}
.floating-whatsapp:hover {
  background: var(--color-secondary-hover);
}
.floating-whatsapp:hover > span,
.floating-whatsapp:focus-visible > span {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1450px) {
  .hero-panel {
    min-height: 610px;
  }
  .hero-copy {
    padding-top: 65px;
  }
  .hero h1 {
    font-size: 52px;
  }
  .hero-image {
    width: 111%;
  }
}
@media (max-width: 1150px) {
  :root {
    --container-padding: 32px;
  }
  .nav {
    gap: 19px;
  }
  .nav > a:not(.button) {
    font-size: 11px;
  }
  .brand-text {
    font-size: 17px;
  }
  .brand {
    gap: 9px;
  }
  .header-inner {
    gap: 16px;
  }
  .header-cta {
    padding-inline: 14px;
    font-size: 12px;
  }
  .hero-copy {
    padding-left: 38px;
    padding-top: 47px;
  }
  .hero-panel {
    min-height: 550px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero-copy > p {
    font-size: 14px;
    max-width: 340px;
  }
  .hero-note {
    font-size: 8px;
  }
  .care-badge {
    left: -10px;
    bottom: 105px;
    font-size: 10px;
    padding: 11px;
  }
  .hero-bottom {
    padding-inline: 35px;
  }
  .about,
  .faq {
    gap: 65px;
  }
  .about-orbit {
    right: -15px;
  }
  .family-badge {
    right: -20px;
  }
  .care-ribbon span {
    font-size: 13px;
  }
  .services-grid {
    gap: 13px;
  }
  .service-card {
    padding: 24px 19px;
  }
  .service-card h3 {
    font-size: 16px;
  }
  .location-grid {
    gap: 50px;
  }
  .final-cta-inner {
    padding: 40px 30px;
    gap: 20px;
  }
  .final-cta h2 {
    font-size: 25px;
  }
  .cta-art {
    width: 72px;
    height: 72px;
    margin-right: 0;
  }
  .final-cta .button {
    padding-inline: 18px;
    font-size: 12px;
  }
  .steps {
    gap: 32px;
  }
  .step h3 {
    font-size: 18px;
  }
}
@media (max-width: 950px) {
  .site-header {
    height: 85px;
  }
  .header-inner {
    gap: 16px;
  }
  .header-cta {
    margin-left: auto;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #fff;
    padding: 11px;
  }
  .menu-toggle {
    align-items: center;
    padding: 9px;
  }
  .menu-toggle .icon {
    width: 24px;
    height: 24px;
  }
  .nav {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    padding: 18px 32px 26px;
    background: #fff;
    box-shadow: 0 12px 20px rgb(39 102 79 / 8%);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border-top: 1px solid var(--color-border);
  }
  .nav.is-open {
    display: flex;
  }
  .nav > a:not(.button) {
    font-size: 14px;
  }
  .nav > a[aria-current="location"]:after {
    display: none;
  }
  .nav .mobile-cta {
    display: flex;
    margin-top: 10px;
    align-self: start;
  }
  .hero {
    padding-top: 106px;
  }
  .hero h1 {
    font-size: 38px;
  }
  .hero-copy {
    padding: 38px 0 37px 30px;
  }
  .hero-panel {
    min-height: 500px;
    grid-template-columns: 1.1fr 1fr;
  }
  .hero-copy > p {
    font-size: 14px;
    max-width: 305px;
  }
  .location-label {
    font-size: 9px;
    margin-bottom: 24px;
  }
  .hero-note {
    max-width: 230px;
    white-space: normal;
    font-size: 9px;
  }
  .hero-image {
    width: 125%;
    left: -18%;
  }
  .care-badge {
    bottom: 64px;
    left: -5px;
    font-size: 9px;
    gap: 8px;
    padding: 10px;
  }
  .badge-icon {
    width: 31px;
    height: 31px;
  }
  .hero-caption {
    right: 22px;
    bottom: 24px;
    font-size: 9px;
  }
  .hero-bottom {
    padding-inline: 24px;
    gap: 20px;
  }
  .rating-date {
    display: none;
  }
  .age-note {
    font-size: 10px;
    gap: 8px;
  }
  .care-ribbon span {
    font-size: 11px;
  }
  .care-ribbon .icon {
    width: 17px;
    height: 17px;
  }
  .section {
    padding-block: 85px;
  }
  h2 {
    font-size: 30px;
  }
  .about {
    gap: 45px;
  }
  .about-visual > img {
    border-radius: 100px 24px 100px 24px;
    aspect-ratio: 0.8;
  }
  .family-badge {
    right: -10px;
    font-size: 9px;
    padding: 14px;
  }
  .about-copy > p {
    font-size: 14px;
  }
  .check-list li {
    font-size: 10px;
  }
  .section-heading {
    gap: 25px;
  }
  .section-heading > p {
    font-size: 14px;
    max-width: 270px;
  }
  .steps {
    gap: 25px;
  }
  .step h3 {
    font-size: 17px;
  }
  .step p {
    font-size: 14px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .service-card {
    min-height: 280px;
    padding: 27px;
  }
  .service-card h3 {
    font-size: 20px;
  }
  .service-card p {
    font-size: 14px;
  }
  .service-tag {
    font-size: 10px;
  }
  .location-grid {
    gap: 35px;
    grid-template-columns: 1fr 1fr;
  }
  .map-wrap {
    height: 475px;
    border-radius: 24px 70px 24px 24px;
  }
  .map-label {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 12px;
    gap: 9px;
  }
  .map-label small {
    font-size: 8px;
  }
  .map-label strong {
    font-size: 10px;
  }
  .map-label-icon {
    width: 33px;
    height: 33px;
    flex-shrink: 0;
  }
  .faq {
    gap: 50px;
    grid-template-columns: 0.9fr 1.1fr;
  }
  .faq-list summary {
    font-size: 12px;
  }
  .final-cta-inner {
    flex-wrap: wrap;
  }
  .cta-art {
    width: 70px;
    height: 70px;
  }
  .final-cta-copy {
    flex-basis: 70%;
  }
  .final-cta .button {
    margin-left: 90px;
  }
  .footer-top > p {
    font-size: 12px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 10px;
  }
  .footer-bottom > span:last-child {
    display: none;
  }
}
@media (max-width: 650px) {
  :root {
    --container-padding: 22px;
  }
  html {
    scroll-padding-top: 90px;
  }
  .site-header {
    height: 78px;
  }
  .brand-text {
    font-size: 16px;
    letter-spacing: -0.5px;
  }
  .brand-text small {
    font-size: 8px;
    letter-spacing: 0.3px;
    margin-top: 4px;
  }
  .header-cta {
    display: none;
  }
  .nav {
    top: 77px;
    padding-inline: 22px;
  }
  .hero {
    padding-top: 96px;
  }
  .hero-panel {
    grid-template-columns: 1fr;
    border-radius: 21px;
    overflow: hidden;
  }
  .hero-copy {
    padding: 31px 25px 0;
  }
  .location-label {
    font-size: 9px;
    margin-bottom: 21px;
  }
  .hero h1 {
    font-size: 36px;
    line-height: 1.14;
    letter-spacing: -1.2px;
    margin-bottom: 20px;
  }
  .hero-copy > p {
    font-size: 14px;
    line-height: 1.85;
    max-width: 370px;
    margin-bottom: 24px;
  }
  .hero-copy > .button {
    font-size: 12px;
    padding: 14px 20px;
  }
  .hero-note {
    max-width: none;
    font-size: 8px;
    gap: 5px;
    margin-top: 16px;
  }
  .hero-note .icon {
    width: 12px;
    height: 12px;
  }
  .hero-visual {
    width: 100%;
    height: auto;
    aspect-ratio: 1.13;
  }
  .hero-image {
    width: 100%;
    left: 0;
    top: -10px;
    transform: none;
    max-width: 100%;
  }
  .care-badge {
    left: 16px;
    bottom: 36px;
    font-size: 9px;
    padding: 10px 13px;
    transform: rotate(-3deg);
  }
  .hero-caption {
    bottom: 15px;
    right: 20px;
    font-size: 8px;
  }
  .hero-bottom {
    min-height: 125px;
    padding: 22px 3px;
    gap: 17px;
    flex-wrap: wrap;
  }
  .rating {
    gap: 9px;
  }
  .google-letter {
    font-size: 27px;
  }
  .rating-score {
    font-size: 14px;
  }
  .stars {
    font-size: 11px;
    letter-spacing: 1.5px;
  }
  .rating-description {
    font-size: 9px;
  }
  .hero-bottom-divider {
    height: 33px;
  }
  .hero-bottom > p {
    font-size: 9px;
  }
  .age-note {
    display: none;
  }
  .care-ribbon {
    padding: 16px 0;
  }
  .care-ribbon > .container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 13px;
  }
  .care-ribbon span {
    font-size: 10px;
  }
  .care-ribbon .icon {
    width: 12px;
    height: 12px;
  }
  .care-ribbon span:nth-of-type(3),
  .care-ribbon span:nth-of-type(4),
  .care-ribbon .icon:nth-of-type(2),
  .care-ribbon .icon:nth-of-type(3) {
    display: none;
  }
  .section {
    padding-block: 72px;
  }
  h2 {
    font-size: 30px;
    letter-spacing: -1px;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .about-visual {
    width: calc(100% - 20px);
    max-width: 440px;
    margin-inline: auto;
    padding: 14px 0 0;
  }
  .about-visual > img {
    aspect-ratio: 1.08;
    border-radius: 90px 20px 85px 20px;
  }
  .about-orbit {
    width: 130px;
    height: 130px;
    right: -15px;
    top: -5px;
  }
  .about-orbit:after {
    right: 3px;
    width: 19px;
    height: 19px;
    bottom: -25px;
  }
  .family-badge {
    bottom: 40px;
    right: -10px;
    padding: 15px 17px;
    font-size: 10px;
  }
  .about-visual figcaption {
    font-size: 8px;
  }
  .about-copy > p {
    font-size: 14px;
    line-height: 1.9;
  }
  .check-list li {
    font-size: 11px;
  }
  .eyebrow {
    font-size: 11px;
    margin-bottom: 13px;
  }
  .about-copy h2 {
    margin-bottom: 22px;
  }
  .section-heading {
    display: block;
    margin-bottom: 32px;
  }
  .section-heading > p {
    max-width: 100%;
    font-size: 14px;
    margin-top: 20px;
  }
  .section-heading > p br {
    display: none;
  }
  .process-section {
    padding-block: 66px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .step {
    position: relative;
    padding-left: 65px;
  }
  .step-top {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    height: 100%;
    display: block;
  }
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .step-line {
    position: absolute;
    left: 20px;
    top: 56px;
    bottom: -18px;
    height: auto;
    width: 1px;
  }
  .step-heart {
    display: none;
  }
  .step h3 {
    font-size: 19px;
    margin-bottom: 10px;
    padding-top: 5px;
  }
  .step p {
    font-size: 14px;
    line-height: 1.85;
  }
  .process-foot {
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 24px;
    margin-top: 32px;
  }
  .process-foot p {
    font-size: 10px;
  }
  .process-foot .icon {
    margin-top: 3px;
  }
  .services-grid {
    gap: 14px;
  }
  .service-card {
    padding: 20px 16px;
    min-height: 310px;
    border-radius: 16px;
  }
  .service-icon {
    width: 47px;
    height: 47px;
    border-radius: 12px;
    margin-bottom: 20px;
  }
  .service-icon .icon {
    width: 27px;
    height: 27px;
  }
  .service-card h3 {
    font-size: 16px;
    line-height: 1.35;
  }
  .service-card p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 17px;
  }
  .service-tag {
    font-size: 8px;
    padding-top: 12px;
  }
  .services-note {
    font-size: 9px;
    line-height: 1.8;
    margin-top: 24px;
  }
  .services > .button {
    font-size: 12px;
  }
  .location-section {
    padding-block: 65px;
  }
  .location-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .location-copy > p {
    font-size: 14px;
  }
  .contact-detail strong {
    font-size: 12px;
  }
  .contact-detail address,
  .contact-detail p {
    font-size: 14px;
  }
  .map-wrap {
    height: 350px;
    border-radius: 23px 75px 23px 23px;
  }
  .map-label {
    padding: 14px;
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .map-label strong {
    font-size: 11px;
  }
  .map-label small {
    font-size: 9px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-intro p {
    max-width: none;
    font-size: 14px;
    margin-bottom: 17px;
  }
  .faq-list summary {
    font-size: 12px;
    min-height: 73px;
    gap: 16px;
  }
  .faq-answer {
    padding-right: 14px;
  }
  .faq-answer p {
    font-size: 14px;
  }
  .final-cta {
    padding-bottom: 65px;
  }
  .final-cta-inner {
    padding: 31px 25px;
    display: block;
    text-align: left;
  }
  .cta-art {
    width: 57px;
    height: 57px;
    margin: 0 0 23px;
  }
  .cta-art > .icon {
    width: 34px;
    height: 34px;
  }
  .cta-spark {
    font-size: 24px;
    top: -7px;
  }
  .final-cta h2 {
    font-size: 27px;
    max-width: 270px;
    line-height: 1.2;
  }
  .final-cta p {
    font-size: 14px;
    margin-top: 16px;
  }
  .final-cta .button {
    margin: 25px 0 0;
    font-size: 12px;
  }
  .site-footer {
    padding-top: 35px;
  }
  .footer-top {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 28px;
    padding-bottom: 30px;
  }
  .footer-top .brand {
    flex-basis: 100%;
  }
  .footer-top > p {
    font-size: 11px;
  }
  .footer-contact {
    margin-left: auto;
  }
  .footer-contact > a {
    font-size: 12px;
    min-height: 28px;
  }
  .footer-contact > span {
    font-size: 9px;
  }
  .footer-bottom {
    display: block;
    font-size: 8px;
    padding-bottom: 75px;
  }
  .footer-bottom nav {
    gap: 24px;
    margin-top: 6px;
    font-size: 10px;
  }
  .floating-whatsapp {
    width: 52px;
    height: 52px;
    right: 18px;
    bottom: 18px;
  }
  .floating-whatsapp > .icon {
    width: 27px;
    height: 27px;
  }
  .floating-whatsapp > span {
    display: none;
  }
}
@media (max-width: 360px) {
  :root {
    --container-padding: 16px;
  }
  .hero-copy {
    padding-inline: 20px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero-note {
    font-size: 7px;
  }
  .hero-bottom {
    gap: 12px;
  }
  .hero-bottom > p {
    font-size: 8px;
  }
  .rating-description {
    font-size: 8px;
  }
  .service-card {
    padding: 18px 13px;
  }
  .service-card h3 {
    font-size: 18px;
  }
  .service-card p {
    font-size: 14px;
  }
  .brand-text {
    font-size: 15px;
  }
  .footer-contact {
    margin-left: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    display: grid;
    grid-template-columns: 49px 1fr;
    gap: 0 16px;
    min-height: 0;
    padding: 24px;
  }
  .service-icon {
    grid-row: 1 / span 2;
    margin: 0;
  }
  .service-card h3 {
    font-size: 19px;
    padding-top: 3px;
  }
  .service-card p {
    grid-column: 2;
    font-size: 13px;
    margin-bottom: 16px;
  }
  .service-tag {
    grid-column: 2;
    font-size: 10px;
  }
  .map-label small {
    font-size: 8px;
  }
}

/* Remix Icon uses filled SVG paths, including the outline variants. */
.menu-close-icon,
.menu-toggle[aria-expanded="true"] .menu-open-icon {
  display: none;
}
.menu-toggle[aria-expanded="true"] .menu-close-icon {
  display: block;
}
.cta-spark {
  width: 26px;
  height: 26px;
}
.cta-spark .icon {
  width: 100%;
  height: 100%;
}
.google-letter {
  width: 32px;
  height: 32px;
}
.stars {
  display: inline-flex;
  gap: 2px;
}
.stars .icon {
  width: 13px;
  height: 13px;
}
@media (max-width: 650px) {
  .google-letter {
    width: 27px;
    height: 27px;
  }
  .stars {
    gap: 1px;
  }
  .stars .icon {
    width: 11px;
    height: 11px;
  }
}

/* Logo oficial: preservar proporção, cores e legibilidade do arquivo original. */
@media (min-width: 651px) and (max-width: 950px) {
  .site-header .brand-logo {
    width: 66px;
    height: 66px;
  }
}
@media (max-width: 650px) {
  .site-header .brand {
    gap: 10px;
  }
  .site-header .brand-logo {
    width: 60px;
    height: 60px;
  }
  .site-header .brand-text {
    font-size: 15px;
  }
  .site-header .brand-text strong {
    display: block;
  }
  .site-header .brand-text small {
    display: none;
  }
  .footer-top .brand-logo {
    width: 92px;
    height: 92px;
  }
}
@media (max-width: 360px) {
  .site-header .brand-logo {
    width: 56px;
    height: 56px;
  }
  .footer-top .brand-logo {
    width: 80px;
    height: 80px;
  }
}
