:root {
  --black: #111111;
  --black-soft: #1d1d1b;
  --ink: #20201e;
  --muted: #696861;
  --paper: #f7f6f2;
  --white: #ffffff;
  --line: #dedcd3;
  --panel: #ebe9e2;
  --gold: #f7b80f;
  --gold-dark: #c98500;
  --green: #21c965;
  --radius-lg: 30px;
  --radius-md: 20px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 18px;
  color: var(--black);
  background: var(--gold);
  border-radius: 8px;
  font-weight: 800;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-shell {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 78px;
  padding: 9px clamp(24px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.96);
}

.brand {
  display: block;
}

.brand img {
  width: 188px;
  height: 58px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 34px);
  font-size: 0.86rem;
  font-weight: 750;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 10px 16px;
  color: var(--white);
  background: var(--black);
  border-radius: 12px;
  line-height: 1.1;
}

.header-phone span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-phone strong {
  margin-top: 4px;
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--black);
}

.hero {
  position: relative;
  display: flex;
  width: 100%;
  height: calc(100svh - 78px);
  min-height: 620px;
  max-height: 820px;
  margin: 0;
  overflow: hidden;
  color: var(--white);
  background-image: url("assets/hero-fiorino-ponte.webp");
  background-position: center;
  background-size: cover;
  border-radius: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 46%, rgba(0, 0, 0, 0.1) 78%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(690px, 66%);
  padding: clamp(42px, 6vh, 66px) clamp(34px, 5vw, 72px) 128px;
}

.hero-eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(33, 201, 101, 0.16);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.2rem, 5.4vw, 5.6rem);
  line-height: 0.91;
  letter-spacing: -0.065em;
}

.hero h1 span {
  display: block;
  color: var(--gold);
}

.hero-copy {
  max-width: 550px;
  margin: 18px 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
}

.city-list li {
  padding: 8px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.button:hover,
.button:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.button-call {
  color: var(--black);
  background: linear-gradient(135deg, #ffd75a, var(--gold));
  box-shadow: 0 10px 28px rgba(247, 184, 15, 0.22);
}

.button-whatsapp {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 10px 28px rgba(33, 201, 101, 0.2);
}

.hero-proof {
  position: absolute;
  right: 32px;
  bottom: 18px;
  left: 32px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 590px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  backdrop-filter: blur(16px);
}

.hero-proof div {
  display: flex;
  flex-direction: column;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.38);
}

.hero-proof strong {
  color: var(--gold);
  font-size: 1.15rem;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
}

.quick-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 14px clamp(14px, 3vw, 42px) 0;
}

.quick-services a {
  position: relative;
  min-height: 160px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.quick-services img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.quick-services a::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent 72%);
}

.quick-services span {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  z-index: 2;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 850;
}

.quick-services a:hover img {
  transform: scale(1.04);
}

.section-pad {
  padding: 110px clamp(28px, 6vw, 78px);
}

