:root {
  --ink: #071d39;
  --ink-soft: #0c3158;
  --blue: #30359a;
  --cyan: #14aee0;
  --orange: #ff8a00;
  --yellow: #ffd21e;
  --lime: #d9f500;
  --paper: #f5f7f5;
  --white: #ffffff;
  --muted: #62758a;
  --line: rgba(7, 29, 57, 0.12);
  --shadow: 0 24px 70px rgba(7, 29, 57, 0.12);
  --display: "Archivo Black", sans-serif;
  --body: "Bricolage Grotesque", sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 26%, rgba(20, 174, 224, 0.09), transparent 28rem),
    linear-gradient(180deg, var(--paper), #fff 56%, #f8faf8);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section { padding: 112px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }

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

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

.utility-bar {
  position: relative;
  z-index: 50;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.utility-inner span::before,
.utility-inner a::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--orange);
  vertical-align: 2px;
}

.utility-inner a { color: var(--cyan); }

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid rgba(7, 29, 57, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 32px;
}

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

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 700;
}

.main-nav a { position: relative; }
.nav-central { display: none; }
.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 180ms ease;
}
.main-nav a:hover::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  color: var(--ink);
  background: #edf3f6;
}
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: currentColor; }

.button {
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--lime); box-shadow: 0 14px 34px rgba(217, 245, 0, 0.22); }
.button-primary:hover { box-shadow: 0 18px 44px rgba(217, 245, 0, 0.32); }
.button-outline { border-color: rgba(7, 29, 57, 0.4); background: transparent; }
.button-outline:hover { color: var(--white); background: var(--ink); }
.button-ghost { color: var(--white); border-color: rgba(255, 255, 255, 0.38); background: rgba(255, 255, 255, 0.05); }
.button-ghost:hover { background: rgba(255, 255, 255, 0.12); }
.button-dark { color: var(--white); background: var(--ink); }

