/* ═══════════════════════════════════════════
   UCM — Mobile-First Conversion CSS
   ═══════════════════════════════════════════ */

:root {
  --blue: #1e3f6e;
  --blue-mid: #2e5988;
  --blue-dark: #0f2438;
  --blue-light: #e8f0fa;
  --red: #c0232a;
  --red-dark: #961b20;
  --red-glow: rgba(192, 35, 42, 0.25);
  --gold: #ffd166;
  --gold-soft: rgba(255, 209, 102, 0.18);
  --cream: #fff6ea;
  --cream-soft: #fffaf3;
  --peach: #f8d8b4;
  --peach-soft: #fff0dd;
  --ink: #1a1a2e;
  --ink-mid: #334155;
  --ink-light: #64748b;
  --soft: #fff6ea;
  --white: #ffffff;
  --wa: #25d366;
  --wa-dark: #128c4e;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.08);
  --shadow: 0 14px 38px rgba(0,0,0,0.15);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.22);
  --container: 1140px;
  --font-body: 'Atkinson Hyperlegible', system-ui, sans-serif;
  --font-head: 'Atkinson Hyperlegible', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--ink);
  background: var(--cream-soft);
  line-height: 1.72;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 15px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 1.05rem;
  letter-spacing: 0.2px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-align: center;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

.btn-call { background: var(--red); color: #fff; }
.btn-call:hover { background: var(--red-dark); }

.btn-wa { background: var(--blue); color: #fff; }
.btn-wa:hover { background: var(--blue-dark); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue-light);
}
.btn-outline:hover { background: var(--blue-light); }

.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { background: var(--blue-light); }

.btn-full { width: 100%; }

.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn i { font-size: 18px; line-height: 1; flex-shrink: 0; }

/* Pulse animation for primary CTAs */
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 var(--red-glow); }
  70% { box-shadow: 0 0 0 12px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
.btn-pulse { animation: pulse-ring 2s infinite; }

@keyframes pulse-brand {
  0% { box-shadow: 0 0 0 0 rgba(30,63,110,0.35); }
  70% { box-shadow: 0 0 0 12px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
.btn-pulse-wa { animation: pulse-brand 2s infinite; }

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.35); }
  70% { box-shadow: 0 0 0 12px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

/* ── TOPBAR ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5eaf2;
  padding: 8px 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px;
}

.brand img { width: 180px; height: auto; }

.topbar-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar .btn { min-height: 48px; padding: 12px 18px; font-size: 0.96rem; }

/* ── HERO ── */
.hero {
  position: relative;
  isolation: isolate;
  background: linear-gradient(180deg, #fff 0%, var(--cream-soft) 100%);
  color: var(--ink);
  padding: 20px 0 0;
  overflow: visible;
}

.hero-shell {
  position: relative;
}

.hero-media {
  position: relative;
  border-radius: 0;
  box-shadow: 0 18px 44px rgba(15,36,56,0.12);
  overflow: hidden;
  background: #fffaf3;
}

.hero-media img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 36%;
  background: linear-gradient(180deg, rgba(255,250,243,0.96) 0%, rgba(255,250,243,0.72) 42%, rgba(255,250,243,0) 100%);
  pointer-events: none;
}

.hero-action-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 18px;
  align-items: end;
  width: min(1040px, calc(100% - 56px));
  margin: -52px auto 0;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.96);
  border: 1px solid #edf1f6;
  box-shadow: 0 20px 48px rgba(15,36,56,0.16);
  position: relative;
  z-index: 2;
}

.hero-intro h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.06;
  color: var(--blue);
  margin-bottom: 6px;
  text-wrap: balance;
}

.hero-intro p {
  color: var(--ink-mid);
  font-size: 0.98rem;
  line-height: 1.45;
  max-width: 500px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f6f9fe;
  border: 1px solid #dfe9f6;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--blue);
}
.hero-badge::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1.5s infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}

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

.hero-action-card {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #dfe7f2;
  color: var(--blue);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.28;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.hero-action-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #bfd0e6;
}

.hero-action-card i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--blue);
  color: #fff;
  font-size: 1.16rem;
}

.hero-action-wa i {
  background: #126b3b;
}

/* ── SECTION COMMON ── */
.sec { padding: 56px 0; }

.sec-header {
  text-align: center;
  margin-bottom: 32px;
}

.sec-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 10px;
}

.sec-header p {
  color: var(--ink-mid);
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.08rem;
}

.sec-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--red);
  margin-bottom: 8px;
}

