:root {
  --navy: #071a52;
  --navy-dark: #04102d;
  --blue: #0a2e8a;
  --blue-mid: #087cc1;
  --cyan: #11a9d8;
  --gold: #ffb000;
  --green: #1fad53;
  --green-dark: #168d42;
  --ink: #142033;
  --muted: #5e6b7a;
  --line: #dceaf1;
  --soft: #f5fafd;
  --soft-blue: #eaf6fb;
  --white: #ffffff;
  --container: 1200px;
  --shadow: 0 16px 40px rgba(7, 26, 82, 0.1);
  --shadow-hover: 0 20px 46px rgba(7, 26, 82, 0.15);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.2vw, 4.65rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 750;
}

p {
  margin-bottom: 20px;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.section {
  padding: 88px 0;
}

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

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

.section-heading > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.1rem;
}

.section-heading.centered > p:not(.eyebrow) {
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--blue-mid);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.centered .eyebrow {
  justify-content: center;
}

.eyebrow svg {
  width: 20px;
  height: 20px;
}

.eyebrow-light {
  display: inline-flex;
  padding: 9px 13px;
  color: #dff8ff;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.eyebrow-gold {
  color: #ffd26c;
}

.grid {
  display: grid;
  gap: 24px;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(10, 46, 138, 0.2);
}

.button-primary:hover {
  background: var(--navy);
}

.button-whatsapp {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 28px rgba(31, 173, 83, 0.25);
}

.button-whatsapp:hover {
  background: var(--green-dark);
}

.button-whatsapp svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.9;
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.button-large {
  min-height: 58px;
  padding-inline: 30px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(7, 26, 82, 0.09);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 72px;
  max-height: 72px;
  object-fit: contain;
  background: transparent;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 32px);
  margin-left: auto;
}

.main-nav a {
  color: #364456;
  font-size: 0.94rem;
  font-weight: 650;
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--blue-mid);
}

.header-cta {
  min-height: 46px;
  margin-left: auto;
  padding: 11px 18px;
  font-size: 0.92rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid var(--line);
  color: var(--navy);
  background: var(--white);
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

/* Hero */
.hero {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 21, 46, 0.92) 0%, rgba(5, 21, 46, 0.82) 42%, rgba(5, 21, 46, 0.4) 75%, rgba(5, 21, 46, 0.3) 100%),
    url("assets/hero-pool.png") center right / cover no-repeat;
}

.hero-inner {
  display: grid;
  min-height: 700px;
  grid-template-columns: minmax(0, 7fr) minmax(220px, 5fr);
  align-items: center;
  gap: 54px;
  padding-top: 96px;
  padding-bottom: 96px;
}

.hero-content {
  max-width: 690px;
}

.hero h1 {
  color: var(--white);
}

.hero-lead {
  max-width: 630px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.65;
}

.hero-benefits {
  display: grid;
  gap: 12px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 600;
}

.check-icon {
  display: inline-grid;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  place-items: center;
  color: var(--navy-dark);
  background: #68dc93;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
}

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

.hero-microcopy {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.experience-badge {
  justify-self: end;
  display: flex;
  width: 180px;
  min-height: 180px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  border: 6px solid rgba(255, 176, 0, 0.8);
  border-radius: 50%;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.23);
  text-align: center;
  backdrop-filter: blur(9px);
}

.experience-badge strong {
  color: var(--blue);
  font-size: 3.6rem;
  line-height: 0.9;
}

.experience-badge span {
  margin-top: 9px;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

/* Trust */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 28px;
  padding-bottom: 28px;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 2px 24px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  color: var(--blue-mid);
  background: var(--soft-blue);
  border-radius: 12px;
}

.trust-icon svg {
  width: 23px;
  height: 23px;
}

.trust-item div {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.trust-item strong {
  color: var(--navy);
  font-size: 0.95rem;
}

.trust-item span:not(.trust-icon) {
  color: var(--muted);
  font-size: 0.83rem;
}

/* Problems */
.problems {
  background: var(--soft);
}

.problem-card,
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.problem-card {
  padding: 30px;
  border-top: 4px solid var(--cyan);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.problem-card:hover,
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.problem-card p,
.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.card-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 22px;
  color: var(--blue-mid);
  background: var(--soft-blue);
  border-radius: 16px;
}

.card-icon svg {
  width: 29px;
  height: 29px;
}

/* Services */
.services {
  background: var(--white);
}

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

.service-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 28px 24px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #d7e8f2;
  font-size: 1.15rem;
  font-weight: 900;
}