.hero {
  position: relative;
  min-height: 690px;
  color: var(--white);
  background:
    radial-gradient(circle at 77% 38%, rgba(20, 174, 224, 0.26), transparent 21rem),
    radial-gradient(circle at 6% 83%, rgba(255, 138, 0, 0.17), transparent 27rem),
    linear-gradient(120deg, #061a33, #082847 60%, #063353);
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(20, 174, 224, 0.42);
  border-radius: 50%;
}
.hero-orbit-one { width: 620px; height: 620px; right: -230px; top: -260px; }
.hero-orbit-two { width: 420px; height: 420px; left: -260px; bottom: -250px; border-color: rgba(255, 138, 0, 0.42); }

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 630px;
  padding: 78px 0 108px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: 76px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow span { width: 26px; height: 3px; border-radius: 99px; background: currentColor; }
.eyebrow-light { color: var(--lime); }

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 6.2vw, 94px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.94;
  text-transform: uppercase;
}
.hero h1 em { color: var(--cyan); font-style: normal; }
.hero-lead { max-width: 590px; margin: 28px 0 0; color: #c7d5e2; font-size: 20px; line-height: 1.55; }
.hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-points { margin-top: 46px; display: flex; flex-wrap: wrap; gap: 24px; color: #aabed0; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.hero-points b { margin-right: 7px; color: var(--lime); }

.hero-visual { position: relative; min-height: 430px; display: grid; place-items: center; }
.speed-card {
  position: relative;
  z-index: 3;
  width: 360px;
  aspect-ratio: 1;
  padding: 56px 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(12, 69, 105, 0.84), rgba(5, 34, 61, 0.92));
  box-shadow: inset 0 0 70px rgba(20, 174, 224, 0.13), 0 30px 80px rgba(0, 0, 0, 0.22);
}
.speed-kicker { color: var(--lime); font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.speed-card strong { margin-top: 8px; font-family: var(--display); font-size: 96px; font-weight: 400; letter-spacing: -0.08em; line-height: 1; }
.speed-unit { font-family: var(--display); color: var(--cyan); font-size: 28px; letter-spacing: 0.08em; }
.speed-note { margin-top: 10px; color: #bcd0df; font-size: 13px; }
.signal-ring { position: absolute; border: 2px solid transparent; border-radius: 50%; }
.signal-ring-one { width: 430px; height: 430px; border-right-color: var(--cyan); border-bottom-color: rgba(20, 174, 224, 0.2); animation: orbit 14s linear infinite; }
.signal-ring-two { width: 490px; height: 490px; border-top-color: var(--lime); border-left-color: rgba(217, 245, 0, 0.12); animation: orbit 19s linear infinite reverse; }
.location-chip {
  position: absolute;
  z-index: 4;
  right: 6px;
  bottom: 30px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(4, 28, 50, 0.86);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  font-size: 14px;
  font-weight: 700;
}
.chip-icon { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; color: var(--ink); background: var(--cyan); font-size: 21px; font-weight: 800; }
.location-chip small { display: block; color: #8fa8bc; font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; }

.feature-ribbon {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  height: 58px;
  display: flex;
  align-items: center;
  background: var(--cyan);
  overflow: hidden;
}
.ribbon-track { min-width: max-content; display: flex; align-items: center; gap: 24px; color: var(--ink); animation: ribbon 28s linear infinite; font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.ribbon-track i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); }

.section-heading { margin-bottom: 48px; display: flex; align-items: end; justify-content: space-between; gap: 60px; }
.section-heading > div { max-width: 690px; }
.section-heading h2, .benefits-intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1.02;
  text-transform: uppercase;
}
.section-heading > p { max-width: 430px; margin: 0; color: var(--muted); font-size: 17px; }

.plan-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.plan-card {
  position: relative;
  min-height: 510px;
  padding: 34px 28px 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 46px rgba(7, 29, 57, 0.06);
  overflow: hidden;
}
.plan-card::before { content: ""; position: absolute; width: 180px; height: 180px; right: -95px; top: -95px; border: 34px solid rgba(20, 174, 224, 0.08); border-radius: 50%; }
.plan-card-featured { color: var(--white); border-color: var(--ink); background: var(--ink); transform: translateY(-12px); box-shadow: var(--shadow); }
.plan-card-featured::before { border-color: rgba(20, 174, 224, 0.22); }
.plan-badge, .combo-badge { align-self: flex-start; margin: -10px 0 18px; padding: 7px 11px; border-radius: 99px; color: var(--ink); background: var(--lime); font-size: 10px; font-weight: 900; letter-spacing: 0.09em; text-transform: uppercase; }
.plan-profile { margin: 0; color: var(--cyan); font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.plan-speed { margin-top: 12px; display: flex; align-items: baseline; gap: 8px; }
.plan-speed strong { font-family: var(--display); font-size: 62px; font-weight: 400; letter-spacing: -0.07em; line-height: 1; }
.plan-speed span { color: var(--muted); font-size: 17px; font-weight: 800; }
.plan-card-featured .plan-speed span { color: #aec1d1; }
.plan-price { margin: 30px 0 24px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; align-items: baseline; gap: 5px; }
.plan-card-featured .plan-price { border-color: rgba(255, 255, 255, 0.14); }
.plan-price small { color: var(--orange); font-size: 13px; font-weight: 900; }
.plan-price strong { font-family: var(--display); font-size: 34px; font-weight: 400; letter-spacing: -0.04em; }
.plan-price span { color: var(--muted); font-size: 12px; }
.plan-card-featured .plan-price span { color: #aec1d1; }
.plan-benefits { margin: 0 0 28px; padding: 0; display: grid; gap: 9px; list-style: none; color: var(--muted); font-size: 14px; }
.plan-card-featured .plan-benefits { color: #c7d3de; }
.plan-benefits span { margin-right: 8px; color: var(--cyan); font-weight: 900; }
.plan-card .button { width: 100%; margin-top: auto; }
.terms-strip { margin-top: 38px; padding: 20px 28px; border: 1px solid var(--line); border-radius: 18px; display: flex; justify-content: center; gap: 52px; background: rgba(255, 255, 255, 0.62); color: var(--muted); font-size: 14px; }
.terms-strip b { color: var(--ink); }

.benefits { color: var(--white); background: var(--ink); }
.benefits-layout { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 80px; align-items: start; }
.benefits-intro { position: sticky; top: 140px; }
.benefits-intro p:not(.eyebrow) { margin: 24px 0; color: #aec1d1; font-size: 17px; }
.text-link { color: var(--lime); font-size: 13px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; }
.text-link span { display: inline-block; margin-left: 8px; transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(5px); }
.benefit-grid { display: grid; gap: 16px; }
.benefit-card { position: relative; min-height: 240px; padding: 30px 34px; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 24px; background: rgba(255, 255, 255, 0.045); overflow: hidden; }
.benefit-card-accent { color: var(--ink); border-color: var(--cyan); background: var(--cyan); }
.benefit-index { position: absolute; right: 24px; top: 18px; color: rgba(255, 255, 255, 0.2); font-family: var(--display); font-size: 64px; }
.benefit-card-accent .benefit-index { color: rgba(7, 29, 57, 0.15); }
.benefit-icon { width: 54px; height: 54px; margin-bottom: 28px; border-radius: 15px; display: grid; place-items: center; color: var(--ink); background: var(--lime); }
.benefit-card-accent .benefit-icon { color: var(--white); background: var(--ink); }
.benefit-icon svg { width: 30px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.benefit-card h3 { margin: 0 0 8px; font-size: 24px; letter-spacing: -0.03em; }
.benefit-card p { max-width: 560px; margin: 0; color: #aec1d1; }
.benefit-card-accent p { color: rgba(7, 29, 57, 0.78); }

.combos { position: relative; color: var(--white); background: linear-gradient(135deg, #213084, #0f4580 62%, #087ba3); overflow: hidden; }
.combos::before { content: ""; position: absolute; width: 600px; height: 600px; right: -280px; top: -300px; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.03), 0 0 0 130px rgba(255, 255, 255, 0.025); }
.section-heading-light { position: relative; }
.section-heading-light > p { color: #c2d3e2; }
.combo-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.combo-card { min-height: 420px; padding: 34px; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 28px; display: flex; flex-direction: column; background: rgba(5, 24, 48, 0.26); backdrop-filter: blur(12px); }
.combo-card-featured { color: var(--ink); border-color: var(--white); background: var(--white); transform: translateY(-10px); box-shadow: 0 32px 70px rgba(5, 24, 48, 0.25); }
.combo-name { margin: 0; color: var(--cyan); font-size: 12px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.combo-card h3 { margin: 12px 0 26px; font-family: var(--display); font-size: 46px; font-weight: 400; letter-spacing: -0.05em; }
.combo-features { display: grid; gap: 10px; color: #d6e3ed; }
.combo-features span { padding: 12px 14px; border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 12px; }
.combo-card-featured .combo-features { color: var(--ink-soft); }
.combo-card-featured .combo-features span { border-color: var(--line); background: #f4f8fa; }
.combo-price { margin: 26px 0; display: flex; align-items: baseline; gap: 5px; }
.combo-price small { color: var(--orange); font-weight: 900; }
.combo-price strong { font-family: var(--display); font-size: 38px; font-weight: 400; }
.combo-price span { color: #c2d3e2; font-size: 12px; }
.combo-card-featured .combo-price span { color: var(--muted); }
.combo-card .button { width: 100%; margin-top: auto; }

.how { background: var(--white); }
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { position: relative; min-height: 220px; padding: 34px; border-top: 4px solid var(--ink); background: #f4f7f8; }
.step:nth-child(2) { border-color: var(--orange); }
.step:nth-child(3) { border-color: var(--cyan); }
.step > span { color: var(--cyan); font-family: var(--display); font-size: 13px; }
.step h3 { margin: 38px 0 7px; font-size: 28px; letter-spacing: -0.04em; }
.step p { margin: 0; color: var(--muted); }

.service { padding-top: 0; background: var(--white); }
.service-card { position: relative; padding: 60px; border-radius: 32px; display: flex; align-items: center; justify-content: space-between; gap: 50px; color: var(--white); background: var(--ink); overflow: hidden; }
.service-card::after { content: ""; position: absolute; width: 420px; height: 420px; right: -190px; bottom: -280px; border: 50px solid rgba(20, 174, 224, 0.16); border-radius: 50%; }
.service-card > * { position: relative; z-index: 1; }
.service-card h2 { max-width: 690px; margin: 0; font-family: var(--display); font-size: clamp(34px, 4vw, 56px); font-weight: 400; letter-spacing: -0.06em; line-height: 1.03; text-transform: uppercase; }
.service-card p:not(.eyebrow) { margin: 16px 0 0; color: #aec1d1; }
.service-actions { min-width: 260px; display: grid; gap: 12px; }

.site-footer { padding: 70px 0 24px; color: #b3c3d1; background: #041427; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 0.7fr); gap: 50px; }
.footer-brand img { width: 170px; padding: 10px; border-radius: 12px; background: var(--white); }
.footer-brand p { max-width: 330px; }
.footer-grid h3 { margin: 0 0 18px; color: var(--white); font-size: 14px; text-transform: uppercase; }
.footer-grid a { display: block; margin: 8px 0; }
.footer-grid a:hover { color: var(--cyan); }
.footer-grid p { margin-top: 0; }
.footer-bottom { margin-top: 54px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.1); display: flex; justify-content: space-between; gap: 20px; font-size: 12px; }

.whatsapp-float { position: fixed; z-index: 60; right: 22px; bottom: 22px; width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; color: var(--ink); background: var(--lime); box-shadow: 0 18px 44px rgba(7, 29, 57, 0.25); transition: transform 180ms ease; }
.whatsapp-float:hover { transform: translateY(-4px) rotate(-2deg); }
.whatsapp-float svg { width: 31px; fill: currentColor; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 650ms ease, transform 650ms ease; transition-delay: var(--delay, 0ms); }
.reveal-delay-1 { --delay: 90ms; }
.reveal-delay-2 { --delay: 180ms; }
.reveal-delay-3 { --delay: 270ms; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes ribbon { to { transform: translateX(-42%); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1040px) {
  .header-inner { grid-template-columns: 170px 1fr auto; gap: 18px; }
  .main-nav { gap: 18px; }
  .header-cta { padding-inline: 17px; }
  .hero-inner { grid-template-columns: 1fr 390px; gap: 30px; }
  .plan-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-card-featured { transform: none; }
  .benefits-layout { grid-template-columns: 1fr; }
  .benefits-intro { position: static; }
}

@media (max-width: 820px) {
  .utility-inner span:nth-child(2) { display: none; }
  .header-inner { min-height: 76px; grid-template-columns: 1fr auto; }
  .brand img { height: 52px; }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .main-nav {
    position: fixed;
    top: 110px;
    right: 16px;
    left: 16px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 20px;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav a { padding: 7px 0; }
  .main-nav .nav-central {
    margin-top: 8px;
    padding: 12px 16px;
    border: 1px solid var(--ink);
    border-radius: 12px;
    display: block;
    text-align: center;
  }
  .main-nav .nav-central::after { display: none; }
  .hero-inner { padding-top: 64px; grid-template-columns: 1fr; }
  .hero-visual { min-height: 390px; }
  .speed-card { width: 310px; }
  .signal-ring-one { width: 365px; height: 365px; }
  .signal-ring-two { width: 410px; height: 410px; }
  .section { padding: 84px 0; }
  .section-heading { align-items: start; flex-direction: column; gap: 20px; }
  .combo-grid { grid-template-columns: 1fr; }
  .combo-card-featured { transform: none; }
  .step-grid { grid-template-columns: 1fr; }
  .service-card { padding: 46px 34px; align-items: stretch; flex-direction: column; }
  .service-actions { min-width: 0; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .shell { width: min(100% - 28px, 1180px); }
  .utility-inner { min-height: 32px; justify-content: center; font-size: 10px; }
  .utility-inner span { display: none; }
  .hero { min-height: 0; }
  .hero-inner { min-height: 0; padding: 58px 0 100px; }
  .hero h1 { font-size: clamp(45px, 15vw, 68px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { display: grid; }
  .hero-points { display: grid; gap: 9px; }
  .hero-visual { min-height: 330px; }
  .speed-card { width: 250px; }
  .speed-card strong { font-size: 72px; }
  .signal-ring-one { width: 290px; height: 290px; }
  .signal-ring-two { width: 330px; height: 330px; }
  .location-chip { right: 0; bottom: 8px; }
  .feature-ribbon { height: 50px; }
  .section { padding: 70px 0; }
  .section-heading h2, .benefits-intro h2 { font-size: 39px; }
  .plan-grid { grid-template-columns: 1fr; }
  .plan-card { min-height: 0; }
  .terms-strip { align-items: stretch; flex-direction: column; gap: 8px; }
  .benefit-card { padding: 28px 24px; }
  .combo-card { min-height: 390px; padding: 28px; }
  .service-card { margin-inline: 14px; width: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: start; flex-direction: column; }
  .whatsapp-float { width: 54px; height: 54px; right: 15px; bottom: 15px; }
}