/* ── SOCIAL PROOF COUNTER ── */
.social-proof { background: var(--cream); border-top: 1px solid #f0dcc5; border-bottom: 1px solid #f0dcc5; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}

.stat-item h3 {
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.stat-item p {
  font-size: 1rem;
  color: var(--ink-mid);
  margin-top: 4px;
  font-weight: 500;
}

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: step;
}

.step-card {
  background: #fff;
  border: 1px solid #f0dcc5;
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.step-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 1rem;
  color: var(--ink-mid);
}

/* ── PLAN CARDS ── */
.plans { background: #fffaf3; }

.plan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
}

.plan-card {
  border-radius: 28px;
  box-shadow: 0 16px 38px rgba(15, 36, 56, 0.12);
  padding: 42px 42px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.plan-card h3 {
  font-family: var(--font-head);
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 1;
  margin-bottom: 20px;
}

.plan-card-full {
  background: linear-gradient(135deg, #fff1df 0%, #f8d8b4 52%, #f1bd89 100%);
  color: var(--blue);
  border: 1px solid #efc49c;
}

.plan-card-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: start;
}

.plan-main {
  display: flex;
  flex-direction: column;
}

.plan-kicker {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.plan-card-full .plan-kicker {
  background: rgba(255,255,255,0.58);
  color: #7a4b00;
  border: 1px solid rgba(122,75,0,0.14);
}

.plan-price-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 26px;
}

.plan-currency,
.plan-period {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.1;
  padding-top: 14px;
}

.plan-price {
  font-family: var(--font-head);
  font-size: clamp(4rem, 9vw, 5.9rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.plan-desc {
  max-width: 16ch;
  font-size: clamp(2rem, 4.2vw, 3.05rem);
  line-height: 1.22;
  font-weight: 700;
}

.plan-side {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.plan-note {
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  padding-bottom: 18px;
  margin-bottom: 8px;
  border-bottom: 2px solid currentColor;
  opacity: 0.92;
}

.plan-features {
  list-style: none;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
}

.plan-features li {
  font-size: 1.16rem;
  line-height: 1.45;
  text-align: center;
  padding: 20px 10px;
  border-bottom: 1px solid rgba(122,75,0,0.18);
}

.plan-features li:last-child {
  border-bottom: 1px solid rgba(122,75,0,0.18);
}

.plan-cta {
  width: min(100%, 360px);
  margin: 0 auto;
  border-radius: 16px;
  font-size: 1.2rem;
  min-height: 64px;
  font-weight: 700;
}

.plan-card-full .plan-cta {
  background: var(--blue);
  color: #fff;
}

.plan-card-full .plan-cta:hover {
  background: var(--blue-dark);
}

/* ── RESPALDO ── */
.respaldo {
  position: relative;
  isolation: isolate;
  background: #fff6ea;
  color: #fff;
  overflow: hidden;
}
.respaldo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(255,250,243,0.86), rgba(255,246,234,0.78)),
    url("hero-new.png");
  background-position: center;
  background-size: cover;
  z-index: -2;
}
.respaldo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,246,234,0.84), rgba(255,255,255,0.56));
  z-index: -1;
}
.respaldo .sec-header h2 { color: var(--blue); }
.respaldo .sec-header p { color: var(--ink-mid); }
.respaldo .sec-label { color: var(--red); }

.res-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.res-item {
  border: 1px solid rgba(255,255,255,0.74);
  border-radius: var(--radius-sm);
  padding: 22px 18px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-sm);
}
.res-item h3 {
  font-family: var(--font-head);
  font-size: 1.22rem;
  color: var(--blue);
  margin-bottom: 8px;
}
.res-item p {
  font-size: 1rem;
  color: var(--ink-mid);
}

/* ── SERVICES ── */
.service-list {
  display: grid;
  gap: 12px;
}
.service-row {
  display: grid;
  gap: 12px;
}
.service-row-primary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.service-row-secondary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}
.service-item {
  border: 1px solid #f0dcc5;
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.02rem;
  text-align: center;
  transition: background 0.2s;
}
.service-item:hover { background: var(--peach-soft); }
.icon-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ── HOME CARE SERVICES ── */
.home-care {
  background: #fff;
}

.home-care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.home-care-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  border-radius: 14px;
  background: var(--cream-soft);
  border: 1px solid #f0dcc5;
  box-shadow: var(--shadow-sm);
}

.home-care-card i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--blue);
  color: #fff;
  font-size: 1.22rem;
  margin-bottom: 4px;
}

