:root {
  --primer: #f4f5f7;
  --marinho: #14247a;
  --marinho-fundo: #0e1a5c;
  --marinho-superficie: #111f6d;
  --laranja: #f58220;
  --laranja-claro: #ff9a3d;
  --laranja-escuro: #c05f00;
  --aco: #7c838a;
  --texto: #1d2333;
  --texto-suave: #4a5165;
  --branco: #ffffff;
  --borda: #dfe3eb;
  --sombra: 0 10px 28px rgba(14, 26, 92, 0.08);

  --display: "Saira Condensed", sans-serif;
  --body: "Saira", sans-serif;

  --container: 1120px;
  --radius: 6px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  background: var(--primer);
  color: var(--texto);
  line-height: 1.6;
}

main,
section,
figure,
footer,
header,
nav {
  display: block;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--laranja);
  outline-offset: 2px;
}

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

section {
  padding: 88px 0;
  scroll-margin-top: 80px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--marinho);
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--laranja);
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.08;
}

h2 {
  color: var(--marinho);
  font-size: clamp(2rem, 4vw, 2.8rem);
}

h3 {
  color: var(--marinho);
  font-size: 1.35rem;
}

p {
  color: var(--texto-suave);
}

.section-head {
  max-width: 760px;
}

.section-head p {
  margin-top: 16px;
  font-size: 1rem;
}

.inline-link {
  color: var(--laranja-escuro);
  font-weight: 600;
  text-decoration: none;
}

.inline-link:hover {
  text-decoration: underline;
}

.dark-section .inline-link {
  color: var(--laranja-claro);
}

.dark-section .inline-link:hover {
  color: var(--branco);
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-cta {
  background: var(--laranja);
  color: var(--marinho-fundo);
}

.btn-cta:hover {
  background: var(--laranja-claro);
}

.btn-ghost {
  border: 2px solid currentColor;
}

.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 26, 92, 0.96);
  backdrop-filter: blur(6px);
  color: var(--branco);
  transition: box-shadow 0.2s ease;
}

header.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-link img {
  width: 140px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a,
.nav-phone {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.88;
}

.nav-links a:hover,
.nav-phone:hover {
  color: var(--laranja);
  opacity: 1;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  color: var(--branco);
  font-size: 1.6rem;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(circle at top right, rgba(245, 130, 32, 0.12), transparent 30%),
    linear-gradient(160deg, var(--marinho-fundo), var(--marinho));
  color: var(--branco);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -18% -34% auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 560px;
  padding: 72px 0;
}

.hero-badge {
  margin-bottom: 16px;
  color: var(--laranja);
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.7rem, 6vw, 4.4rem);
}

.hero p {
  max-width: 48ch;
  margin: 20px 0 32px;
  color: #c6cce8;
  font-size: 1.08rem;
}

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

.breadcrumbs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 20px;
  color: #c6cce8;
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.breadcrumbs li + li::before {
  content: "/";
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--laranja);
}

.hero-media-frame,
.hero-photo {
  position: relative;
}

.page-service .hero-media-frame {
  min-width: 0;
}

.page-service .hero-media-frame .media-card {
  width: 100%;
  aspect-ratio: 3 / 2;
}

.page-service .hero-media-frame .media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-media-frame::after,
.hero-photo::after {
  content: "";
  position: absolute;
  left: -14px;
  bottom: -14px;
  width: 60%;
  height: 10px;
  background: var(--laranja);
  transform: skewX(-20deg);
}

.hero-photo img {
  width: 100%;
  height: 420px;
  border-radius: var(--radius);
  object-fit: cover;
}

.hero-note {
  margin-top: 24px;
  color: #c6cce8;
  font-size: 0.95rem;
}

.hero-note a {
  color: var(--branco);
}

.services-grid,
.related-grid,
.summary-grid,
.process-grid,
.proof-grid,
.service-switcher {
  display: grid;
  gap: 24px;
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 40px;
}

.related-grid,
.summary-grid,
.process-grid,
.proof-grid {
  margin-top: 32px;
}

.related-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.summary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-grid,
.service-switcher {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.summary-card,
.related-card,
.step-card,
.media-card,
.contact-card,
.switch-card,
.highlight-panel {
  background: var(--branco);
  border-radius: var(--radius);
  box-shadow: var(--sombra);
}

.service-card,
.summary-card,
.related-card,
.step-card,
.highlight-panel,
.contact-card,
.switch-card {
  padding: 28px;
}

.service-card {
  border-top: 4px solid var(--laranja);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(14, 26, 92, 0.12);
}

.service-card .tag,
.step-number,
.pill-list li,
.contact-card span,
.switch-card span {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
}

.service-card .tag {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--aco);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
}

.service-card h3,
.summary-card h3,
.related-card h3,
.proof-caption h3,
.highlight-panel h3,
.contact-card h3,
.switch-card h3,
.step-card h3 {
  margin-bottom: 10px;
}

