@font-face {
  font-family: "Black Mango";
  src: url("../fonts/black-mango-regular.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

:root {
  --verde-profundo: #5F7157;
  --verde-escuro: #313D2A;
  --verde-sage: #99A096;
  --bege-rosado: #D5C6B3;
  --champagne: #EDE5DA;
  --cimentado: #EAEAEA;
  --off-white: #F7F4F0;
  --tinta: #23281F;
  --tinta-suave: #5A6155;
  --texto-sobre-verde: #D8DCD5;
  --font-display: "Black Mango", "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", Arial, sans-serif;
  --container: 1200px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--off-white);
  color: var(--tinta);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

a,
button,
summary {
  cursor: pointer;
}

:where(a, button, summary):focus-visible {
  outline: 2px solid var(--bege-rosado);
  outline-offset: 3px;
}

p {
  max-width: 68ch;
  margin: 0;
}

section,
#agendar {
  scroll-margin-top: 96px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 200;
  padding: 12px 16px;
  border-radius: 2px;
  background: var(--off-white);
  color: var(--verde-escuro);
  font-size: 14px;
  font-weight: 700;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid transparent;
  color: var(--off-white);
  transition: background-color 250ms ease, border-color 250ms ease, backdrop-filter 250ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  border-bottom-color: rgba(35, 40, 31, 0.12);
  background: rgba(247, 244, 240, 0.92);
  color: var(--tinta);
}

.site-header.is-scrolled:not(.menu-open) {
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 0 40px;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-width: 118px;
  min-height: 44px;
}

.brand-logo {
  width: 118px;
  height: auto;
  filter: none;
  opacity: 1;
  transition: filter 250ms ease, opacity 250ms ease;
}

.site-header:not(.is-scrolled):not(.menu-open) .brand-logo {
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.site-header.is-scrolled .brand-logo,
.site-header.menu-open .brand-logo {
  filter: none;
  opacity: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 9px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 15px 32px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--verde-profundo);
  color: var(--off-white);
}

.button--primary:hover {
  background: #4C5B46;
}

.button--light {
  background: var(--off-white);
  color: var(--verde-profundo);
}

.button--light:hover {
  background: var(--bege-rosado);
}

.button--ghost {
  border-color: rgba(35, 40, 31, 0.4);
  background: transparent;
  color: currentColor;
}

.button--ghost-light {
  border-color: rgba(255, 255, 255, 0.4);
}

.button--ghost:hover {
  border-color: currentColor;
  background: rgba(255, 255, 255, 0.06);
}

.site-header:not(.is-scrolled):not(.menu-open) .nav-cta {
  background: var(--off-white);
  color: var(--verde-profundo);
}

.site-header:not(.is-scrolled):not(.menu-open) .nav-cta:hover {
  background: var(--bege-rosado);
}

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 2px;
  color: currentColor;
  cursor: pointer;
  transition: background-color 220ms ease, color 220ms ease;
}

.nav-instagram svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.25;
  fill: none;
}

.nav-instagram:hover {
  background: rgba(255, 255, 255, 0.1);
}

.site-header.is-scrolled .nav-instagram:hover,
.site-header.menu-open .nav-instagram:hover {
  background: rgba(35, 40, 31, 0.08);
}

.mobile-instagram {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--tinta-suave);
}

.mobile-instagram span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.mobile-instagram svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.25;
  fill: none;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: transparent;
  color: currentColor;
}

.nav-toggle svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
}

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  overflow-y: auto;
  background: var(--off-white);
  color: var(--verde-escuro);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity 240ms ease, transform 240ms ease, visibility 240ms ease;
}

.mobile-panel__inner {
  display: flex;
  min-height: 100dvh;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 104px 24px 40px;
}

.mobile-panel a:not(.button):not(.mobile-instagram) {
  width: fit-content;
  min-height: 44px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
}

.mobile-panel .button {
  width: fit-content;
  margin-top: 16px;
}

.site-header.menu-open .mobile-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.section {
  padding: 120px 40px;
}

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

.section--champagne {
  background: var(--champagne);
}

.section--deep {
  background: var(--verde-profundo);
  color: var(--off-white);
}

.section-header {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-header--dark p:not(.eyebrow),
.section--deep .faq-list p,
.visit-cta p {
  color: var(--texto-sobre-verde);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--verde-profundo);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--texto-sobre-verde);
}

.section-title {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 62px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0;
}

.section-header p:not(.eyebrow) {
  color: var(--tinta-suave);
}

.section-header--dark p:not(.eyebrow) {
  color: var(--texto-sobre-verde);
}

