:root {
  --blue-900: #063a6b;
  --blue-800: #074b88;
  --blue-700: #075fb8;
  --blue-600: #0b76da;
  --green: #19b957;
  --green-dark: #0a8f3d;
  --ink: #10243b;
  --muted: #53677a;
  --line: #dce7f2;
  --soft: #f4f8fc;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(6, 58, 107, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 92px;
  padding: 8px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 258px;
  height: 78px;
  overflow: visible;
  text-decoration: none;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 28px);
}

.site-nav a,
.login-link {
  position: relative;
  border: 0;
  background: transparent;
  color: #121b25;
  cursor: pointer;
  font-weight: 700;
  padding: 12px 2px;
  text-decoration: none;
}

.site-nav a.active::after,
.site-nav a:hover::after,
.login-link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue-600);
}

.header-actions,
.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  padding: 12px 18px;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.capacity-card button:hover,
.float-action:hover {
  transform: translateY(-1px);
}

.btn-whatsapp {
  background: linear-gradient(180deg, #24cf65, #12a947);
  box-shadow: 0 10px 22px rgba(25, 185, 87, 0.22);
}

.btn-call {
  background: linear-gradient(180deg, #1586ee, #075fb8);
  box-shadow: 0 10px 22px rgba(11, 118, 218, 0.22);
}

.btn-buy {
  background: linear-gradient(180deg, #ff9f2c, #f06d16);
  box-shadow: 0 10px 22px rgba(240, 109, 22, 0.2);
}

.btn-large {
  min-height: 56px;
  padding: 15px 26px;
  font-size: 1.08rem;
}

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

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--blue-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.desktop-title,
.desktop-copy {
  display: block;
}

.mobile-title,
.mobile-copy,
.hero-visual-controls,
.hero-mobile-chips {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 520px;
  padding: clamp(48px, 7vw, 82px) clamp(18px, 4vw, 64px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 40%, rgba(255, 255, 255, 0.34) 66%, rgba(255, 255, 255, 0) 100%),
    url("imagenes/hero-bogota-cilindros.png") center right / cover no-repeat;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(2.75rem, 5.5vw, 5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero p {
  max-width: 650px;
  margin: 20px 0 0;
  color: #213750;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.hero-actions {
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--blue-900);
  font-weight: 750;
  padding: 10px 16px;
  box-shadow: 0 8px 18px rgba(6, 58, 107, 0.08);
}

.hero-visual {
  display: none;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center bottom;
}

.hero-visual-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue-900);
  padding: 9px 13px;
  box-shadow: 0 10px 24px rgba(6, 58, 107, 0.14);
  backdrop-filter: blur(8px);
}

.hero-visual-label strong {
  font-size: 0.95rem;
}

.hero-visual-label span {
  color: #385a78;
  font-size: 0.86rem;
  font-weight: 800;
}

.section {
  padding: clamp(34px, 6vw, 68px) clamp(18px, 4vw, 64px);
}

.section-title {
  margin: 0 auto 24px;
  text-align: center;
}

.section-title h2,
.coverage-card h2,
.payments-card h2,
.cta-content h2 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(1.8rem, 3.5vw, 2.55rem);
  line-height: 1.15;
}

.capacity-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  max-width: 1210px;
  margin: 0 auto;
}

.capacity-card,
.mini-card,
.choice-card,
.coverage-card,
.payments-card,
.payment-grid article {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(6, 58, 107, 0.07);
}

.capacity-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 292px;
  padding: 22px 16px;
  text-align: center;
}

.capacity-card img {
  width: 100%;
  height: 130px;
  object-fit: contain;
}

.capacity-card h3 {
  margin: 14px 0 6px;
  color: var(--blue-900);
  font-size: 1.45rem;
  line-height: 1;
}

.capacity-card p {
  margin: 0;
  color: #243d58;
  line-height: 1.35;
}

.capacity-card button {
  margin-top: auto;
  min-height: 38px;
  border: 0;
  border-radius: 8px;
  background: var(--blue-700);
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  padding: 9px 13px;
  transition: transform 160ms ease;
}

.choice-section {
  padding-top: 20px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
}

.choice-card {
  display: grid;
  grid-template-columns: 136px 1fr;
  gap: 22px;
  align-items: center;
  padding: 24px;
}

