:root {
  --navy: #071d37;
  --navy-soft: #102b4a;
  --navy-ink: #0d223d;
  --gold: #c99a45;
  --gold-soft: #e4c47c;
  --paper: #f4efe8;
  --paper-soft: #fbf8f4;
  --card: #ffffff;
  --ink: #2b2a28;
  --muted: #68645f;
  --line: rgba(7, 29, 55, 0.16);
  --shadow: 0 24px 70px rgba(7, 29, 55, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
}

.error-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 24%, rgba(201, 154, 69, 0.18), transparent 30%),
    linear-gradient(135deg, var(--paper) 0%, var(--paper-soft) 52%, #efe8df 100%);
}

.error-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
}

.error-card {
  width: min(780px, 100%);
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  text-align: center;
  animation: page-enter 0.78s ease both;
}

.error-card img {
  width: 168px;
  margin: 0 auto 28px;
}

.error-card h1 {
  max-width: none;
  margin: 16px auto;
}

.error-card p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 1.05rem;
}

.site-header,
main > *,
.footer {
  animation: page-enter 0.78s ease both;
}

main > *:nth-child(2) {
  animation-delay: 0.06s;
}

main > *:nth-child(3) {
  animation-delay: 0.12s;
}

main > *:nth-child(4) {
  animation-delay: 0.18s;
}

main > *:nth-child(n + 5) {
  animation-delay: 0.22s;
}

@keyframes page-enter {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 400;
  line-height: 1.12;
}

h1 {
  max-width: 760px;
  color: var(--navy);
  font-size: clamp(2.05rem, 4vw, 3.85rem);
  text-wrap: balance;
  word-break: normal;
}

h2 {
  color: var(--navy);
  font-size: clamp(2rem, 3.8vw, 3.7rem);
}

h3 {
  margin: 0;
  color: var(--navy-ink);
  font-size: 1.34rem;
  line-height: 1.23;
}

p {
  line-height: 1.65;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  padding: 12px clamp(20px, 7vw, 116px);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 239, 232, 0.82);
  backdrop-filter: blur(16px);
  transition: min-height 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  min-height: 86px;
  background: rgba(251, 248, 244, 0.96);
  box-shadow: 0 14px 40px rgba(7, 29, 55, 0.1);
}

.brand img {
  width: 190px;
  height: 82px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.1vw, 34px);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a {
  padding: 10px 0;
  border-bottom: 1px solid transparent;
}

.main-nav a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--paper);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(244, 239, 232, 0.98) 0%, rgba(244, 239, 232, 0.9) 47%, rgba(244, 239, 232, 0.72) 100%),
    radial-gradient(circle at 80% 42%, rgba(201, 154, 69, 0.18), transparent 28%);
  opacity: 0.94;
}

.hero-bg::before,
.hero-bg::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(201, 154, 69, 0.25);
  border-radius: 999px;
}

.hero-bg::before {
  width: 520px;
  height: 520px;
  right: 18%;
  top: 19%;
}

.hero-bg::after {
  width: 340px;
  height: 340px;
  right: 11%;
  bottom: 7%;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 520px);
  align-items: end;
  width: min(1180px, calc(100% - 40px));
  min-height: 760px;
  margin: 0 auto;
  padding-top: 118px;
}

.hero-copy {
  align-self: center;
  max-width: 690px;
  padding: 54px 0 110px;
}

.rating,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 24px;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.rating::after {
  margin-left: 10px;
  color: var(--gold);
  content: "★★★★★";
  letter-spacing: 1px;
}

.lead {
  max-width: 630px;
  margin: 28px 0 30px;
  color: #333536;
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 64px;
  padding: 0 24px;
  border: 1px solid rgba(201, 154, 69, 0.44);
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 900;
}

.btn-primary span svg,
.footer-bottom a svg,
.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: none;
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  color: #373b3f;
  font-weight: 700;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 31px;
}

.hero-points li::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--gold);
  border-radius: 5px;
  background: rgba(201, 154, 69, 0.12);
  content: "";
}