.service-card p {
  margin-bottom: 20px;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  color: #445366;
  font-size: 0.9rem;
  list-style: none;
}

.service-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green);
  font-weight: 900;
}

.service-card > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--blue-mid);
  font-weight: 800;
}

.service-card > a:hover {
  color: var(--navy);
}

/* About */
.about {
  background: var(--soft-blue);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}

.about-media {
  position: relative;
}

.about-media > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: transparent;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.about-stat {
  position: absolute;
  right: -24px;
  bottom: 24px;
  display: flex;
  width: min(265px, 60%);
  flex-direction: column;
  padding: 19px 22px;
  color: var(--white);
  background: var(--navy);
  border-left: 5px solid var(--gold);
  border-radius: 14px;
  box-shadow: 0 16px 35px rgba(7, 26, 82, 0.24);
}

.about-stat strong {
  color: #ffd26c;
  font-size: 1.5rem;
}

.about-stat span {
  font-size: 0.88rem;
  line-height: 1.4;
}

.about-content > p:not(.eyebrow) {
  color: #4e5d6d;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 27px 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #344459;
  font-weight: 650;
}

.check-list span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 0.75rem;
}

/* Differentials */
.differentials {
  color: var(--white);
  background: linear-gradient(135deg, #061747 0%, #0a3982 100%);
}

.section-heading-light h2 {
  color: var(--white);
}

.differential-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  backdrop-filter: blur(8px);
}

.differential-card h3 {
  color: var(--white);
}

.differential-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.gold-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 22px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 15px;
  font-weight: 900;
}

.commitment {
  max-width: 760px;
  margin: 40px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  font-weight: 650;
  text-align: center;
}

/* Process */
.process {
  background: var(--white);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.process-list li {
  position: relative;
  padding: 0 22px;
  text-align: center;
}

.process-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 27px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  border-top: 2px dashed #bdd7e4;
}

.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin: 0 auto 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border: 5px solid var(--soft-blue);
  border-radius: 50%;
  font-size: 1.05rem;
  font-weight: 900;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.section-action {
  margin-top: 42px;
  text-align: center;
}

/* Area */
.service-area {
  background: var(--soft);
}

.area-grid {
  display: grid;
  grid-template-columns: minmax(280px, 4fr) minmax(0, 8fr);
  align-items: start;
  gap: 54px;
}

.area-intro {
  position: sticky;
  top: 116px;
}

.area-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.localities {
  display: grid;
  gap: 14px;
}

.localities details,
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.localities summary,
.faq-list summary {
  position: relative;
  padding: 20px 54px 20px 22px;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.localities summary::after,
.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--blue-mid);
  font-size: 1.45rem;
  font-weight: 500;
  transform: translateY(-50%);
}

.localities details[open] summary::after,
.faq-list details[open] summary::after {
  content: "−";
}

.localities ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 22px;
  margin: 0;
  padding: 0 22px 22px;
  color: #4d5d6d;
  list-style: none;
}

.localities li {
  position: relative;
  padding-left: 17px;
}

.localities li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
}

/* FAQ */
.faq {
  background: var(--white);
}

.faq-list {
  display: grid;
  max-width: 860px;
  gap: 12px;
  margin-inline: auto;
}

.faq-list details {
  overflow: clip;
}

.faq-list details[open] {
  border-color: #b8d9e9;
  box-shadow: 0 10px 30px rgba(7, 26, 82, 0.07);
}

.faq-list summary {
  padding: 22px 62px 22px 24px;
  font-size: 1.05rem;
}

.faq-answer {
  padding: 0 56px 21px 24px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
}