.choice-green {
  background: linear-gradient(110deg, #e8faef, #ffffff);
}

.choice-blue {
  background: linear-gradient(110deg, #eaf4ff, #ffffff);
}

.choice-icon {
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line), 0 12px 24px rgba(6, 58, 107, 0.12);
}

.choice-icon img {
  width: 70px;
  height: 90px;
  object-fit: contain;
}

.choice-card h3 {
  margin: 0 0 8px;
  color: var(--blue-900);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.choice-card p {
  margin: 0 0 14px;
  color: #243d58;
  line-height: 1.45;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  max-width: 1240px;
  margin: 0 auto;
}

.mini-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 254px;
  padding: 14px;
  border-color: var(--service-border, var(--line));
  background: linear-gradient(180deg, var(--service-tint, #f8fbff), #ffffff 52%);
  text-align: left;
}

.service-home {
  --service-accent: #18a95b;
  --service-tint: #eefbf3;
  --service-border: #bdeccd;
}

.service-business {
  --service-accent: #0b70c9;
  --service-tint: #eef7ff;
  --service-border: #bfdcf5;
}

.service-industry {
  --service-accent: #6f55a5;
  --service-tint: #f6f2ff;
  --service-border: #dacff1;
}

.service-bbq {
  --service-accent: #d57918;
  --service-tint: #fff7eb;
  --service-border: #f2d4a8;
}

.service-forklift {
  --service-accent: #075fb8;
  --service-tint: #eef6ff;
  --service-border: #c3def7;
}

.service-card-head {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 86px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid var(--service-border, var(--line));
  border-radius: 50%;
  background: var(--white);
  color: var(--service-accent, var(--blue-700));
  box-shadow: 0 8px 18px rgba(6, 58, 107, 0.08);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.mini-card h3 {
  margin: 0 0 5px;
  color: var(--blue-900);
  font-size: 1.05rem;
  line-height: 1.1;
}

.mini-card p {
  margin: 0;
  color: #243d58;
  font-size: 0.86rem;
  line-height: 1.28;
}

.mini-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 14px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(6, 58, 107, 0.1), 0 8px 18px rgba(6, 58, 107, 0.08);
}

.why-section {
  padding-top: 16px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  max-width: 1240px;
  margin: 0 auto;
}

.why-grid article {
  position: relative;
  padding: 18px 14px;
  text-align: center;
}

.why-grid article + article {
  border-left: 1px solid #bfd0e2;
}

.why-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: #e8f3ff;
  color: var(--blue-700);
  box-shadow: inset 0 0 0 1px #c9def3;
}

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

.why-grid h3 {
  margin: 0 0 7px;
  color: var(--blue-900);
  font-size: 0.95rem;
  line-height: 1.15;
}

.why-grid p {
  margin: 0;
  color: #314b67;
  font-size: 0.94rem;
  line-height: 1.35;
}

.info-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  padding-top: 20px;
}

.coverage-card,
.payments-card {
  padding: 24px;
  background:
    linear-gradient(rgba(244, 248, 252, 0.9), rgba(244, 248, 252, 0.92)),
    radial-gradient(circle at 20% 20%, rgba(11, 118, 218, 0.18), transparent 26%);
}

.coverage-card h2,
.payments-card h2 {
  margin-bottom: 20px;
  font-size: 1.55rem;
  text-align: center;
}

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

.zone-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--blue-900);
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(6, 58, 107, 0.08);
}

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

.payment-grid article {
  display: flex;
  min-height: 142px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 16px 10px;
  text-align: center;
}

.payment-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  min-height: 50px;
  margin-bottom: 9px;
  border-radius: 10px;
  background: #ffffff;
  color: var(--blue-900);
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  padding: 7px 9px;
  box-shadow: inset 0 0 0 1px #e1ebf5;
}

.payment-logo {
  width: 100%;
  height: 38px;
  object-fit: contain;
}

.payment-logo-nequi {
  max-width: 92px;
}

.payment-logo-daviplata {
  max-width: 58px;
}

.payment-logo-pse {
  max-width: 86px;
}

.payment-logo-bancolombia {
  max-width: 104px;
}

.brand-cash {
  width: 64px;
  border: 2px solid #22a44f;
  background: #effbf3;
  color: #14863b;
}

.cash-note {
  display: grid;
  place-items: center;
  width: 42px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 4px;
  font-size: 1rem;
}

.brand-nequi {
  background: #ffffff;
}

