:root {
  --red: #d63a26;
  --red-dark: #b83222;
  --blue: #1f4479;
  --ink: #111827;
  --muted: #6b7280;
  --sand: #f5f0e8;
  --line: #eef0f4;
  --green: #25d366;
  --display: "Barlow Condensed", Arial, sans-serif;
  --sans: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
.hidden { display: none !important; }
.shell { width: min(1020px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(1010px, calc(100% - 32px)); }

.promo-bar {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: 46px;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  line-height: 1.25;
  text-align: center;
}
.promo-bar strong { font-weight: 900; }
.promo-bar span { opacity: .82; }
.promo-bar b {
  padding: 3px 8px;
  border-radius: 5px;
  background: rgba(0,0,0,.22);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
}

.topbar {
  position: sticky;
  top: 46px;
  z-index: 70;
  height: 54px;
  background: #fff;
  border-bottom: 1px solid #edf0f3;
  box-shadow: 0 1px 8px rgba(15,23,42,.05);
}
.nav { height: 54px; display: flex; align-items: center; justify-content: space-between; }
.logo img { width: 132px; height: auto; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 8px;
}
.quote-link {
  background: #1f4f86;
  color: #fff;
  border-radius: 8px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 800;
}
.quote-link:hover { background: #183f6b; }

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #101827;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1000ms ease, transform 5200ms linear;
}
.hero-bg.is-active { opacity: .52; transform: scale(1.08); }
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,16,28,.74), rgba(12,20,34,.56) 48%, rgba(13,21,35,.72)),
    linear-gradient(180deg, rgba(17,24,39,.24), rgba(17,24,39,.66));
}
.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 650px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 76px;
  padding: 38px 0 16px;
}
.hero-copy { color: #fff; }
.location-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  margin-bottom: 26px;
}
.hero h1 {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(64px, 6.4vw, 82px);
  line-height: .9;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 900;
}
.hero h1 em { color: var(--red); font-style: italic; }
.hero-copy p {
  width: min(450px, 100%);
  margin: 24px 0 22px;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.55;
}
.hero-copy p strong { color: #fff; }
.hero-checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.9);
  font-size: 14px;
  font-weight: 700;
}
.partner-logos {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 26px;
  opacity: .62;
  filter: brightness(0) invert(1);
}
.partner-logos img { width: 54px; height: 24px; object-fit: contain; }
.partner-logos img:nth-child(3) { width: 68px; height: 30px; }

