:root {
  --bg: #ffffff;
  --bg-alt: #f4f4f2;
  --ink: #16171a;
  --muted: #5d6068;
  --line: #e3e3df;
  --accent: #FF6B22;
  --eyebrow: #e8540c;
  --accent-ink: #ffffff;
  --accent-dark: #e8540c;
  --warn: #ffc53d;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .08);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --eyebrow: #FF6B22;
    --bg: #111214;
    --bg-alt: #1a1b1e;
    --ink: #f2f2f0;
    --muted: #a3a6ad;
    --line: #2b2d31;
    --shadow: 0 10px 30px rgba(0, 0, 0, .35);
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.05;
  margin: 0 0 .5em;
  letter-spacing: .2px;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 800; text-transform: uppercase; }
h2 { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 700; }
h3 { font-size: 1.5rem; font-weight: 700; }
p { margin: 0 0 1em; }

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 780px; }
.muted { color: var(--muted); }
.accent { color: var(--accent); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-weight: 600; text-decoration: none; border-radius: 999px;
  padding: .8em 1.4em; border: 2px solid transparent; cursor: pointer;
  font-size: 1rem; font-family: inherit;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover { background: var(--accent-dark); }
.btn--ghost { border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--light { background: #fff; color: #16171a; }
.cta-band .btn--light { background: #25d366; color: #fff; }
.btn--sm { padding: .5em 1.1em; font-size: .92rem; }
.btn--lg { padding: 1em 1.7em; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--accent);
  color: #fff;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 104px; }
.logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.logo__img { height: 84px; width: auto; }
.logo--footer .logo__img { height: 76px; }
.nav__links { display: flex; align-items: center; gap: 1.6rem; }
.nav__links a:not(.btn) { text-decoration: none; font-weight: 600; font-size: .95rem; color: rgba(255,255,255,.88); }
.nav__links a:not(.btn):hover { color: #fff; }
.nav .btn--primary { background: #fff; color: var(--accent); }
.nav .btn--primary:hover { background: #16171a; color: #fff; }
.nav__toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: .2s; }

/* Hero */
.hero {
  position: relative; isolation: isolate; overflow: hidden; color: #fff;
  min-height: min(88vh, 760px); display: flex; align-items: center; padding: 96px 0;
  background: #1a1210;
}
.hero__bg, .hero__bg img { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; }
.hero__bg img { object-fit: cover; object-position: 70% 50%; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(12,10,14,.88) 0%, rgba(12,10,14,.7) 38%, rgba(12,10,14,.15) 65%, rgba(12,10,14,0) 100%),
    linear-gradient(0deg, rgba(12,10,14,.5) 0%, rgba(12,10,14,0) 35%);
}
.hero__inner { display: block; }
.hero__copy { max-width: 600px; }
.hero h1 { text-shadow: 0 2px 20px rgba(0,0,0,.35); }
.badge {
  display: inline-flex; align-items: center; gap: .5em; font-size: .85rem; font-weight: 600;
  padding: .35em .9em; border-radius: 999px; margin-bottom: 1.2rem;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(6px);
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 0 rgba(34,197,94,.6); animation: pulse 1.8s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); } 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); } }
.lead { font-size: 1.15rem; max-width: 34em; }
.hero .lead { color: rgba(255,255,255,.85); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin: 1.8rem 0 2rem; }
.hero .btn--ghost { border-color: #fff; color: #fff; }
.hero .btn--ghost:hover { background: #fff; color: #16171a; }
.hero__trust { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 28px; color: rgba(255,255,255,.75); font-size: .92rem; }
.hero__trust strong { display: block; color: #fff; font-family: var(--font-display); font-size: 1.7rem; line-height: 1.1; }

/* Sections */
.section { padding: 88px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { max-width: 640px; margin-bottom: 44px; }
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--eyebrow); margin-bottom: .6rem;
}

.grid { display: grid; gap: 20px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.featured { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 56px; }
.feature { border-radius: 20px; padding: 36px; display: flex; flex-direction: column; }
.feature h3 { font-size: 2.3rem; text-transform: uppercase; font-weight: 800; }
.feature p { font-size: 1.05rem; }
.feature--rescue { background: var(--accent); color: #fff; box-shadow: 0 20px 40px color-mix(in srgb, var(--accent) 30%, transparent); }
.feature--scheduled { background: var(--bg-alt); border: 2px solid var(--accent); }
.feature--scheduled p { color: var(--muted); }
.feature__tag {
  display: inline-block; align-self: flex-start; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .4em .9em; border-radius: 999px; margin-bottom: 1rem; background: rgba(255,255,255,.2); color: inherit;
}
.feature--scheduled .feature__tag, .feature__tag--dark { background: color-mix(in srgb, var(--accent) 14%, transparent); color: var(--accent); }
.feature__list { list-style: none; padding: 0; margin: 0 0 1.6rem; display: grid; gap: 8px; }
.feature__list li { padding-left: 28px; position: relative; font-weight: 500; }
.feature__list li::before { content: "✓"; position: absolute; left: 0; font-weight: 800; }
.feature--scheduled .feature__list li::before { color: var(--accent); }
.feature__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.price { font-size: .95rem; }
.price strong { font-family: var(--font-display); font-size: 2rem; margin-left: .2em; }
.subhead { font-size: 1.1rem; font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 20px; }
.card h3 { font-size: 1.35rem; }
.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--accent) 40%, var(--line)); }
.card__icon { font-size: 1.9rem; margin-bottom: .8rem; }
.card p { color: var(--muted); margin: 0; }

.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: s; }
.step { position: relative; background: var(--bg); border-radius: var(--radius); padding: 32px 28px; border: 1px solid var(--line); }
.step__num {
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent); color: #fff; font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; margin-bottom: 1rem;
}
.step p { color: var(--muted); margin: 0; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.checks li {
  position: relative; padding: 14px 16px 14px 48px; background: var(--bg-alt); border-radius: 12px; font-weight: 500;
}
.checks li::before {
  content: "✓"; position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: #fff;
  display: grid; place-items: center; font-size: .8rem; font-weight: 700;
}

.coverage { display: grid; grid-template-columns: 1.3fr 1fr; gap: 20px; }
.coverage__card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.coverage__card p { margin: 0; color: var(--muted); }
.coverage__card--main { background: var(--accent); color: #fff; border-color: var(--accent); }
.coverage__card--main p { color: rgba(255,255,255,.92); }

/* Form */
.split--form { align-items: center; }
.contact-list { display: grid; gap: 10px; margin-top: 1.5rem; }
.contact-list a { text-decoration: none; font-weight: 600; }
.form { background: var(--bg-alt); border-radius: 20px; padding: 32px; border: 1px solid var(--line); }
.field { display: grid; gap: 6px; margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { font-size: .88rem; font-weight: 600; }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; color: var(--ink); background: var(--bg);
  border: 1.5px solid var(--line); border-radius: 10px; padding: .75em .9em; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent); }
.field .invalid { border-color: #e5484d; }
.form__error { color: #e5484d; font-weight: 600; font-size: .92rem; }

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq details { background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 0 22px; }
.faq summary {
  cursor: pointer; list-style: none; font-weight: 600; padding: 18px 0; position: relative; padding-right: 30px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--accent); transition: transform .2s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { color: var(--muted); padding-bottom: 18px; margin: 0; }

/* CTA band */
.cta-band { background: #16171a; color: #fff; padding: 64px 0; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-band h2 { margin: 0; }

/* Footer */
.footer { padding: 56px 0 28px; background: var(--accent); color: #fff; }
.footer__inner { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__links a { text-decoration: none; color: rgba(255,255,255,.88); font-weight: 600; }
.footer__links a:hover { color: #fff; text-decoration: underline; }
.logo--footer { margin-bottom: .8rem; }
.footer__legal { margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.3); color: rgba(255,255,255,.85); }

/* WhatsApp float */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center;
  background: #25d366; color: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.25);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }

/* Responsive */
@media (max-width: 960px) {
  .hero__inner, .split, .coverage { grid-template-columns: 1fr; }
  .grid--4, .steps { grid-template-columns: 1fr 1fr; }
  .featured { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute; top: 104px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--accent); border-top: 1px solid rgba(255,255,255,.25); padding: 8px 20px 20px;
    display: none;
  }
  .nav__links.open { display: flex; }
  .nav__links a:not(.btn) { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.25); font-size: 1.05rem; }
  .nav__links .btn { margin-top: 14px; }
  .hero { min-height: auto; padding: 240px 0 48px; align-items: flex-end; }
  .hero__bg img { object-position: 72% 30%; height: 62%; }
  .hero::before { background: linear-gradient(0deg, #120e10 0%, #120e10 42%, rgba(18,14,16,.6) 58%, rgba(18,14,16,0) 75%); }
  .hero__trust { gap: 20px; }
  .section { padding: 64px 0; }
  .grid--4, .steps, .field-row { grid-template-columns: 1fr; }
  .feature { padding: 26px; }
  .feature h3 { font-size: 1.9rem; }
  .feature__foot .btn { width: 100%; }
  .hero__ctas .btn { width: 100%; }
  .form { padding: 22px; }
  .container { padding: 0 16px; }
  .nav__inner { height: 80px; }
  .nav__links { top: 80px; }
  .nav .logo__img { height: 60px; }
  html { scroll-padding-top: 88px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* Hover verde WhatsApp en todos los botones que van a WhatsApp */
.btn.js-whatsapp:hover, .btn--wa:hover {
  background: #25d366; border-color: #25d366; color: #fff;
}
.cta-band .btn.js-whatsapp:hover, .wa-float:hover { background: #1da851; border-color: #1da851; }
.contact-list a.js-whatsapp:hover { color: #25d366; }

/* Instagram en footer */
.footer__ig { display: inline-flex; align-items: center; gap: .45em; }
.footer__ig svg { flex: none; }