.nequi-diamond {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, #29106f 0%, #6724d9 34%, #f0077f 68%, #ff7c00 100%);
  transform: rotate(45deg);
}

.brand-daviplata {
  background: #ffffff;
  font-size: 0.78rem;
}

.brand-daviplata span:first-child {
  letter-spacing: 0.04em;
}

.brand-pse {
  background: #ffffff;
}

.card-shape {
  width: 28px;
  height: 19px;
  border-radius: 4px;
  background: linear-gradient(180deg, #0b76da, #064d9b);
  box-shadow: inset 0 -7px 0 rgba(255, 255, 255, 0.22);
}

.brand-bancolombia {
  width: 110px;
  background: #ffffff;
  font-size: 0.72rem;
}

.bank-bars {
  display: grid;
  gap: 3px;
}

.bank-bars i {
  display: block;
  width: 22px;
  height: 5px;
  border-radius: 2px;
  background: #f2c300;
}

.bank-bars i:nth-child(2) {
  width: 18px;
  background: #193b7a;
}

.bank-bars i:nth-child(3) {
  width: 14px;
  background: #e21e2b;
}

.brand-transfer {
  gap: 6px;
  background: #eef9fb;
  color: #087b8a;
  font-size: 0.68rem;
}

.transfer-arrows {
  display: grid;
  place-items: center;
  width: 26px;
  height: 24px;
  border-radius: 8px;
  background: #dff5f8;
  font-size: 0.7rem;
}

.payment-grid strong {
  display: block;
  color: var(--blue-900);
  font-size: 1.05rem;
}

.payment-grid p {
  margin: 6px 0 0;
  color: #314b67;
  line-height: 1.35;
}

.cta-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 148px;
  margin: 0 clamp(18px, 4vw, 64px) 0;
  padding: 22px clamp(24px, 5vw, 60px);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(6, 58, 107, 0.98) 0%, rgba(8, 83, 151, 0.95) 50%, rgba(8, 83, 151, 0.34) 76%, rgba(8, 83, 151, 0.08) 100%),
    url("imagenes/banner-pedido-repartidor.png") center right / cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.cta-icon {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 4px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.cta-icon svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.cta-content h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
}

.cta-content p {
  max-width: 560px;
  margin: 10px 0 0;
  color: #e3f0ff;
  font-size: 1.1rem;
}

.cta-actions {
  flex-wrap: wrap;
  justify-content: center;
  max-width: 330px;
  row-gap: 8px;
}

.cta-actions span {
  color: #e5f4ff;
  font-weight: 800;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-weight: 800;
  padding: 8px 13px;
  text-decoration: none;
}

.site-footer {
  margin-top: 12px;
  background: linear-gradient(180deg, #07528e, #04345d);
  color: var(--white);
  padding: 28px clamp(18px, 4vw, 64px) 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-logo {
  width: 210px;
  height: 104px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--white);
}

.site-footer h3 {
  margin: 0 0 12px;
  color: var(--white);
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 8px 0;
  color: #dceeff;
  line-height: 1.4;
  text-decoration: none;
}

.copyright {
  max-width: 1180px;
  margin: 22px auto 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  text-align: center;
  font-size: 0.92rem;
}

.float-action {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
  padding: 13px 18px;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(25, 185, 87, 0.25);
  transition: transform 160ms ease;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 18px;
}

.modal.open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 22, 38, 0.62);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 500px);
  max-height: min(88vh, 760px);
  overflow: auto;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.3);
  padding: 24px;
}

.modal-dialog h2 {
  margin: 0 0 12px;
  color: var(--blue-900);
}

.modal-dialog form {
  display: grid;
  gap: 14px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--blue-900);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.selected-product {
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 800;
}

label {
  display: grid;
  gap: 7px;
  color: var(--blue-900);
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #c9d8e7;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  padding: 11px 12px;
}

input:focus,
select:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(11, 118, 218, 0.12);
}

.modal-submit {
  width: 100%;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 120;
  width: min(92vw, 380px);
  border-radius: 10px;
  background: var(--blue-900);
  color: var(--white);
  font-weight: 800;
  padding: 14px 16px;
  text-align: center;
  transform: translate(-50%, 140%);
  transition: transform 220ms ease;
}