/* Final CTA */
.final-cta {
  position: relative;
  color: var(--white);
  background: linear-gradient(135deg, #071a52 0%, #087cc1 100%);
}

.final-cta::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 80px;
  opacity: 0.08;
  background:
    radial-gradient(80% 90px at 20% 100%, transparent 67%, #fff 69%, transparent 72%),
    radial-gradient(80% 90px at 80% 130%, transparent 67%, #fff 69%, transparent 72%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 150px minmax(0, 760px);
  align-items: center;
  justify-content: center;
  gap: 42px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.final-cta img {
  width: 130px;
  max-height: 130px;
  object-fit: contain;
  background: transparent;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

.final-cta small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.66);
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: var(--navy-dark);
  padding-bottom: 88px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1.1fr;
  gap: 48px;
  padding-top: 58px;
  padding-bottom: 42px;
}

.footer-brand img {
  width: 92px;
  max-height: 92px;
  margin-bottom: 19px;
  object-fit: contain;
  background: transparent;
}

.footer-brand p {
  max-width: 290px;
  margin: 0;
}

.site-footer h2 {
  margin-bottom: 17px;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.site-footer nav a {
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-contact p {
  margin-bottom: 14px;
}

.footer-contact-link {
  color: #63d88e;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
}

.footer-bottom p {
  margin: 0;
}

/* Floating CTA */
.floating-whatsapp {
  position: fixed;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(22px, calc(env(safe-area-inset-bottom) + 16px));
  z-index: 90;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(5, 32, 17, 0.3);
  transition: background-color 180ms ease, transform 180ms ease;
}

.floating-whatsapp:hover {
  background: var(--green-dark);
  transform: translateY(-3px) scale(1.03);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.8;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: 0.86rem;
  }

  .header-cta {
    padding-inline: 14px;
  }

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

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 190px;
  }

  .experience-badge {
    width: 160px;
    min-height: 160px;
  }

  .trust-item {
    padding-inline: 14px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 40px, var(--container));
  }

  .section {
    padding: 58px 0;
  }

  .header-inner {
    min-height: 74px;
    gap: 12px;
  }

  .brand img {
    width: 56px;
    max-height: 56px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 74px;
    right: 0;
    bottom: 0;
    width: min(86vw, 350px);
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    padding: 22px 20px 40px;
    background: var(--white);
    box-shadow: -20px 20px 45px rgba(7, 26, 82, 0.14);
    transform: translateX(105%);
    transition: transform 220ms ease;
  }

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

  .main-nav a {
    padding: 15px 8px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .header-cta {
    min-height: 42px;
    margin-left: 0;
    padding: 9px 13px;
    font-size: 0.79rem;
  }

  .hero {
    background:
      linear-gradient(rgba(5, 21, 46, 0.82), rgba(5, 21, 46, 0.86)),
      url("assets/hero-pool.png") 62% center / cover no-repeat;
  }

  .hero-inner {
    display: block;
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 64px;
  }

  .hero-content {
    max-width: 650px;
  }

  .experience-badge {
    width: auto;
    min-height: auto;
    margin-top: 32px;
    padding: 17px 22px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 13px;
    border-width: 3px;
    border-radius: 16px;
  }

  .experience-badge strong {
    font-size: 2.5rem;
  }

  .experience-badge span {
    margin: 0;
    text-align: left;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

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

  .about-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 38px;
  }

  .about-content,
  .about-media {
    width: 100%;
  }

  .about-stat {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-list li {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 2px 18px;
    padding: 20px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 14px;
    text-align: left;
  }

  .process-list li::after {
    display: none;
  }

  .step-number {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .process-list h3 {
    margin: 3px 0 6px;
  }

  .area-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .area-intro {
    position: static;
  }

  .final-cta-inner {
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 28px;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .final-cta img {
    width: 104px;
  }

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

@media (max-width: 560px) {
  html {
    scroll-padding-top: 80px;
  }

  body {
    font-size: 16px;
  }

  h1 {
    font-size: clamp(2.25rem, 10vw, 2.75rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.15rem);
  }

  .section {
    padding: 52px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .header-cta {
    display: none;
  }

  .hero-inner {
    padding-top: 60px;
    padding-bottom: 56px;
  }

  .eyebrow-light {
    border-radius: 14px;
    font-size: 0.7rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .section-action .button,
  .area-intro .button,
  .final-cta .button {
    width: 100%;
  }

  .hero-benefits li {
    align-items: flex-start;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .trust-item {
    justify-content: flex-start;
    padding: 15px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

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

  .problem-card,
  .service-card,
  .differential-card {
    padding: 24px;
  }

  .about-media > img {
    aspect-ratio: 4 / 3;
  }

  .process-list li {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 2px 14px;
    padding: 18px;
  }

  .step-number {
    width: 48px;
    height: 48px;
  }

  .localities ul {
    grid-template-columns: 1fr;
  }

  .localities summary,
  .faq-list summary {
    padding-left: 18px;
    font-size: 0.98rem;
  }

  .faq-answer {
    padding-right: 20px;
    padding-left: 18px;
  }

  .final-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    text-align: center;
  }

  .final-cta img {
    width: 104px;
    margin-inline: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 44px;
  }

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

  .floating-whatsapp {
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, calc(env(safe-area-inset-bottom) + 12px));
    width: 54px;
    height: 54px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Site Fácil IA: proteção de integridade visual */
html,body{max-width:100%;overflow-x:clip}main>section{position:relative;isolation:isolate;clear:both}img{max-width:100%;height:auto}img[src*="assets/"]{object-fit:contain}