.hero-person {
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-person img {
  width: min(100%, 492px);
  max-height: 640px;
  object-fit: contain;
  filter: drop-shadow(0 26px 42px rgba(7, 29, 55, 0.18));
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 34s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 62px;
  padding: 0 24px;
  color: var(--navy);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker span::after {
  width: 38px;
  height: 1px;
  margin-left: 24px;
  background: var(--gold);
  content: "";
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section-narrow,
.section-panel,
.testimonials,
.map-section {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 126px) 0;
}

.scroll-pill {
  display: grid;
  width: 52px;
  height: 52px;
  margin: 0 auto 58px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-size: 1.35rem;
  box-shadow: 0 16px 44px rgba(7, 29, 55, 0.08);
}

.concern-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.concern-grid article,
.service-grid article,
.step-cards article,
.testimonial-row article,
details,
.footer-cards article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(7, 29, 55, 0.07);
}

.concern-grid article {
  min-height: 360px;
  padding: clamp(28px, 4vw, 46px);
  overflow: hidden;
}

.concern-grid article p {
  max-width: 470px;
  color: var(--muted);
  font-size: 1.05rem;
}

.concern-grid > article:not(.wide-card) h2 {
  max-width: 520px;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1.16;
}

.strike-title {
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--gold);
}

.gold-title {
  color: var(--gold);
}

.icon-box {
  display: inline-grid;
  min-width: 54px;
  height: 54px;
  margin-bottom: 30px;
  padding: 0 10px;
  place-items: center;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--gold-soft);
  font-weight: 900;
  box-shadow: 8px 8px 0 rgba(201, 154, 69, 0.18);
}

.icon-box svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-box.alert-icon {
  width: 70px;
  height: 70px;
}

.icon-box.alert-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 1.9;
}

.icon-box.solution-icon {
  width: 70px;
  height: 70px;
}

.icon-box.solution-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 2.1;
}

.alert-icon,
.solution-icon {
  animation: attention-pulse 2.2s ease-in-out infinite;
}

.alert-icon svg {
  animation: alert-wiggle 2.2s ease-in-out infinite;
}

.solution-icon svg {
  animation: check-pop 2.2s ease-in-out infinite;
}

@keyframes attention-pulse {
  0%,
  100% {
    box-shadow: 8px 8px 0 rgba(201, 154, 69, 0.18);
    transform: translateY(0);
  }
  50% {
    box-shadow: 12px 12px 0 rgba(201, 154, 69, 0.28);
    transform: translateY(-4px);
  }
}

@keyframes alert-wiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  18% {
    transform: rotate(-6deg);
  }
  34% {
    transform: rotate(6deg);
  }
  50% {
    transform: rotate(0deg);
  }
}

@keyframes check-pop {
  0%,
  100% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.16);
  }
}

@media (prefers-reduced-motion: reduce) {
  .alert-icon,
  .solution-icon,
  .alert-icon svg,
  .solution-icon svg {
    animation: none;
  }
}

.icon-box .whatsapp-icon {
  fill: currentColor;
  stroke: none;
}

.tag-list,
.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li,
.check-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-weight: 700;
}

.tag-list li svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.8;
  stroke-linecap: round;
}

.solution-list li svg {
  stroke: #2f9d6a;
}

.concern-grid .wide-card {
  position: relative;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 0.78fr;
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  min-height: 540px;
  padding: clamp(34px, 4vw, 48px) clamp(34px, 6vw, 64px) 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(201, 154, 69, 0.18), transparent 30%),
    linear-gradient(135deg, var(--navy), #06172b);
  color: #fff;
  border-color: rgba(201, 154, 69, 0.35);
  isolation: isolate;
}

.concern-grid .wide-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 84px 84px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 84px 84px,
    linear-gradient(135deg, transparent 58%, rgba(201, 154, 69, 0.22) 58.4%, transparent 59%),
    radial-gradient(circle at 18% 80%, rgba(201, 154, 69, 0.16), transparent 22%);
  content: "";
  opacity: 0.8;
}