.toast.show {
  transform: translate(-50%, 0);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .hero {
    min-height: 500px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 10px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a,
  .login-link {
    text-align: left;
  }

  .header-actions {
    display: none;
  }

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

  .why-grid article + article {
    border-left: 0;
  }

  .choice-grid,
  .info-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-strip {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    justify-content: initial;
    gap: 6px;
    min-height: 82px;
    padding: 6px 14px;
  }

  .brand-logo {
    width: 100%;
    height: 100%;
  }

  .brand {
    grid-column: 2;
    justify-self: center;
    width: 218px;
    height: 68px;
  }

  .menu-toggle {
    grid-column: 3;
    justify-self: end;
  }

  .hero {
    position: relative;
    display: block;
    min-height: 650px;
    margin: 0 12px 30px;
    padding: 0;
    border-radius: 0 0 18px 18px;
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(6, 58, 107, 0.14);
    overflow: hidden;
  }

  .hero::before {
    content: "";
    position: absolute;
    right: -12%;
    bottom: 192px;
    left: -20%;
    z-index: 3;
    height: 92px;
    border-radius: 50%;
    background: #ff5a13;
    transform: rotate(-3deg);
  }

  .hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    height: 235px;
    background: linear-gradient(180deg, #063a6b 0%, #021f4d 100%);
  }

  .hero-content {
    position: relative;
    z-index: 6;
    max-width: 258px;
    margin: 0;
    padding: 38px 0 0 26px;
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.35rem);
    line-height: 0.96;
  }

  .desktop-title,
  .desktop-copy {
    display: none;
  }

  .mobile-title,
  .mobile-copy {
    display: block;
  }

  .mobile-title span,
  .mobile-title em {
    display: block;
  }

  .mobile-title em {
    color: #ff5a13;
    font-style: normal;
  }

  .hero p {
    max-width: 252px;
    margin: 16px 0 0;
    color: #0b2344;
    font-size: 1.04rem;
    font-weight: 800;
    line-height: 1.36;
  }

  .hero-actions {
    display: none;
  }

  .hero-badges {
    display: none;
  }

  .btn-large {
    width: auto;
    min-height: 40px;
    padding: 9px 11px;
    font-size: 0.8rem;
    flex: 0 1 auto;
  }

  .hero-badges span {
    min-height: 34px;
    justify-content: center;
    padding: 7px 4px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(6px);
    font-size: 0.68rem;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
    box-shadow: 0 6px 14px rgba(6, 58, 107, 0.08);
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: block;
    width: 100%;
    max-width: none;
    min-height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .hero-visual::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: 450px;
    background:
      linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.82) 38%, rgba(255, 255, 255, 0.08) 76%, rgba(255, 255, 255, 0) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0) 72%, #ffffff 100%);
    pointer-events: none;
  }

  .hero-visual img {
    position: absolute;
    max-width: none;
    aspect-ratio: auto;
  }

  .hero-mobile-family-photo {
    top: 108px;
    right: -66px;
    z-index: 0;
    width: 96%;
    height: 345px;
    object-fit: cover;
    object-position: 48% center;
  }

  .hero-visual .hero-mobile-cylinder-photo {
    top: 348px;
    bottom: auto;
    left: 26px;
    z-index: 5;
    width: 148px;
    max-width: 148px;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 18px 16px rgba(0, 20, 54, 0.2));
  }

  .hero-visual-controls {
    position: absolute;
    right: 28px;
    bottom: 26px;
    left: 28px;
    z-index: 7;
    display: grid;
    gap: 14px;
    max-width: none;
  }

  .btn-compact {
    width: 100%;
    min-height: 56px;
    border-radius: 12px;
    padding: 13px 16px;
    font-size: 0.94rem;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.16);
  }

  .hero-visual-controls .btn-whatsapp {
    background: linear-gradient(180deg, #ff7026, #ff4e05);
  }

  .hero-visual-controls .btn-call {
    border: 2px solid rgba(255, 255, 255, 0.78);
    background: rgba(2, 25, 62, 0.5);
    box-shadow: none;
  }

  .hero-visual-label {
    display: none;
  }

  .hero-mobile-chips {
    display: none;
  }

  .hero-mobile-chips span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    border: 1px solid #d5e4f2;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--blue-900);
    font-size: 0.64rem;
    font-weight: 850;
    line-height: 1.1;
    padding: 6px 7px;
    text-align: center;
    box-shadow: 0 8px 14px rgba(6, 58, 107, 0.08);
  }

  .capacity-grid,
  .service-grid,
  .why-grid,
  .zone-grid,
  .payment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .capacity-card {
    min-height: 198px;
    padding: 12px 8px;
  }

  .capacity-card img {
    height: 82px;
  }

  .capacity-card h3 {
    margin-top: 8px;
    font-size: 1rem;
  }

  .capacity-card p {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .capacity-card button {
    min-height: 32px;
    padding: 7px 8px;
    font-size: 0.72rem;
  }

  .mini-card {
    min-height: 194px;
    padding: 8px 5px 5px;
  }

  .service-card-head {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .service-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto;
  }

  .service-icon svg {
    width: 25px;
    height: 25px;
  }

  .mini-card h3,
  .why-grid h3 {
    font-size: 0.78rem;
    line-height: 1.08;
  }

  .why-grid p,
  .payment-grid p {
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .mini-card p {
    font-size: 0.58rem;
    line-height: 1.15;
  }

  .mini-card-image {
    aspect-ratio: 4 / 3;
    margin-top: 8px;
    border-radius: 7px;
  }

  .why-grid article {
    padding: 12px 8px;
  }

  .why-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 8px;
  }

  .why-icon svg {
    width: 24px;
    height: 24px;
  }

  .zone-grid span {
    min-height: 40px;
    padding: 7px 4px;
    font-size: 0.72rem;
  }

  .payment-grid article {
    min-height: 106px;
    padding: 10px 5px;
  }

  .payment-brand {
    width: 80px;
    min-height: 34px;
    margin-bottom: 6px;
    border-radius: 8px;
    font-size: 0.6rem;
    padding: 5px 6px;
  }

  .payment-logo {
    height: 26px;
  }

  .payment-logo-nequi {
    max-width: 64px;
  }

  .payment-logo-daviplata {
    max-width: 54px;
  }

  .payment-logo-pse {
    max-width: 70px;
  }

  .payment-logo-bancolombia {
    max-width: 80px;
  }

  .brand-cash {
    width: 54px;
  }

  .cash-note {
    width: 34px;
    height: 20px;
    font-size: 0.78rem;
  }

  .nequi-diamond {
    width: 17px;
    height: 17px;
    border-radius: 5px;
  }

  .brand-bancolombia {
    width: 86px;
    gap: 4px;
    font-size: 0.55rem;
  }

  .bank-bars i {
    width: 17px;
    height: 4px;
  }

  .bank-bars i:nth-child(2) {
    width: 14px;
  }

  .bank-bars i:nth-child(3) {
    width: 11px;
  }

  .payment-grid strong {
    font-size: 0.78rem;
  }

  .payment-grid p {
    display: none;
  }

  .choice-card {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 8px;
    text-align: center;
  }

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

  .choice-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto;
  }

  .choice-icon img {
    width: 42px;
    height: 56px;
  }

  .choice-card h3 {
    margin-bottom: 5px;
    font-size: 0.95rem;
    line-height: 1.1;
  }

  .choice-card p {
    margin-bottom: 8px;
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .choice-card .btn {
    min-height: 34px;
    padding: 8px 7px;
    font-size: 0.68rem;
  }

  .cta-strip {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    min-height: 154px;
    margin-left: 14px;
    margin-right: 14px;
    padding: 16px;
    background: linear-gradient(100deg, #04477f 0%, #0868bb 58%, #0a85df 100%);
    box-shadow: 0 18px 34px rgba(6, 58, 107, 0.2);
  }

  .cta-icon {
    grid-row: 1 / span 2;
    width: 56px;
    height: 56px;
    border-width: 3px;
    align-self: start;
  }

  .cta-icon svg {
    width: 34px;
    height: 34px;
  }

  .cta-content h2 {
    font-size: 1.36rem;
    line-height: 1.05;
  }

  .cta-content p {
    margin-top: 6px;
    max-width: 250px;
    font-size: 0.76rem;
    line-height: 1.28;
  }

  .cta-actions {
    grid-column: 2;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    max-width: none;
    gap: 7px;
    margin-top: 8px;
  }

  .cta-actions .btn-large {
    min-height: 38px;
    padding: 8px 11px;
    font-size: 0.68rem;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.13);
  }

  .cta-actions span {
    display: none;
  }

  .cta-phone {
    min-height: 32px;
    padding: 6px 9px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    font-size: 0.66rem;
  }

  .footer-logo {
    width: 210px;
    height: 96px;
  }

  .float-action {
    display: none;
  }
}