.service-card p,
.summary-card p,
.related-card p,
.proof-caption p,
.highlight-panel p,
.step-card p,
.contact-card p,
.switch-card p {
  font-size: 0.98rem;
}

.service-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--laranja-escuro);
  font-weight: 600;
  text-decoration: none;
}

.service-link:hover {
  text-decoration: underline;
}

.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: start;
}

.copy-flow p + p {
  margin-top: 16px;
}

.pill-list,
.card-list,
.reason-list {
  list-style: none;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.pill-list li {
  padding: 10px 14px;
  border: 1px solid var(--borda);
  border-radius: 999px;
  color: var(--marinho);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.card-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.card-list li {
  padding-left: 18px;
  position: relative;
  color: var(--texto-suave);
}

.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--laranja);
}

.summary-card,
.related-card {
  border-left: 4px solid var(--marinho);
}

.summary-card strong,
.related-card strong {
  color: var(--marinho);
}

.step-card {
  position: relative;
  padding-top: 74px;
}

.step-number {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--marinho);
  color: var(--branco);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.result-note {
  margin-top: 20px;
  color: var(--texto-suave);
}

.media-card {
  overflow: hidden;
}

.proof-caption {
  padding: 22px;
}

.photo-placeholder {
  position: relative;
  width: 100%;
  min-height: 260px;
  background:
    linear-gradient(135deg, rgba(20, 36, 122, 0.08), rgba(245, 130, 32, 0.08)),
    linear-gradient(180deg, #f9fafc, #ecf0f6);
  border: 1px solid rgba(20, 36, 122, 0.12);
  overflow: hidden;
}

.photo-placeholder::before {
  content: "";
  position: absolute;
  inset: auto -8% -18% auto;
  width: 42%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: rgba(245, 130, 32, 0.22);
}

.photo-placeholder::after {
  content: "";
  position: absolute;
  left: -6%;
  bottom: 10%;
  width: 42%;
  height: 10px;
  background: var(--laranja);
  transform: skewX(-28deg);
}

.photo-placeholder svg {
  width: 100%;
  height: 100%;
}

.todo-note {
  padding: 14px 22px 22px;
  color: var(--texto-suave);
  font-size: 0.95rem;
}

.todo-block {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 4px solid var(--laranja);
  background: rgba(255, 255, 255, 0.06);
  color: #d9def2;
}

.soft-block {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 4px solid var(--laranja);
  background: var(--branco);
  color: var(--texto-suave);
  box-shadow: var(--sombra);
}

.dark-section {
  background: var(--marinho-fundo);
  color: var(--branco);
}

.dark-section h2,
.dark-section h3 {
  color: var(--branco);
}

.dark-section .eyebrow {
  color: var(--laranja);
}

.dark-section p,
.dark-section .todo-note,
.dark-section .result-note {
  color: #c6cce8;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 380px;
  border-radius: var(--radius);
  object-fit: cover;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.stat-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.stat-card strong {
  display: block;
  color: var(--laranja);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: #c6cce8;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reason-list {
  display: grid;
  gap: 16px;
}

.reason-list li {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.reason-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--laranja);
  font-family: var(--display);
  font-size: 1.15rem;
  text-transform: uppercase;
}

.reason-list span {
  color: #c6cce8;
}

.ba-wrap {
  margin-top: 40px;
}

.ba {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  user-select: none;
  box-shadow: var(--sombra);
}

.ba img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.ba .depois {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 50%);
}

.ba .divisor {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--branco);
  pointer-events: none;
}