.concern-grid .wide-card::after {
  position: absolute;
  right: 8%;
  top: 12%;
  z-index: -1;
  color: rgba(255, 255, 255, 0.055);
  content: "R$  %  +  =";
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(4rem, 10vw, 8.5rem);
  letter-spacing: 0.14em;
  transform: rotate(-7deg);
}

.concern-grid .wide-card h2 {
  max-width: 560px;
  color: #fff;
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.18;
  margin-bottom: 28px;
}

.concern-grid .wide-card .check-list li {
  border-color: rgba(201, 154, 69, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.concern-grid .wide-card .check-list li svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: var(--gold-soft);
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.concern-grid .wide-card img {
  align-self: end;
  justify-self: center;
  max-height: 535px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.28));
}

.section-panel {
  width: 100%;
  padding: clamp(78px, 9vw, 128px) max(20px, calc((100vw - 1180px) / 2));
  border: 1px solid var(--line);
  border-radius: 0 0 8px 8px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.76), rgba(244, 239, 232, 0.74));
}

.section-heading {
  max-width: 790px;
  margin-bottom: 44px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  margin-inline: auto;
}

.section-heading > p:not(.eyebrow):not(.rating-line) {
  color: var(--muted);
  font-size: 1.12rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 18px;
  min-height: 250px;
  padding: clamp(24px, 2.6vw, 32px);
  overflow: hidden;
}

.service-grid article::before {
  position: absolute;
  left: 0;
  top: 26px;
  bottom: 26px;
  width: 7px;
  border-radius: 0 999px 999px 0;
  background: var(--gold);
  content: "";
}

.service-grid article h3,
.service-grid article p {
  grid-column: 2;
}

.service-grid article .icon-box {
  grid-row: 1 / span 2;
  margin: 0;
}

.service-grid p,
.step-cards p,
.testimonial-row p,
.timeline-line p,
.faq p,
.footer p {
  color: var(--muted);
}

.service-grid h3,
.service-grid p {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.center-cta {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 48px;
  text-align: center;
}

.center-cta p {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
}

.testimonials {
  overflow: hidden;
}

.rating-line {
  margin: 0 0 20px;
  color: var(--navy);
  font-weight: 700;
}

.rating-line::after {
  margin-left: 8px;
  color: var(--gold);
  content: "★★★★★";
}

.testimonial-carousel {
  position: relative;
  padding: 0 72px;
}

.testimonial-viewport {
  overflow: hidden;
  padding: 0;
}

.testimonial-row {
  display: flex;
  gap: 16px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.testimonial-row article {
  flex: 0 0 calc((100% - 32px) / 3);
  min-height: 340px;
  padding: 34px;
}

.testimonial-row strong {
  color: var(--gold);
}

.testimonial-row p {
  margin: 24px 0 26px;
  color: var(--ink);
  font-size: 1.08rem;
}

.testimonial-row span {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(201, 154, 69, 0.5);
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-soft);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-arrow svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-arrow:hover {
  background: var(--navy-soft);
  transform: translateY(-50%) scale(1.04);
}

.carousel-prev {
  left: 4px;
}

.carousel-next {
  right: 4px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 26px 0 0;
}

.dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(7, 29, 55, 0.36);
  cursor: pointer;
}

.dots button.is-active {
  background: var(--navy);
}

.timeline-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 74px;
}

.timeline-line::before {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 48px;
  height: 2px;
  background: rgba(7, 29, 55, 0.22);
  content: "";
}