.section-note {
  max-width: 62ch;
  color: var(--texto-sobre-verde) !important;
  font-size: 14px;
  line-height: 1.6;
}

.hero {
  position: relative;
  display: flex;
  min-height: 92dvh;
  align-items: center;
  overflow: hidden;
  padding: 160px 40px 120px;
  background: var(--verde-profundo);
  color: var(--off-white);
}

.hero-mark {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-mark img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55vw;
  max-width: none;
  min-width: 620px;
  opacity: 0.11;
  transform: translate(18%, 8%);
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero-title {
  max-width: 960px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(44px, 7.5vw, 88px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 52ch;
  margin-top: 32px;
  color: var(--texto-sobre-verde);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.hero-credentials {
  position: absolute;
  right: 40px;
  bottom: 40px;
  left: 40px;
  z-index: 1;
}

.hero-credentials .container {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 24px;
}

.hero-credentials p {
  max-width: none;
  color: var(--texto-sobre-verde);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.14em;
  white-space: nowrap;
  text-wrap: balance;
}

.method-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 24px;
}

.method-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 32px;
  border: 1px solid rgba(35, 40, 31, 0.12);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.34);
}

.card-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 72px;
  color: var(--verde-profundo);
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.step-number {
  position: absolute;
  top: 56px;
  left: 28px;
  z-index: 0;
  color: var(--bege-rosado);
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
}

.method-card h3,
.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0;
}

.method-card p {
  position: relative;
  z-index: 1;
  color: var(--tinta-suave);
  font-size: 15px;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 32px;
  background: var(--verde-profundo);
  color: var(--off-white);
  transition: background-color 260ms ease;
}

.service-card:hover {
  background: #54654D;
}

.service-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

.service-price {
  display: block;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--bege-rosado);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.service-arrow {
  position: absolute;
  right: 32px;
  bottom: 29px;
  width: 24px;
  height: 24px;
  color: var(--bege-rosado);
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: transform 260ms ease;
}

.service-card:hover .service-arrow {
  transform: translateX(4px);
}

.service-card:last-child {
  grid-column: span 2;
}

.results-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  align-items: start;
  gap: 24px;
}

.result-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(35, 40, 31, 0.12);
  border-radius: 4px;
  background: var(--off-white);
}

.result-card--large {
  grid-row: span 2;
}

.result-card img {
  width: 100%;
  height: auto;
  filter: saturate(0.92);
  transition: filter 400ms ease;
}

.result-card:hover img {
  filter: saturate(1);
}

.results-disclaimer {
  max-width: none;
  margin-top: 32px;
  color: var(--tinta-suave);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 80px;
}

.about-media {
  position: relative;
  width: min(100%, 460px);
}

.about-frame {
  position: absolute;
  inset: -24px 24px 24px -24px;
  z-index: 0;
  border-radius: 4px;
  background: var(--verde-sage);
}

.about-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.about-copy {
  max-width: 660px;
}

.about-copy p:not(.eyebrow):not(.award-badge):not(.brand-list) {
  margin-top: 24px;
  color: var(--tinta-suave);
}

.award-badge {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 8px;
  padding: 8px 12px;
  border: 1px solid var(--bege-rosado);
  color: var(--verde-profundo);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-list {
  margin-top: 32px;
  color: var(--verde-profundo);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.method-proof {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  align-items: center;
  gap: 64px;
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid rgba(35, 40, 31, 0.12);
}

.method-proof__media {
  width: min(100%, 340px);
}

.method-proof__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.method-proof__text {
  max-width: 560px;
}

.method-proof__quote {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.35;
  color: var(--tinta);
}

.method-proof__caption {
  margin-top: 20px;
  color: var(--tinta-suave);
  font-size: 14px;
  line-height: 1.6;
}

.method-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(35, 40, 31, 0.12);
}

.method-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.method-stat__number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  color: var(--verde-profundo);
}

.method-stat__number small {
  margin-left: 2px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
}

.method-stat__label {
  max-width: 18ch;
  color: var(--tinta-suave);
  font-size: 13px;
  line-height: 1.4;
}

.faq-section .section-header {
  margin-bottom: 32px;
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 24px 0;
  color: var(--off-white);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: var(--bege-rosado);
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  transition: transform 220ms ease;
}

.faq-list details[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-list p {
  max-width: 78ch;
  padding: 0 64px 32px 0;
  font-size: 15px;
  line-height: 1.75;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 56px;
}

.visit-copy > p:not(.eyebrow) {
  color: var(--tinta-suave);
}

.hours-list {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin: 40px 0 24px;
}

.hours-list div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 12px;
}