.quote-card {
  justify-self: center;
  width: min(100%, 496px);
  background: #fff;
  border-top: 5px solid var(--red);
  border-radius: 16px;
  padding: 28px 26px 24px;
  box-shadow: 0 26px 60px rgba(0,0,0,.32);
}
.quote-card h2 {
  margin: 0 0 4px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.05;
  text-transform: none;
  font-weight: 900;
}
.quote-card form > p {
  margin: 0 0 14px;
  color: #8b95a3;
  font-size: 12px;
  font-weight: 700;
}
.quote-promo {
  margin: 0 0 14px;
  padding: 10px 13px;
  border: 1px solid #f0b8ae;
  border-left: 3px solid #f0b8ae;
  border-radius: 9px;
  background: #fff5f2;
}
.quote-promo strong {
  display: block;
  color: #8f332b;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 800;
}
.quote-promo strong span {
  color: #df3a2d;
  font-family: var(--display);
  font-size: 26px;
  line-height: .9;
  font-weight: 900;
  white-space: nowrap;
}
.quote-promo small {
  display: block;
  margin-top: 4px;
  color: #6b7280;
  font-size: 10.5px;
  line-height: 1.32;
  font-weight: 700;
}
.quote-card input, .quote-card select {
  width: 100%;
  height: 56px;
  margin-bottom: 12px;
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  outline: none;
  font-size: 14px;
  font-weight: 700;
}
.quote-card input::placeholder { color: #b5bdc9; }
.quote-card input:focus, .quote-card select:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(214,58,38,.12); }
.quote-card button {
  width: 100%;
  height: 62px;
  border: 0;
  border-radius: 12px;
  background: #df3a2d;
  color: #fff;
  cursor: pointer;
  text-transform: none;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 12px 25px rgba(214,58,38,.25);
}
.quote-card button:hover { background: #c92f24; }
.quote-card small {
  display: block;
  margin-top: 12px;
  color: #a8b0bc;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
}
.form-error { color: var(--red) !important; margin: -2px 0 10px !important; }
.form-success {
  text-align: center;
  padding: 32px 12px;
  color: var(--ink);
}
.form-success strong {
  display: block;
  font-family: var(--display);
  font-size: 34px;
  text-transform: uppercase;
}
.form-success span { display: block; color: var(--muted); line-height: 1.5; }

.stats-band { background: var(--blue); color: #fff; padding: 34px 0 36px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats-grid strong {
  display: block;
  font-family: var(--display);
  font-size: 42px;
  line-height: .9;
  font-weight: 900;
}
.stats-grid span { display: block; margin-top: 6px; color: rgba(255,255,255,.56); font-size: 12px; font-weight: 700; }

.benefits-section { padding: 58px 0 64px; background: #fff; }
.section-title { text-align: center; margin-bottom: 34px; }
.section-title p, .kicker {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.section-title h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 46px;
  line-height: .94;
  text-transform: uppercase;
  font-weight: 900;
}
.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 20px; }
.benefit-grid article {
  display: flex;
  gap: 22px;
  min-height: 112px;
  padding: 25px 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition: background .18s ease, border-color .18s ease;
}
.benefit-grid article:hover {
  background: #faf6ef;
  border-color: rgba(214,58,38,.34);
}
.benefit-grid span { width: 42px; flex: 0 0 42px; font-size: 32px; line-height: 1.2; text-align: center; }
.benefit-grid h3 { margin: 0 0 8px; font-size: 19px; line-height: 1.1; }
.benefit-grid p { margin: 0; color: #737b89; font-size: 14px; line-height: 1.55; }

.sand-section { background: var(--sand); padding: 58px 0 72px; }
.gallery-wrap { width: min(1016px, calc(100% - 32px)); }
.kicker { text-align: center; margin-bottom: 16px; }
.kicker.left { text-align: left; margin-bottom: 14px; }
.gallery-main {
  position: relative;
  height: 574px;
  border-radius: 13px;
  overflow: hidden;
  background: #ddd;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(0,0,0,.62);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}
.thumb-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 12px; }
.thumb-grid button {
  aspect-ratio: 1.42 / 1;
  padding: 0;
  border: 0;
  border-radius: 9px;
  overflow: hidden;
  background: transparent;
  opacity: .64;
  cursor: pointer;
}
.thumb-grid button.active { opacity: 1; outline: 3px solid var(--red); outline-offset: 2px; }
.thumb-grid img { width: 100%; height: 100%; object-fit: cover; }
.pricing-title { margin: 52px 0 24px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 28px 24px 24px;
  border: 1px solid #edf0f5;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15,23,42,.03);
}
.plan-card.featured {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 24px 42px rgba(31,68,121,.24);
  transform: translateY(-4px);
}
.popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
}
.plan-card small {
  color: #a7b0bd;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.featured small { color: rgba(255,255,255,.6); }
.plan-card h3 {
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: 52px;
  line-height: .88;
  font-weight: 900;
}
.plan-card p { margin: 6px 0 18px; color: #6f7886; font-size: 14px; }
.featured p { color: rgba(255,255,255,.7); }
.plan-card strong {
  display: block;
  margin-bottom: 20px;
  color: var(--red);
  font-family: var(--display);
  font-size: 29px;
  line-height: 1;
  font-weight: 900;
}
.featured strong { color: #fff; }
.plan-card strong span { color: #9aa4b2; font: 500 13px var(--sans); }
.featured strong span { color: rgba(255,255,255,.62); }
.plan-card ul { flex: 1; list-style: none; padding: 0; margin: 0 0 22px; display: grid; align-content: start; gap: 9px; }
.plan-card li { color: #677080; font-size: 13px; font-weight: 600; }
.featured li { color: rgba(255,255,255,.86); }
.plan-card li::before { content: "✓"; color: #22c55e; margin-right: 8px; font-weight: 900; }
.plan-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  border: 2px solid var(--blue);
  border-radius: 9px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}
.featured a { background: var(--red); color: #fff; border-color: var(--red); }

.modal-open { overflow: hidden; }
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
}
.quote-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 32, .68);
  backdrop-filter: blur(3px);
}
.quote-modal-card {
  position: relative;
  z-index: 1;
  width: min(500px, 100%);
  border-top: 5px solid var(--red);
  border-radius: 16px;
  background: #fff;
  padding: 28px 26px 24px;
  box-shadow: 0 28px 80px rgba(0,0,0,.34);
}
.quote-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #f3f4f6;
  color: #6b7280;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}
.quote-modal-card h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 900;
}
.quote-modal-card form > p:not(.kicker),
.quote-modal-card .form-success span {
  margin: 0 0 18px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}
.quote-modal-card input {
  width: 100%;
  height: 56px;
  margin-bottom: 12px;
  padding: 0 16px;
  color: var(--ink);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  outline: none;
  font-size: 14px;
  font-weight: 700;
}
.quote-modal-card input::placeholder { color: #b5bdc9; }
.quote-modal-card input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(214,58,38,.12); }
.quote-modal-card button[type="submit"] {
  width: 100%;
  height: 58px;
  border: 0;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 12px 25px rgba(214,58,38,.18);
}
.quote-modal-card button[type="submit"]:disabled { opacity: .72; cursor: wait; }
.quote-modal-card small {
  display: block;
  margin-top: 12px;
  color: #9aa4b2;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
}
.quote-modal-card .form-success {
  padding: 34px 10px 26px;
  text-align: center;
}

.contact-section { padding: 78px 0 82px; background: #fff; }
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 46px; align-items: center; }
.contact-copy h2 {
  margin: 0;
  max-width: 450px;
  font-family: var(--display);
  font-size: 48px;
  line-height: .96;
  font-weight: 900;
}
.contact-copy > p:not(.kicker) {
  margin: 18px 0 22px;
  max-width: 500px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.55;
}
.contact-card {
  border: 1px solid #e7eaf0;
  border-left: 5px solid var(--red);
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 16px 45px rgba(15,23,42,.06);
}
.contact-row {
  display: flex;
  gap: 18px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e9edf3;
}
.contact-row > span, .mini-contact span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #fff4f1;
  color: var(--red);
  flex: 0 0 38px;
}
.contact-row h3 { margin: 0 0 6px; font-size: 14px; }
.contact-row p { margin: 0 0 4px; color: #4b5563; font-size: 12px; line-height: 1.55; font-weight: 700; }
.contact-row small { color: var(--red); font-size: 11px; font-weight: 800; }
.contact-row small.green { display: inline-block; color: #15803d; background: #d9f7dd; border-radius: 999px; padding: 4px 9px; }
.mini-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.mini-contact div { display: grid; grid-template-columns: 38px 1fr; column-gap: 12px; align-items: center; }
.mini-contact span { grid-row: span 2; }
.mini-contact small { color: #9aa4b2; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.mini-contact b { color: var(--ink); font-size: 12px; line-height: 1.25; overflow-wrap: anywhere; }
.whatsapp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  margin-top: 18px;
  border-radius: 999px;
  background: #6fd462;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 12px 25px rgba(37,211,102,.22);
}
.map-frame {
  position: relative;
  min-height: 520px;
  border-radius: 14px;
  overflow: hidden;
  background: #dbe7d9;
}
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-card {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: 260px;
  padding: 22px;
  border-bottom: 4px solid var(--red);
  border-radius: 13px;
  background: #fff;
  text-align: center;
  box-shadow: 0 16px 42px rgba(15,23,42,.2);
}
.map-card h3 { margin: 0 0 6px; font-size: 18px; }
.map-card p { margin: 0 0 10px; color: #596273; font-size: 12px; font-weight: 700; }
.map-card a { color: var(--blue); font-size: 11px; font-weight: 900; }

.final-cta { background: var(--blue); color: #fff; padding: 62px 0 56px; text-align: center; }
.cta-shell { width: min(800px, calc(100% - 32px)); }
.final-cta p:first-child {
  margin: 0 0 22px;
  color: rgba(218,232,255,.78);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 14px;
  font-weight: 900;
}
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 4.25vw, 62px);
  line-height: 1.18;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0;
}
.headline-line { display: block; white-space: nowrap; }
.final-cta h2 em { color: var(--red); font-style: normal; }
.final-cta p:nth-of-type(2) {
  margin: 28px auto 30px;
  max-width: 720px;
  color: rgba(232,240,255,.86);
  font-size: 19px;
  line-height: 1.42;
  font-weight: 500;
}
.primary-wa, .secondary-form {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 710px;
  height: 64px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 900;
}
.primary-wa { gap: 16px; background: #27d464; color: #fff; box-shadow: 0 16px 32px rgba(17,24,39,.14); }
.primary-wa svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
  flex: 0 0 auto;
}
.secondary-form {
  margin-top: 22px;
  color: #fff;
  border: 2px solid rgba(202,220,252,.42);
  background: rgba(255,255,255,.015);
}
.cta-note {
  display: block;
  margin: 16px auto 0;
  max-width: 680px;
  color: rgba(218,232,255,.68);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}
.cta-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 62px;
  margin-top: 44px;
  color: rgba(218,232,255,.82);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
}
.cta-meta span { display: inline-flex; align-items: center; gap: 12px; }
.cta-meta svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-footer { background: #101827; color: rgba(255,255,255,.36); padding: 26px 0; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-grid img { width: 98px; opacity: .48; }
.footer-grid p { margin: 0; font-size: 11px; }
.footer-grid nav { display: flex; gap: 20px; font-size: 11px; }
.footer-grid a:hover { color: #fff; }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 90;
  width: 246px;
}
.whatsapp-bubble {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: 246px;
  padding: 15px 19px;
  border-radius: 13px 13px 0 13px;
  background: #fff;
  color: #344054;
  box-shadow: 0 20px 45px rgba(15,23,42,.18);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.whatsapp-bubble.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
}
.whatsapp-bubble p {
  margin: 0;
  font-size: 14px;
  line-height: 1.28;
  font-weight: 600;
}
.whatsapp-bubble-close {
  position: absolute;
  top: -10px;
  right: -10px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 999px;
  background: #c4ccd9;
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  font-weight: 300;
}
.whatsapp-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-left: auto;
  border-radius: 999px;
  background: #20d563;
  color: #fff;
  box-shadow: 0 18px 34px rgba(32,213,99,.34);
}
.whatsapp-button svg {
  width: 33px;
  height: 33px;
  fill: currentColor;
}
.whatsapp-pulse {
  position: absolute;
  top: -6px;
  right: -5px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(39, 211, 102, .24);
  animation: whatsappPulse 1.7s ease-out infinite;
}
.whatsapp-pulse::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: inherit;
  background: #1ecb5b;
}
@keyframes whatsappPulse {
  0% { transform: scale(.78); opacity: .95; }
  70% { transform: scale(1.18); opacity: .35; }
  100% { transform: scale(1.18); opacity: 0; }
}

@media (max-width: 760px) {
  .promo-bar { min-height: 72px; flex-direction: column; gap: 3px; padding: 8px 14px; font-size: 11px; }
  .promo-bar span { display: block; max-width: 330px; font-size: 10px; }
  .topbar { top: 72px; }
  .logo img { width: 116px; }
  .phone-link span { display: none; }
  .quote-link { padding: 8px 12px; }
  .hero, .hero-grid { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; padding: 46px 0 58px; }
  .hero h1 { font-size: 62px; }
  .quote-promo strong span { font-size: 25px; }
  .quote-card { padding: 22px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid, .pricing-grid, .contact-grid { grid-template-columns: 1fr; }
  .gallery-main { height: auto; aspect-ratio: 1 / 1.05; }
  .thumb-grid { gap: 8px; }
  .plan-card.featured { transform: none; }
  .contact-copy h2, .final-cta h2 { font-size: 40px; }
  .headline-line { white-space: normal; }
  .final-cta p:nth-of-type(2) { font-size: 17px; }
  .primary-wa, .secondary-form { height: 60px; font-size: 16px; border-radius: 12px; }
  .primary-wa svg { width: 22px; height: 22px; }
  .mini-contact, .cta-meta { grid-template-columns: 1fr; display: grid; gap: 14px; }
  .cta-meta { margin-top: 28px; font-size: 14px; justify-items: center; }
  .map-frame { min-height: 390px; }
  .footer-grid { flex-direction: column; text-align: center; }
  .whatsapp-float { right: 12px; bottom: 14px; width: min(220px, calc(100vw - 24px)); }
  .whatsapp-bubble {
    right: 0;
    bottom: 62px;
    width: min(220px, calc(100vw - 82px));
    padding: 13px 15px;
    border-radius: 12px 12px 0 12px;
  }
  .whatsapp-bubble p { font-size: 13px; line-height: 1.3; }
  .whatsapp-bubble-close { width: 24px; height: 24px; top: -9px; right: -9px; font-size: 21px; }
  .whatsapp-button { width: 50px; height: 50px; }
  .whatsapp-button svg { width: 29px; height: 29px; }
  .whatsapp-pulse { width: 23px; height: 23px; top: -6px; right: -5px; }
  .whatsapp-pulse::after { inset: 7px; }
}