.timeline-line article {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.timeline-line span {
  z-index: 1;
  display: grid;
  width: 98px;
  height: 98px;
  margin-bottom: 70px;
  place-items: center;
  border: 12px solid var(--navy);
  border-radius: 50%;
  background: #fff;
  color: var(--gold);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.55rem;
}

.timeline-line article:nth-child(even) span {
  border-color: var(--gold);
  color: var(--navy);
}

.timeline-line p {
  max-width: 255px;
  margin: 12px auto 0;
}

.timeline-note {
  margin: 48px 0 0;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  font-weight: 500;
  text-align: center;
}

.step-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step-cards article {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 300px;
  padding: 34px 28px 28px;
  overflow: hidden;
  text-align: center;
}

.step-cards strong {
  position: static;
  display: block;
  margin-bottom: 18px;
  color: rgba(7, 29, 55, 0.82);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 4.2rem;
  font-weight: 400;
  line-height: 1;
}

.step-cards .icon-box {
  margin-left: 48px;
}

.step-cards h3,
.step-cards p {
  margin-left: 0;
}

.step-cards h3 {
  margin-bottom: 12px;
}

.step-cards p {
  margin-top: 0;
}

.about {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding: clamp(80px, 9vw, 126px) max(20px, calc((100vw - 1180px) / 2)) 0;
  border-top: 4px solid var(--navy);
  background: linear-gradient(90deg, rgba(244, 239, 232, 0.96), rgba(244, 239, 232, 0.76));
}

.about::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--navy);
  content: "";
}

.about-copy {
  padding-bottom: 76px;
}

.about-copy p {
  max-width: 640px;
  color: #383c42;
  font-size: 1.06rem;
}

.about-media {
  display: flex;
  justify-content: center;
}

.about-media img {
  max-height: 720px;
  object-fit: contain;
  object-position: center bottom;
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  padding: 0;
}

summary {
  position: relative;
  cursor: pointer;
  padding: 26px 58px 26px 28px;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 800;
}

summary::marker {
  content: "";
}

summary::after {
  position: absolute;
  right: 28px;
  top: 26px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-soft);
  content: "+";
  font-size: 0.8rem;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 28px 28px;
  font-size: 1.04rem;
}

.final-cta {
  position: relative;
  width: min(940px, calc(100% - 40px));
  margin: 24px auto 86px;
  padding: 72px 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  text-align: center;
}

.final-cta p {
  color: var(--muted);
  font-size: 1.08rem;
}

.map-section {
  display: grid;
  justify-items: center;
  padding-top: 0;
}

.map-section iframe {
  width: min(940px, 100%);
  height: 360px;
  border: 0;
  border-radius: 8px;
  filter: grayscale(0.25) saturate(0.82);
  box-shadow: var(--shadow);
}

.address {
  width: fit-content;
  max-width: 940px;
  margin: 28px 0;
  padding: 13px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  font-weight: 700;
  text-align: center;
}

.footer {
  position: relative;
  padding: clamp(70px, 9vw, 118px) max(20px, calc((100vw - 1180px) / 2)) 52px;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}

.footer::before {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 73px;
  background: var(--paper);
  clip-path: polygon(0 0, 31% 0, 36% 100%, 64% 100%, 69% 0, 100% 0, 100% 0, 0 0);
  content: "";
}

.footer-mark {
  display: grid;
  justify-items: center;
  margin-bottom: 44px;
}

.footer-mark img {
  width: 240px;
  height: 130px;
  object-fit: contain;
}

.footer-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.footer-cards article {
  min-height: 190px;
  padding: 34px;
  background: #fff;
}

.footer-cards h3 {
  margin-bottom: 22px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
}

.footer-cards p {
  margin: 8px 0 0;
  color: #2d3339;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.social-link svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-legal {
  margin-top: 8px;
  font-size: 0.82rem;
}

.footer-credit a {
  color: var(--gold-soft);
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 40;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 18px 46px rgba(7, 29, 55, 0.28);
  animation: floating-whatsapp-pulse 1.8s ease-in-out infinite;
}