.ba .divisor::after {
  content: "◂ ▸";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 8px 10px;
  border-radius: 50px;
  background: var(--laranja);
  color: var(--marinho-fundo);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.ba input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.ba .rotulo {
  position: absolute;
  top: 14px;
  padding: 5px 12px;
  border-radius: 4px;
  background: rgba(14, 26, 92, 0.85);
  color: var(--branco);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  pointer-events: none;
}

.ba .rotulo-antes {
  left: 14px;
}

.ba .rotulo-depois {
  right: 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: zoom-in;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

dialog.lightbox {
  position: fixed;
  inset: 0;
  margin: auto;
  max-width: min(92vw, 1100px);
  border: none;
  padding: 0;
  background: transparent;
}

dialog.lightbox::backdrop {
  background: rgba(10, 14, 40, 0.9);
}

dialog.lightbox img {
  width: 100%;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
}

dialog.lightbox button {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--laranja);
  color: var(--marinho-fundo);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
}

.faq {
  max-width: 860px;
  margin: 40px auto 0;
}

.faq details {
  margin-bottom: 12px;
  border-radius: var(--radius);
  background: var(--branco);
  box-shadow: var(--sombra);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  color: var(--marinho);
  font-family: var(--display);
  font-size: 1.06rem;
  font-weight: 700;
  text-transform: uppercase;
  list-style: none;
  cursor: pointer;
}

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

.faq summary::after {
  content: "+";
  color: var(--laranja);
  font-size: 1.5rem;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  padding: 0 22px 18px;
}

.contact {
  background: var(--branco);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
}

.info-block {
  margin-bottom: 28px;
}

.info-block h4 {
  margin-bottom: 6px;
  color: var(--marinho);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-block a {
  text-decoration: none;
  overflow-wrap: anywhere;
}

.info-block a:hover {
  color: var(--laranja-escuro);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.hours-table td {
  padding: 8px 0;
  border-bottom: 1px solid #e4e6e4;
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 500;
}

.hours-table .closed {
  color: var(--aco);
}

.map iframe {
  width: 100%;
  min-height: 380px;
  height: 100%;
  border: 0;
  border-radius: var(--radius);
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 36px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--marinho), var(--marinho-fundo));
  color: var(--branco);
  box-shadow: var(--sombra);
}

.cta-band h2 {
  color: var(--branco);
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.cta-band p {
  margin-top: 12px;
  color: #c6cce8;
  max-width: 48ch;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.contact-card span,
.switch-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--aco);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
}

.contact-card a {
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-card a:hover {
  color: var(--laranja-escuro);
}

.service-switcher {
  margin-top: 36px;
}

.switch-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.switch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(14, 26, 92, 0.12);
}

footer {
  padding: 32px 0;
  background: var(--marinho-fundo);
  color: #9aa3cf;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-social {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-social a {
  text-decoration: none;
}

.footer-social a:hover {
  color: var(--branco);
}

.whats-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--branco);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

.whats-float svg {
  width: 30px;
  height: 30px;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

  .btn,
  .service-card,
  .switch-card,
  .gallery-grid img,
  .reveal {
    transition: none;
  }

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

@media (max-width: 960px) {
  .hero-inner,
  .about-grid,
  .two-col,
  .contact-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .summary-grid,
  .proof-grid,
  .service-switcher {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-stats,
  .contact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  section {
    padding: 64px 0;
  }

  .hero-inner {
    gap: 36px;
    min-height: auto;
    padding: 52px 24px 60px;
  }

  .services-grid,
  .related-grid,
  .summary-grid,
  .proof-grid,
  .gallery-grid,
  .contact-strip,
  .service-switcher {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-phone {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 16px;
    padding: 16px 24px 24px;
    background: var(--marinho-fundo);
  }

  .nav-links.open {
    display: flex;
  }
}

@media (max-width: 560px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  section {
    padding: 52px 0;
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.25rem);
  }

  .eyebrow {
    gap: 9px;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
  }

  .eyebrow::before {
    width: 22px;
  }

  .hero-inner {
    gap: 32px;
    padding: 44px 20px 52px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }

  .hero p {
    margin: 18px 0 28px;
    font-size: 1rem;
  }

  .hero-actions,
  .btn-row {
    gap: 12px;
  }

  .hero-actions .btn,
  .btn-row .btn {
    width: 100%;
    text-align: center;
    padding: 13px 18px;
  }

  .hero-photo img {
    height: clamp(230px, 72vw, 320px);
  }

  .hero-media-frame::after,
  .hero-photo::after {
    left: -8px;
    bottom: -10px;
  }

  .service-card,
  .summary-card,
  .related-card,
  .step-card,
  .contact-card,
  .switch-card,
  .highlight-panel {
    padding: 22px;
  }

  .step-card {
    padding-top: 68px;
  }

  .step-number {
    top: 20px;
    left: 20px;
  }

  .ba img {
    height: clamp(250px, 78vw, 340px);
  }

  .photo-placeholder {
    min-height: 220px;
  }

  .about-image img {
    height: clamp(240px, 72vw, 300px);
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .faq {
    margin-top: 32px;
  }

  .faq summary {
    padding: 16px 18px;
    font-size: 1rem;
  }

  .faq details p,
  .todo-note {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-grid,
  .gallery-grid {
    margin-top: 32px;
  }

  .gallery-grid {
    gap: 8px;
  }

  .gallery-grid img {
    height: clamp(140px, 44vw, 190px);
  }

  .hours-table tr {
    display: block;
    padding: 9px 0;
    border-bottom: 1px solid #e4e6e4;
  }

  .hours-table td {
    display: block;
    padding: 1px 0;
    border: 0;
  }

  .hours-table td:last-child {
    text-align: left;
  }

  .map iframe {
    min-height: 300px;
  }

  .footer-inner {
    justify-content: center;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .whats-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  dialog.lightbox {
    max-width: calc(100vw - 24px);
  }

  dialog.lightbox button {
    top: 8px;
    right: 8px;
  }
}