.home-care-card h3 {
  font-family: var(--font-head);
  color: var(--blue);
  font-size: 1.2rem;
  line-height: 1.22;
}

.home-care-card p {
  color: var(--ink-mid);
  font-size: 0.98rem;
  line-height: 1.55;
  margin-bottom: auto;
}

.home-care-card span {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--peach-soft);
  color: #7a4b00;
  font-size: 0.8rem;
  font-weight: 800;
}

.home-care-extra {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 22px;
  padding: 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: #fff;
}

.home-care-extra h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.home-care-extra p {
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
}

.home-care-extra .btn {
  white-space: nowrap;
  background: #fff;
  color: var(--blue);
}

/* ── EJECUTIVA SECTION ── */
.ejecutiva-sec { background: var(--cream); border-top: 1px solid #f0dcc5; }
.ejecutiva-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  border: 1px solid #f0dcc5;
  box-shadow: var(--shadow-sm);
}
.ejecutiva-avatar {
  width: 280px; height: 220px;
  border-radius: 14px;
  object-fit: cover;
  object-position: center 28%;
  border: 4px solid #fff;
  box-shadow: var(--shadow);
}
.ejecutiva-info h3 {
  font-family: var(--font-head);
  font-size: 1.55rem;
  color: var(--blue);
  margin-bottom: 4px;
}
.ejecutiva-info .role {
  color: var(--red);
  font-weight: 600;
  font-size: 0.98rem;
  margin-bottom: 10px;
}
.ejecutiva-info p {
  color: var(--ink-mid);
  font-size: 1.04rem;
  margin-bottom: 16px;
  max-width: 500px;
}
.ejecutiva-info .btn { max-width: 320px; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid #f0dcc5;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.testimonial-card .stars { color: #f59e0b; font-size: 1rem; margin-bottom: 10px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 1.04rem;
  color: var(--ink-mid);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 14px;
}
.testimonial-card cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink);
  display: block;
}
.testimonial-card cite span {
  font-weight: 400;
  color: var(--ink-light);
  display: block;
  font-size: 0.92rem;
}

/* ── FAQ ── */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.faq-item {
  border: 1px solid #f0dcc5;
  border-radius: var(--radius-sm);
  background: #fff;
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--blue);
  font-weight: 700;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-answer {
  padding: 0 22px 18px;
  color: var(--ink-mid);
  font-size: 1rem;
  line-height: 1.6;
}

/* ── HARD CTA ── */
.hard-cta {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
}
.hard-cta-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}
.hard-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #fff;
  text-align: left;
  line-height: 1.2;
  margin-bottom: 8px;
}
.hard-cta p { color: rgba(255,255,255,0.92); }
.hard-cta-buttons { display: grid; gap: 10px; }

/* ── FOOTER ── */
footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.88);
  padding: 32px 0 96px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}
.footer-copy { font-size: 0.88rem; line-height: 1.6; }
.footer-cta { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }

/* ── FLOATING WA ── */
.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 96px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--wa);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  border: 3px solid #fff;
  animation: pulse-wa 2s infinite;
  transition: transform 0.2s;
}
.floating-wa:hover { transform: scale(1.1); }
.floating-wa svg { width: 32px; height: 32px; fill: #fff; }
.floating-wa i { font-size: 34px; line-height: 1; color: #fff; }

/* ── MOBILE ACTION BAR ── */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid #f0dcc5;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 12px;
  z-index: 1001;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.1);
}
.mobile-bar .btn { min-height: 48px; font-size: 0.9rem; }

/* ── PROMO MODAL ── */
.promo-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.promo-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.promo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 36, 56, 0.58);
  backdrop-filter: blur(5px);
}

.promo-modal-card {
  position: relative;
  width: min(100%, 540px);
  border-radius: 24px;
  padding: 30px 28px 26px;
  color: #fff;
  background:
    linear-gradient(140deg, rgba(12,38,70,0.94) 0%, rgba(30,63,110,0.88) 54%, rgba(248,216,180,0.42) 100%),
    url("hero-new.png");
  background-size: cover;
  background-position: center;
  box-shadow: 0 28px 70px rgba(15,36,56,0.34);
  border: 1px solid rgba(255,255,255,0.26);
  overflow: hidden;
}

.promo-modal-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,246,234,0.5), transparent 70%);
  pointer-events: none;
}

.promo-modal-card > * {
  position: relative;
  z-index: 1;
}