@keyframes floating-whatsapp-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 18px 46px rgba(7, 29, 55, 0.28), 0 0 0 0 rgba(201, 154, 69, 0.38);
  }
  50% {
    transform: scale(1.07);
    box-shadow: 0 20px 52px rgba(7, 29, 55, 0.34), 0 0 0 12px rgba(201, 154, 69, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  main > *,
  .footer,
  .floating-whatsapp {
    animation: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 78px;
    padding-inline: 20px;
  }

  .brand img {
    width: 138px;
    height: 62px;
  }

  .nav-toggle {
    position: relative;
    z-index: 35;
    display: grid;
    width: 46px;
    height: 46px;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.62);
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--navy);
  }

  .main-nav {
    position: fixed;
    inset: 0 0 auto 0;
    display: grid;
    gap: 8px;
    padding: 94px 20px 24px;
    background: rgba(251, 248, 244, 0.98);
    box-shadow: 0 22px 48px rgba(7, 29, 55, 0.12);
    transform: translateY(-110%);
    transition: transform 0.25s ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content,
  .wide-card,
  .about,
  .concern-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 96px;
  }

  .hero-copy {
    padding: 44px 0 28px;
  }

  .hero-person img {
    max-height: 500px;
  }

  .wide-card img {
    justify-self: center;
  }

  .concern-grid .wide-card {
    min-height: auto;
    padding-bottom: 0;
  }

  .concern-grid .wide-card h2 {
    font-size: clamp(1.9rem, 6vw, 2.55rem);
  }

  .service-grid,
  .step-cards,
  .timeline-line,
  .footer-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-row article {
    flex-basis: calc((100% - 16px) / 2);
  }

  .timeline-line::before {
    display: none;
  }

  .timeline-line span {
    margin-bottom: 24px;
  }

  .about-copy {
    padding-bottom: 18px;
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  h1 {
    font-size: clamp(2.05rem, 9vw, 2.9rem);
    line-height: 1.08;
    text-align: center;
  }

  h2 {
    font-size: clamp(1.95rem, 8vw, 2.75rem);
    line-height: 1.14;
    text-align: center;
  }

  h3,
  p {
    text-align: center;
  }

  .site-header {
    min-height: 86px;
    padding-inline: 18px;
  }

  .site-header.is-scrolled {
    min-height: 78px;
  }

  .brand img {
    width: 150px;
    height: 68px;
  }

  .nav-toggle {
    width: 50px;
    height: 50px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(244, 239, 232, 0.98), rgba(244, 239, 232, 0.84));
  }

  .hero-bg::before,
  .hero-bg::after {
    display: none;
  }

  .hero-content {
    width: min(100% - 36px, 520px);
    padding-top: 112px;
    text-align: center;
  }

  .hero-copy {
    display: grid;
    justify-items: center;
    padding: 42px 0 18px;
  }

  .rating,
  .eyebrow {
    justify-content: center;
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  .rating {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    width: 100%;
    padding: 16px 18px;
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .hero .rating {
    display: inline-flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
  }

  .rating::after {
    margin-left: 0;
    white-space: nowrap;
  }

  .lead {
    margin: 24px auto 28px;
    font-size: 1.04rem;
    line-height: 1.72;
    text-align: center;
  }

  .hero-person img {
    width: min(100%, 360px);
    max-height: 380px;
    margin-inline: auto;
  }

  .btn {
    width: 100%;
    min-height: 58px;
    padding-inline: 16px;
    font-size: 0.82rem;
    text-align: center;
  }

  .ticker span {
    min-height: 52px;
    padding-inline: 16px;
    font-size: 0.82rem;
  }

  .section-narrow,
  .testimonials,
  .map-section {
    width: min(100% - 32px, 1180px);
    padding-block: 58px;
  }

  .section-panel {
    width: 100%;
    padding: 58px 16px;
  }

  .scroll-pill {
    margin-bottom: 34px;
  }

  .section-heading {
    margin-inline: auto;
    margin-bottom: 34px;
    text-align: center;
  }

  .concern-grid article {
    min-height: auto;
    padding: 30px 22px;
    text-align: center;
  }

  .concern-grid > article:not(.wide-card) h2 {
    max-width: 100%;
    font-size: clamp(1.95rem, 8vw, 2.5rem);
  }

  .tag-list,
  .check-list {
    justify-items: center;
  }

  .tag-list li,
  .check-list li {
    max-width: 100%;
    text-align: left;
  }

  .concern-grid .wide-card {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 42px 22px 44px;
    text-align: center;
  }

  .concern-grid .wide-card > div {
    display: contents;
    width: 100%;
    max-width: 360px;
  }

  .concern-grid .wide-card h2 {
    order: 1;
    max-width: 100%;
    margin-inline: auto;
    font-size: clamp(1.85rem, 7.4vw, 2.25rem);
    line-height: 1.18;
  }

  .concern-grid .wide-card .check-list {
    order: 3;
    width: 100%;
    margin-bottom: 0;
  }

  .concern-grid .wide-card .check-list li {
    width: min(100%, 320px);
    justify-content: flex-start;
    padding: 13px 18px;
    white-space: normal;
  }

  .concern-grid .wide-card img {
    order: 2;
    width: min(110%, 430px);
    max-height: 430px;
    margin-top: 18px;
    margin-bottom: 28px;
  }

  .concern-grid .wide-card::after {
    right: auto;
    left: 4%;
    top: 12%;
    font-size: 4.5rem;
    opacity: 0.62;
  }

  .service-grid,
  .step-cards,
  .timeline-line,
  .footer-cards {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: auto;
    padding: 30px 24px;
    text-align: center;
  }

  .service-grid article h3,
  .service-grid article p {
    grid-column: 1;
  }

  .service-grid article .icon-box {
    grid-row: auto;
  }

  .service-grid article::before {
    top: 22px;
    bottom: 22px;
  }

  .testimonial-row {
    gap: 0;
  }

  .testimonial-carousel {
    padding: 0 0 72px;
  }

  .testimonial-row article {
    flex-basis: 100%;
    min-height: 410px;
    padding: 34px 26px;
    text-align: center;
  }

  .testimonial-row p {
    font-size: 1.02rem;
    line-height: 1.68;
    text-align: center;
  }

  .testimonial-row span {
    display: block;
    text-align: center;
  }

  .carousel-arrow {
    top: auto;
    bottom: 0;
    width: 50px;
    height: 50px;
    transform: none;
  }

  .carousel-prev {
    left: calc(50% - 62px);
  }

  .carousel-next {
    right: calc(50% - 62px);
  }

  .carousel-arrow:hover {
    transform: none;
  }

  .dots {
    margin-top: 18px;
  }

  .step-cards strong {
    font-size: 3.6rem;
  }

  .about {
    padding-inline: 16px;
    text-align: center;
  }

  .about-copy {
    display: grid;
    justify-items: center;
  }

  .about-copy p {
    text-align: center;
  }

  .about-media img {
    width: min(100%, 360px);
    max-height: 560px;
  }

  .faq details p,
  summary {
    padding-left: 20px;
    text-align: left;
  }

  .final-cta {
    width: min(100% - 32px, 940px);
    padding: 64px 20px 44px;
  }

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

  .footer {
    padding: 86px 16px 168px;
  }

  .footer::before {
    height: 52px;
    clip-path: polygon(0 0, 28% 0, 36% 100%, 64% 100%, 72% 0, 100% 0, 100% 0, 0 0);
  }

  .footer-mark {
    margin-bottom: 34px;
  }

  .footer-mark img {
    width: 190px;
    height: 100px;
  }

  .footer-cards article {
    min-height: auto;
    padding: 30px 24px;
    text-align: center;
  }

  .footer-cards h3,
  .footer-cards p {
    text-align: center;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom,
  .footer-bottom > div,
  .footer-bottom p {
    width: 100%;
  }

  .footer-legal,
  .footer-credit {
    overflow-wrap: anywhere;
    text-align: center;
  }

  .floating-whatsapp {
    right: 18px;
    bottom: 84px;
    width: 58px;
    height: 58px;
  }

  .floating-whatsapp svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 2rem;
  }

  h2,
  .concern-grid .wide-card h2 {
    font-size: 1.9rem;
  }

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

  .btn {
    font-size: 0.76rem;
  }

  .concern-grid .wide-card .check-list li {
    width: 100%;
  }
}