.section-heading {
  margin-bottom: 54px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4.6vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.section-heading > p,
.split-heading > p {
  color: var(--muted);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: end;
  gap: 70px;
}

.split-heading > p {
  max-width: 470px;
  margin: 0 0 6px;
}

.centered-heading {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered-heading .section-kicker {
  justify-content: center;
}

.centered-heading > p:last-child {
  margin: 18px auto 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.stat-grid article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
  padding: 24px;
  background: #e9e7df;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.stat-grid article:nth-child(3) {
  background: var(--white);
}

.stat-grid .stat-featured {
  color: var(--white);
  background: var(--black);
}

.stat-grid strong {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.stat-grid .stat-featured strong {
  color: var(--gold);
}

.stat-grid span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.stat-grid .stat-featured span {
  color: rgba(255, 255, 255, 0.68);
}

.photo-collage {
  position: relative;
  min-height: 420px;
}

.photo-collage img {
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
}

.collage-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 74%;
  height: 320px;
}

.collage-small {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52%;
  height: 235px;
  border: 8px solid var(--paper);
}

.collage-badge {
  position: absolute;
  top: 225px;
  left: 47%;
  display: grid;
  width: 108px;
  height: 108px;
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  background: var(--gold);
  border: 8px solid var(--paper);
  border-radius: 50%;
  place-items: center;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.services {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.service-card {
  position: relative;
  min-height: 190px;
  padding: 28px 30px 26px 88px;
  background: #eeece6;
  border: 1px solid #e5e2d9;
  border-radius: 18px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.service-card-featured {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.service-number {
  position: absolute;
  top: 29px;
  left: 28px;
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--black);
  background: var(--gold);
  border-radius: 11px;
  font-size: 0.74rem;
  font-weight: 950;
  place-items: center;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.service-card p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.service-card-featured p {
  color: rgba(255, 255, 255, 0.67);
}

.section-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 2px solid var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.process {
  color: var(--white);
  background: var(--black);
}

.process .split-heading > p {
  color: rgba(255, 255, 255, 0.62);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  min-height: 255px;
  padding: 24px;
  background: #1b1b19;
  border: 1px solid #32322f;
  border-radius: 18px;
}

.process-list li > span {
  display: inline-block;
  margin-bottom: 60px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.process-list h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.gallery-grid figure {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  background: var(--black);
  border-radius: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-grid figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 60%);
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.gallery-grid figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
}

.gallery-grid figcaption strong {
  font-size: 1.15rem;
}

.gallery-grid figcaption span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
}

.service-area {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.78)),
    url("assets/atendimento-caminhoes-noite.webp") center / cover;
}

.area-copy h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.area-copy > p:not(.section-kicker) {
  max-width: 470px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.65);
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: start;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.area-list li {
  padding: 15px 17px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  font-size: 0.84rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.faq {
  background: var(--white);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 56px 24px 0;
  cursor: pointer;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  display: grid;
  width: 34px;
  height: 34px;
  content: "+";
  color: var(--black);
  background: var(--gold);
  border-radius: 50%;
  place-items: center;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-list details p {
  max-width: 800px;
  padding: 0 56px 24px 0;
  margin: 0;
  color: var(--muted);
}

.final-cta {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 34px;
  margin: 14px;
  padding: 54px;
  background: #e7e4dc;
  border-radius: 22px;
}

.final-cta > img {
  width: 140px;
  max-height: 170px;
  object-fit: contain;
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.final-cta p:not(.section-kicker) {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--muted);
}

.cta-actions {
  flex-direction: column;
}

.site-footer {
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 30px 28px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--black);
  font-size: 0.76rem;
}

.footer-brand img {
  width: 180px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.8));
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  text-align: right;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  padding: 12px 18px;
  color: var(--white);
  background: var(--green);
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 14px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  line-height: 1.1;
  transition: transform 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
}

.floating-whatsapp span {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.floating-whatsapp strong {
  margin-top: 4px;
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 180px 1fr auto;
    gap: 18px;
  }

  .main-nav {
    gap: 16px;
    font-size: 0.78rem;
  }

  .header-phone span {
    display: none;
  }

  .hero-content {
    width: 72%;
    padding-left: 40px;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 8vw, 5.8rem);
  }

  .section-pad {
    padding: 90px 42px;
  }

  .final-cta {
    grid-template-columns: 120px 1fr;
  }

  .final-cta > img {
    grid-row: span 2;
    width: 110px;
  }

  .cta-actions {
    grid-column: 2;
    flex-direction: row;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    min-height: 76px;
    padding: 10px 18px;
  }

  .brand img {
    width: 156px;
    height: 52px;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
    grid-row: 1;
  }

  .header-phone {
    grid-column: 2;
    grid-row: 1;
    padding: 11px 13px;
  }

  .header-phone strong {
    font-size: 0.76rem;
  }

  .main-nav {
    position: absolute;
    top: calc(100% - 4px);
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 10px;
  }

  .hero {
    height: calc(100svh - 76px);
    min-height: 620px;
    max-height: 780px;
    margin: 0;
    background-position: 62% center;
    border-radius: 0;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.66) 70%, rgba(0, 0, 0, 0.24)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.86), transparent 48%);
  }

  .hero-content {
    width: 100%;
    padding: 42px 26px 145px;
  }

  .hero h1 {
    max-width: 590px;
    font-size: clamp(2.9rem, 10vw, 5rem);
  }

  .hero-copy {
    max-width: 500px;
  }

  .hero-proof {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .quick-services {
    grid-template-columns: repeat(2, 1fr);
    padding: 8px;
  }

  .split-heading,
  .trust-grid,
  .service-area {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 24px;
  }

  .trust-grid {
    gap: 38px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    display: grid;
    grid-template-columns: 60px 1fr;
    min-height: 0;
  }

  .process-list li > span {
    margin: 4px 0 0;
  }

  .service-area {
    gap: 42px;
  }

  .final-cta {
    grid-template-columns: 100px 1fr;
    padding: 40px 32px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer > p:first-of-type {
    display: none;
  }
}

@media (max-width: 580px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-phone {
    display: none;
  }

  .menu-toggle {
    grid-column: 2;
  }

  .hero {
    height: calc(100svh - 76px);
    min-height: 590px;
    max-height: none;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 26px 22px 30px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
    letter-spacing: -0.055em;
  }

  .hero-copy {
    margin: 14px 0 12px;
    font-size: 0.92rem;
  }

  .city-list {
    gap: 6px;
    margin-bottom: 16px;
  }

  .city-list li {
    padding: 6px 9px;
    font-size: 0.66rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .hero-actions .button {
    min-height: 48px;
    padding: 11px 18px;
  }

  .hero-proof {
    display: none;
  }

  .section-pad {
    padding: 72px 22px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .quick-services a {
    min-height: 130px;
  }

  .stat-grid,
  .service-grid,
  .gallery-grid,
  .area-list {
    grid-template-columns: 1fr;
  }

  .stat-grid article {
    min-height: 125px;
  }

  .photo-collage {
    min-height: 360px;
  }

  .collage-main {
    width: 88%;
    height: 275px;
  }

  .collage-small {
    width: 58%;
    height: 190px;
  }

  .collage-badge {
    top: 208px;
    left: 44%;
    width: 94px;
    height: 94px;
  }

  .service-card {
    padding: 78px 24px 26px;
  }

  .gallery-grid figure,
  .gallery-grid img {
    min-height: 280px;
  }

  .gallery-grid figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    margin: 8px;
    padding: 38px 22px;
  }

  .final-cta > img {
    display: none;
  }

  .cta-actions {
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    margin: 0 auto;
  }

  .site-footer p:last-child {
    text-align: center;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    padding: 11px 14px;
  }
}

/*
 * Keep the first fold usable on wide screens with a short viewport
 * (common on laptops and browsers with several toolbars visible).
 */
@media (min-width: 581px) and (max-height: 760px) {
  .site-header {
    min-height: 64px;
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .brand img {
    height: 50px;
  }

  .hero {
    height: calc(100svh - 64px);
    min-height: 560px;
    max-height: none;
  }

  .hero-content {
    padding-top: 22px;
    padding-bottom: 92px;
  }

  .hero-eyebrow {
    margin-bottom: 10px;
    font-size: 0.68rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 4.7vw, 4.6rem);
    line-height: 0.9;
  }

  .hero-copy {
    margin: 12px 0 10px;
    font-size: 0.92rem;
  }

  .city-list {
    gap: 6px;
    margin-bottom: 12px;
  }

  .city-list li {
    padding: 6px 10px;
    font-size: 0.68rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button {
    min-height: 46px;
    padding: 10px 18px;
    font-size: 0.74rem;
  }

  .hero-proof {
    bottom: 14px;
  }

  .hero-proof div {
    padding: 10px 16px;
  }

  .hero-proof strong {
    font-size: 1rem;
  }

  .hero-proof span {
    font-size: 0.66rem;
  }
}

@media (min-width: 581px) and (max-width: 820px) and (max-height: 760px) {
  .hero-content {
    width: 100%;
    padding-right: 26px;
    padding-left: 26px;
  }

  .hero h1 {
    max-width: 560px;
    font-size: clamp(3rem, 8vw, 4rem);
  }
}