.hours-list div::before {
  order: 2;
  border-bottom: 1px dotted rgba(35, 40, 31, 0.28);
  content: "";
}

.hours-list dt {
  order: 1;
  color: var(--tinta-suave);
  font-size: 15px;
}

.hours-list dd {
  order: 3;
  margin: 0;
  color: var(--tinta);
  font-size: 15px;
  font-weight: 500;
}

.small-note {
  color: var(--tinta-suave);
  font-size: 14px;
  line-height: 1.6;
}

.visit-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 40px;
  border-radius: 4px;
  background: var(--verde-profundo);
  color: var(--off-white);
}

.visit-cta h3 {
  max-width: 520px;
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.visit-cta .button {
  width: fit-content;
  margin-top: 32px;
}

.cta-links {
  display: grid;
  gap: 12px;
  margin-top: 40px;
}

.cta-links a {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  color: var(--texto-sobre-verde);
  font-size: 14px;
  line-height: 1.4;
}

.cta-links svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--bege-rosado);
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.site-footer {
  padding: 56px 40px;
  background: var(--verde-escuro);
  color: var(--off-white);
}

.footer-grid {
  display: grid;
  gap: 32px;
}

.footer-brand {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
}

/* A logo escura perde contraste sobre #313D2A; a versão verde é filtrada para branco. */
.footer-brand img {
  width: 177px;
  height: auto;
  filter: brightness(0) invert(1) opacity(0.92);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.footer-links a:hover,
.cta-links a:hover {
  color: var(--bege-rosado);
}

.footer-meta {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.6;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background: var(--verde-profundo);
  color: var(--off-white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 240ms ease, transform 240ms ease, background-color 220ms ease;
}

.whatsapp-float.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.whatsapp-float:hover {
  background: #4C5B46;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

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

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(.22, .61, .36, 1), transform 700ms cubic-bezier(.22, .61, .36, 1);
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > .reveal:nth-child(2) {
  transition-delay: 80ms;
}

.stagger > .reveal:nth-child(3) {
  transition-delay: 160ms;
}

.stagger > .reveal:nth-child(4) {
  transition-delay: 40ms;
}

.stagger > .reveal:nth-child(5) {
  transition-delay: 120ms;
}

.stagger > .reveal:nth-child(6) {
  transition-delay: 200ms;
}

.stagger > .reveal:nth-child(7) {
  transition-delay: 80ms;
}

.stagger > .reveal:nth-child(8) {
  transition-delay: 160ms;
}

@media (max-width: 1200px) {
  .nav-shell {
    max-width: none;
  }
}

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-card:last-child {
    grid-column: auto;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 72px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle,
  .mobile-panel {
    display: flex;
  }

  .method-grid,
  .services-grid,
  .about-grid,
  .method-proof,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .service-card:last-child {
    grid-column: auto;
  }

  .about-grid {
    gap: 56px;
  }

  .about-media {
    width: min(100%, 420px);
  }

  .method-proof {
    gap: 32px;
    margin-top: 56px;
    padding-top: 56px;
  }

  .method-proof__media {
    width: min(100%, 320px);
    margin: 0 auto;
  }

  .visit-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .nav-shell {
    padding: 0 24px;
  }

  .brand-logo {
    width: 95px;
  }

  .section {
    padding: 72px 24px;
  }

  .hero {
    min-height: 92dvh;
    padding: 128px 24px 88px;
  }

  .hero-break {
    display: none;
  }

  .hero-mark img {
    width: 90vw;
    min-width: 0;
    opacity: 0.06;
    transform: translate(30%, 10%);
  }

  .hero-copy {
    margin-top: 24px;
  }

  .hero-actions {
    margin-top: 32px;
  }

  .hero-credentials {
    display: none;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .method-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .result-card--large {
    grid-row: auto;
  }

  .result-card img {
    width: 100%;
    height: auto;
  }

  .about-frame {
    inset: -16px 16px 16px -16px;
  }

  .faq-list summary {
    font-size: 18px;
  }

  .faq-list p {
    padding-right: 0;
  }

  .visit-cta {
    padding: 40px 24px;
  }

  .site-footer {
    padding: 48px 24px;
  }
}

@media (max-width: 480px) {
  .button {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  .mobile-panel .button,
  .visit-cta .button {
    width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 280px;
    padding: 28px 24px;
  }

  .service-arrow {
    right: 24px;
    bottom: 25px;
  }

  .hours-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .hours-list div::before {
    display: none;
  }

  .hours-list dd {
    justify-self: start;
  }

  .award-badge,
  .brand-list {
    letter-spacing: 0.08em;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