.promo-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.promo-modal-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,246,234,0.18);
  color: #ffe0a3;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo-modal h2 {
  font-family: var(--font-head);
  font-size: clamp(1.55rem, 3.4vw, 2.25rem);
  line-height: 1.12;
  margin-bottom: 12px;
  max-width: 14ch;
}

.promo-modal p {
  color: rgba(255,255,255,0.9);
  font-size: 0.98rem;
  margin-bottom: 16px;
  max-width: 46ch;
}

.promo-modal-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.promo-modal-pills span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.24);
  font-size: 0.82rem;
  font-weight: 600;
}

.promo-modal-actions {
  display: grid;
  gap: 10px;
}

.promo-modal-actions .btn-wa {
  background: #176f43;
}

.promo-modal-actions .btn-wa:hover {
  background: #105a35;
}

.promo-modal-secondary {
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.28);
}

.promo-modal-secondary:hover {
  background: rgba(255,255,255,0.2);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE FIRST BREAKPOINTS
   ═══════════════════════════════════════════ */

@media (max-width: 1040px) {
  .hero-action-panel, .hard-cta-wrap { grid-template-columns: 1fr; }
  .hero-actions { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .res-grid, .steps-grid, .service-list, .testimonials-grid, .home-care-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .plan-card-shell { grid-template-columns: 1fr; gap: 28px; }
  .plan-desc { max-width: 18ch; }
  .ejecutiva-wrap { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .ejecutiva-info p { margin-left: auto; margin-right: auto; }
  .ejecutiva-info .btn { margin: 0 auto; }
  .hard-cta h2, .hard-cta p { text-align: center; }
  .home-care-extra { grid-template-columns: 1fr; text-align: center; }
  .home-care-extra .btn { justify-self: center; white-space: normal; }
}

@media (max-width: 760px) {
  .container { width: calc(100% - 24px); }

  .topbar-inner { justify-content: center; flex-wrap: wrap; }
  .brand img { width: 150px; }
  .topbar-ctas .btn-outline { display: none; }
  .topbar-ctas { width: 100%; }
  .topbar-ctas .btn-wa {
    width: 100%;
    max-width: 360px;
  }

  .hero {
    padding-top: 12px;
  }
  .hero-action-panel {
    width: calc(100% - 24px);
    margin-top: -26px;
    padding: 14px;
    border-radius: 16px;
  }
  .hero-badge {
    font-size: 0.76rem;
    margin-bottom: 10px;
  }
  .hero-intro h1 {
    font-size: 1.75rem;
    line-height: 1.02;
    margin-bottom: 8px;
  }
  .hero-intro p {
    font-size: 0.92rem;
    line-height: 1.4;
  }
  .hero-actions {
    grid-template-columns: 1fr;
  }
  .hero-action-card {
    min-height: 62px;
    padding: 12px;
    font-size: 0.92rem;
  }
  .hero-action-card i {
    width: 40px;
    height: 40px;
  }

  .plan-grid, .res-grid, .steps-grid, .service-list, .testimonials-grid, .stats-row, .home-care-grid {
    grid-template-columns: 1fr;
  }

  .service-row-primary,
  .service-row-secondary {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .plan-card {
    padding: 26px 18px 20px;
    border-radius: 24px;
    gap: 22px;
  }

  .plan-card h3 {
    font-size: 2.3rem;
    text-align: center;
  }

  .plan-kicker {
    align-self: center;
    text-align: center;
  }

  .plan-price-row {
    justify-content: center;
    gap: 10px;
  }

  .plan-currency,
  .plan-period {
    font-size: 1rem;
    padding-top: 10px;
  }

  .plan-price {
    font-size: 4.1rem;
  }

  .plan-desc {
    max-width: none;
    text-align: center;
    font-size: 1.9rem;
  }

  .plan-note {
    font-size: 1.12rem;
    padding-bottom: 14px;
  }

  .plan-features li {
    font-size: 1.02rem;
    padding: 16px 4px;
  }

  .plan-cta {
    width: 100%;
    min-height: 58px;
    font-size: 1.08rem;
  }

  .home-care-card {
    min-height: auto;
  }

  .sec { padding: 40px 0; }

  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-cta { justify-content: center; }

  .floating-wa { display: none; }
  .mobile-bar { display: grid; }
  .promo-modal { align-items: flex-end; padding: 14px 14px 88px; }
  .promo-modal-card { padding: 26px 20px 22px; border-radius: 22px; }
  .promo-modal h2 { max-width: none; }

  footer { padding-bottom: 100px; }

  .hard-cta-wrap { gap: 16px; }
}
