/* PlanFibra 3.0: presentation layer only. Functional selectors remain unchanged. */
:root {
  color-scheme: dark;
  --pf-bg: #050711;
  --pf-bg-soft: #090d1a;
  --pf-surface: #0d1222;
  --pf-surface-2: #12182a;
  --pf-line: rgba(151, 172, 255, .14);
  --pf-line-strong: rgba(109, 139, 255, .28);
  --pf-text: #f7f8ff;
  --pf-muted: #9da8c4;
  --pf-blue: #4f8cff;
  --pf-violet: #8168ff;
  --pf-cyan: #42d7ff;
  --pf-gradient: linear-gradient(135deg, var(--pf-blue), var(--pf-violet) 58%, #a45cff);
  --pf-shadow: 0 24px 70px rgba(0, 0, 0, .32);
  --pf-radius: 24px;
  --ink1: var(--pf-text);
  --ink2: #e6e9f5;
  --ink3: #b1bad1;
  --ink4: #8d99b6;
  --bg0: var(--pf-bg);
  --bg1: var(--pf-surface);
  --bg2: var(--pf-surface-2);
  --card-bg: var(--pf-surface);
  --text: var(--pf-text);
  --text-muted: var(--pf-muted);
  --border: var(--pf-line);
  --hdr: 68px;
}

html { background: var(--pf-bg); }
body {
  min-width: 320px;
  background:
    radial-gradient(circle at 8% 8%, rgba(63, 103, 255, .09), transparent 28rem),
    radial-gradient(circle at 92% 32%, rgba(118, 76, 255, .07), transparent 30rem),
    var(--pf-bg);
  color: var(--pf-text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  line-height: 1.65;
}

::selection { background: rgba(79, 140, 255, .35); color: #fff; }
:focus-visible { outline: 3px solid rgba(66, 215, 255, .8); outline-offset: 3px; }
a, button, input, select, textarea { -webkit-tap-highlight-color: transparent; }
button, input, select, textarea { font: inherit; }

.site-header {
  height: var(--hdr);
  padding: 0 max(16px, calc((100vw - 1400px) / 2));
  background: rgba(5, 7, 17, .7) !important;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(5, 7, 17, .92) !important;
  border-color: var(--pf-line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .24);
}
.hdr-logo { gap: 10px; }
.hdr-logo-img { height: 34px; max-width: 156px; filter: drop-shadow(0 8px 18px rgba(74, 129, 255, .2)); }
.hdr-logo-txt { color: var(--pf-text); font-size: 17px; letter-spacing: -.45px; }
.hdr-logo-txt span { color: #70b7ff; }
.hdr-nav { justify-content: center; gap: 2px; margin: 0 18px; }
.hdr-nav a {
  color: #aab4cc !important;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 650;
}
.hdr-nav a:hover, .hdr-nav a.active { background: rgba(255, 255, 255, .055) !important; color: #fff; }
.hdr-acceso { border-color: var(--pf-line); color: var(--pf-muted); border-radius: 10px; }
.hdr-whatsapp {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(37, 211, 102, .25);
  border-radius: 12px;
  background: rgba(37, 211, 102, .08);
  color: #69e995;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.hdr-whatsapp:hover { background: rgba(37, 211, 102, .14); border-color: rgba(37, 211, 102, .45); color: #87f3aa; transform: translateY(-1px); }
.hdr-cta {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: var(--pf-gradient);
  box-shadow: 0 10px 28px rgba(89, 99, 255, .25);
}
.hdr-cta:hover { transform: translateY(-1px); box-shadow: 0 13px 34px rgba(89, 99, 255, .36); }
.hdr-burger { width: 42px; height: 42px; align-items: center; justify-content: center; border: 1px solid var(--pf-line); }
.mobile-nav { top: var(--hdr); background: rgba(7, 9, 19, .98); border-color: var(--pf-line); }
.mobile-nav a { color: #c4cbe0; border-color: rgba(255, 255, 255, .055); }

.hero {
  min-height: min(790px, calc(100svh - var(--hdr)));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 76px 20px 70px;
  background:
    linear-gradient(rgba(255, 255, 255, .026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .026) 1px, transparent 1px),
    radial-gradient(ellipse 60% 48% at 50% 22%, rgba(70, 106, 255, .22), transparent 70%),
    radial-gradient(ellipse 40% 34% at 72% 68%, rgba(128, 75, 255, .12), transparent 70%),
    #050711;
  background-size: 64px 64px, 64px 64px, auto, auto, auto;
  border-bottom: 1px solid var(--pf-line);
  isolation: isolate;
}
.hero::before {
  top: 4%;
  width: min(850px, 110vw);
  height: 500px;
  background: radial-gradient(ellipse, rgba(66, 215, 255, .09), transparent 68%);
  filter: blur(4px);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(transparent, var(--pf-bg));
  pointer-events: none;
  z-index: -1;
}
.hero > * { position: relative; z-index: 1; }
.hero-badge {
  margin-bottom: 24px;
  padding: 7px 14px;
  background: rgba(79, 140, 255, .1);
  border-color: rgba(111, 153, 255, .28);
  color: #c9d8ff;
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero h1 {
  width: min(950px, 100%);
  margin: 0 auto 22px;
  color: #fff;
  font-size: clamp(2.45rem, 7.2vw, 5.8rem);
  font-weight: 780;
  letter-spacing: clamp(-.055em, -0.04em, -.03em);
  line-height: .98;
  text-wrap: balance;
}
.hero h1::after {
  content: "";
  display: block;
  width: min(260px, 42vw);
  height: 4px;
  margin: 26px auto 0;
  border-radius: 99px;
  background: var(--pf-gradient);
  box-shadow: 0 0 28px rgba(91, 126, 255, .52);
}
.hero-sub { max-width: 680px; color: #b9c1d5; font-size: clamp(1rem, 2vw, 1.22rem); line-height: 1.55; }
.hero-intro { max-width: 760px; color: #919db9; font-size: .95rem; }
.hero-ctas { gap: 12px; margin: 28px 0 0; }
.btn-prim, .btn-sec {
  min-height: 52px;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 14px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-prim { background: var(--pf-gradient); box-shadow: 0 14px 38px rgba(83, 103, 255, .3), inset 0 1px rgba(255, 255, 255, .3); }
.btn-sec { background: rgba(255, 255, 255, .055); border-color: var(--pf-line-strong); color: #d9deec; }
.btn-prim:hover, .btn-sec:hover { transform: translateY(-2px); }
.btn-sec:hover { background: rgba(255, 255, 255, .09); border-color: rgba(151, 172, 255, .42); }
.hero-benefits { max-width: 880px; gap: 10px; margin-top: 28px; }
.hero-benefits span, .hero-urgency span {
  min-height: 34px;
  padding: 7px 11px !important;
  border: 1px solid var(--pf-line) !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, .035) !important;
  color: #9faac2 !important;
  font-size: 12px !important;
}
.hero-extra { width: min(680px, 100%); }

.filter-section {
  top: var(--hdr);
  background: rgba(9, 13, 26, .91);
  border-color: var(--pf-line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px);
}
.filter-inner-wrap { max-width: 1400px; padding: 12px 20px; gap: 9px; }
.filter-group-label { color: #7783a0; }
.chip, .filter-sort, .filter-select, .filter-toggle-btn {
  min-height: 36px;
  border: 1px solid var(--pf-line);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, .035);
  color: #aeb7ce;
}
.chip:hover, .filter-sort:hover { border-color: var(--pf-line-strong); color: #e7ebf8; }
.chip.active, .filter-sort.active, .chip-all.active {
  background: rgba(79, 140, 255, .15);
  border-color: rgba(79, 140, 255, .5);
  color: #bcd2ff;
}
.filter-select { color: #b8c0d4; background-color: #12182a; }
.filter-select option { background: #12182a; color: #fff; }
.filter-divider { background: var(--pf-line); }
.filter-reset-all { color: #8995b0; }
.filter-active-badge { color: #acc9ff; background: rgba(79, 140, 255, .12); }

#planes { padding: 44px 0 46px; position: relative; }
#planes::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 0, rgba(64, 107, 255, .08), transparent 36rem);
}
.section-head { max-width: 1400px; padding: 30px 20px 22px; }
.section-head h2 { color: var(--pf-text); font-size: clamp(1.7rem, 4vw, 2.55rem); letter-spacing: -.035em; }
.section-head p { color: var(--pf-muted); }
.plan-count-badge { background: rgba(79, 140, 255, .1); border-color: rgba(79, 140, 255, .25); color: #a8c5ff; }
.plans-grid { max-width: 1400px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); gap: 18px; padding: 0 20px 40px; }
.pcard {
  background: linear-gradient(155deg, rgba(18, 24, 42, .96), rgba(10, 14, 27, .98));
  border: 1px solid var(--pf-line);
  border-radius: var(--pf-radius);
  box-shadow: 0 14px 42px rgba(0, 0, 0, .2);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.pcard::before { content: ""; position: absolute; inset: 0 0 auto; height: 1px; background: linear-gradient(90deg, transparent, rgba(130, 159, 255, .55), transparent); opacity: .55; }
.pcard:hover { transform: translateY(-5px); border-color: rgba(109, 139, 255, .36); box-shadow: 0 24px 60px rgba(0, 0, 0, .34); }
.pcard.featured { border-color: rgba(116, 122, 255, .58); box-shadow: 0 18px 50px rgba(72, 77, 210, .15); }
.card-head { padding: 20px 20px 0; }
.badge-emp { background: rgba(255, 255, 255, .055); color: #dfe5f5; }
.badge-tipo.t-net, .badge-feat { background: rgba(79, 140, 255, .12); border-color: rgba(79, 140, 255, .25); color: #9fc0ff; }
.badge-tipo.t-tv { background: rgba(129, 104, 255, .12); border-color: rgba(129, 104, 255, .25); color: #bcadff; }
.card-body { padding: 16px 20px; }
.plan-name { color: #f4f6ff; font-size: 17px; }
.plan-vel { color: #8db7ff; font-size: 34px; }
.plan-vel span, .plan-promo, .plan-html-extra { color: #9da8c2; }
.plan-html-extra strong, .plan-html-extra b { color: #eef1fb; }
.card-price { padding: 16px 20px; border-color: var(--pf-line); background: rgba(255, 255, 255, .018); }
.price-orig, .pperiod { color: #808ba5; }
.pcur { color: #b9c2d6; }
.pnum { color: #fff; font-size: 38px; }
.price-promo-label { color: #a6c5ff; background: rgba(79, 140, 255, .1); }
.card-footer { padding: 14px 20px 20px; }
.btn-quiero, .btn-submit { border-radius: 13px; background: var(--pf-gradient); box-shadow: 0 12px 28px rgba(79, 96, 255, .24); }
.btn-wa-card { border-radius: 13px; box-shadow: 0 10px 24px rgba(37, 211, 102, .15); }
.btn-cmp-toggle { border-radius: 11px; background: rgba(79, 140, 255, .08); border-color: rgba(79, 140, 255, .22); color: #9dbfff; }
.exp-veil { background: rgba(8, 11, 21, .8); color: #ff9fa8; }
.no-plans p { color: var(--pf-muted); }

.pf-benefits, .pf-trust, .pf-help {
  padding: 92px 20px;
  border-bottom: 1px solid var(--pf-line);
}
.pf-benefits { background: linear-gradient(180deg, #070a14, var(--pf-bg)); }
.pf-section-heading { width: min(720px, 100%); margin: 0 auto 46px; text-align: center; }
.pf-eyebrow {
  display: inline-block;
  margin-bottom: 13px;
  color: #8fb7ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.pf-section-heading h2, .pf-coverage h2 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 750;
  letter-spacing: -.045em;
  line-height: 1.06;
  text-wrap: balance;
}
.pf-section-heading p, .pf-coverage p { margin-top: 16px; color: var(--pf-muted); font-size: 16px; }
.pf-benefits-grid, .pf-trust-grid, .pf-help-grid { width: min(1240px, 100%); margin: 0 auto; display: grid; gap: 14px; }
.pf-benefits-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pf-benefit-card, .pf-trust-card, .pf-help-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--pf-line);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(18, 24, 42, .85), rgba(10, 14, 26, .9));
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}
.pf-benefit-card { min-height: 230px; padding: 28px; }
.pf-benefit-card:hover, .pf-trust-card:hover, .pf-help-card:hover { transform: translateY(-4px); border-color: rgba(108, 139, 255, .38); }
.pf-card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(101, 148, 255, .24);
  border-radius: 14px;
  background: rgba(79, 140, 255, .09);
  color: #8fb9ff;
}
.pf-card-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.pf-benefit-card h3 { color: #f1f4ff; font-size: 17px; letter-spacing: -.015em; }
.pf-benefit-card p { margin-top: 9px; color: #929db8; font-size: 14px; line-height: 1.6; }

.pf-coverage { padding: 34px 20px 92px; }
.pf-coverage-inner {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 6vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(112, 135, 255, .32);
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 15%, rgba(146, 77, 255, .28), transparent 20rem),
    radial-gradient(circle at 5% 100%, rgba(42, 171, 255, .2), transparent 24rem),
    linear-gradient(135deg, #101830, #121128 68%, #1a102d);
  box-shadow: var(--pf-shadow);
}
.pf-coverage-inner::after { content: ""; position: absolute; width: 300px; height: 300px; right: -130px; top: -160px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 50%; box-shadow: 0 0 0 45px rgba(255, 255, 255, .02), 0 0 0 90px rgba(255, 255, 255, .018); }
.pf-coverage-inner > * { position: relative; z-index: 1; }
.pf-coverage-inner > div { max-width: 720px; }
.pf-gradient-button {
  min-width: 210px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 22px;
  border-radius: 14px;
  background: #fff;
  color: #11162a;
  font-weight: 800;
  box-shadow: 0 14px 35px rgba(0, 0, 0, .22);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pf-gradient-button:hover { color: #11162a; transform: translateY(-2px); box-shadow: 0 18px 42px rgba(0, 0, 0, .3); }

.pf-trust { background: #070a14; }
.pf-trust-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pf-trust-card { min-height: 150px; padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.pf-trust-card strong { color: #eef1fc; font-size: 15px; }
.pf-trust-card span { color: #8f9ab4; font-size: 13px; line-height: 1.55; }
.pf-social-proof {
  width: min(1240px, 100%);
  margin: 18px auto 0;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--pf-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .025);
}
.pf-social-proof > div { display: grid; grid-template-columns: auto 1fr; column-gap: 10px; align-items: center; }
.pf-social-proof strong { color: #e7ebf8; font-size: 14px; }
.pf-social-proof small { grid-column: 2; color: #8994ad; font-size: 12px; }
.pf-social-proof a { color: #9fc1ff; font-size: 13px; font-weight: 750; white-space: nowrap; }
.pf-live-dot { width: 8px; height: 8px; grid-row: 1 / 3; border-radius: 50%; background: #4bdc8b; box-shadow: 0 0 0 5px rgba(75, 220, 139, .1); }

.pf-help { background: var(--pf-bg); }
.pf-help-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pf-help-card { min-height: 170px; padding: 25px; display: flex; flex-direction: column; color: inherit; }
.pf-help-card > span { margin-bottom: auto; color: #7faeff; font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.pf-help-card strong { color: #eff2fc; font-size: 16px; }
.pf-help-card small { margin-top: 5px; color: #8995af; font-size: 12px; }
.pf-help-card::after { content: "↗"; position: absolute; top: 20px; right: 22px; color: #65718d; }

.pf-motion-ready .pf-reveal { opacity: 0; transform: translateY(20px); }
.pf-motion-ready .pf-reveal.is-visible { opacity: 1; transform: translateY(0); transition: opacity .55s ease, transform .55s cubic-bezier(.2, .7, .2, 1), border-color .24s ease; }

.cotizar-wrap {
  padding: 98px 20px;
  border-top: 1px solid var(--pf-line);
  background:
    radial-gradient(circle at 50% 0, rgba(82, 103, 255, .19), transparent 34rem),
    linear-gradient(180deg, #090d1b, #050711);
}
.cotizar-inner { max-width: 760px; }
.cotizar-inner h2 { color: #fff; font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -.045em; line-height: 1.08; }
.cotizar-inner > p { max-width: 600px; margin: 14px auto 34px; color: #a1abc2; }
.cotizar-form {
  padding: clamp(20px, 5vw, 38px);
  border: 1px solid rgba(143, 164, 255, .18);
  border-radius: 26px;
  background: rgba(14, 19, 35, .86);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .34), inset 0 1px rgba(255, 255, 255, .035);
  backdrop-filter: blur(18px);
}
.fsect { color: #7d8aa6; border-color: var(--pf-line); }
.form-row { margin-bottom: 17px; }
.form-row label { color: #c8cede; font-size: 13px; }
.form-row input, .form-row select, .form-row textarea,
#tel-wrap, #comuna-manual, #plan-suggestions {
  border: 1px solid rgba(147, 164, 220, .18) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, .045) !important;
  color: #f2f4fb !important;
  box-shadow: none !important;
}
.form-row input, .form-row select, .form-row textarea { min-height: 48px; padding: 12px 14px; }
.form-row textarea { min-height: 110px; resize: vertical; }
.form-row input::placeholder, .form-row textarea::placeholder { color: #68738d; opacity: 1; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus, #tel-wrap:focus-within {
  border-color: rgba(91, 142, 255, .72) !important;
  background: rgba(79, 140, 255, .07) !important;
  box-shadow: 0 0 0 4px rgba(79, 140, 255, .1) !important;
}
#tel-wrap > span { background: rgba(255, 255, 255, .055) !important; border-color: var(--pf-line) !important; color: #aeb8ce !important; }
#telefono { color: #fff !important; }
.form-row select option { background: #111728; color: #fff; }
#plan-suggestions { overflow: hidden; background: #111728 !important; border-top: 1px solid rgba(147, 164, 220, .18) !important; }
.horario-btn, #inst_day_btns button { min-height: 48px; }
.form-check { color: #aeb7ca; }
.form-check a { color: #93b9ff !important; }
.btn-submit { min-height: 56px; margin-top: 14px; font-size: 15px; }
.form-privacy { color: #7d89a3; }
.form-msg.ok { color: #6ee7a0; }
.form-msg.err { color: #ff9da7; }

.faqs-section { max-width: 840px; padding: 90px 20px; }
.faqs-section h2 { margin-bottom: 28px; color: #f4f6ff; font-size: clamp(1.8rem, 4vw, 2.5rem); letter-spacing: -.035em; }
.faq-item { border-color: var(--pf-line); border-radius: 16px; background: var(--pf-surface); }
.faq-q { width: 100%; min-height: 60px; text-align: left; background: var(--pf-surface); color: #dfe4f2; }
.faq-q:hover { background: var(--pf-surface-2); color: #fff; }
.faq-a { background: #0a0f1e; }
.faq-a p { color: #9ca7bf; }

.page-wrap { color: var(--pf-text); }
.page-wrap h1, .page-wrap h2, .mapa-subtitulo { color: #f4f6ff; }
.page-wrap p, .page-wrap li, .mapa-total { color: #a5aec4; }
.mapa-toc { background: var(--pf-surface); border-color: var(--pf-line); }
.mapa-cat h2 { border-color: var(--pf-line); }
.mapa-links a { color: #c3cadd; }

.site-footer {
  padding: 72px 20px 26px;
  border-top: 1px solid var(--pf-line);
  background:
    radial-gradient(circle at 15% 0, rgba(75, 119, 255, .1), transparent 26rem),
    linear-gradient(180deg, #080b17, #04060d) !important;
}
.footer-inner { max-width: 1240px; }
.footer-grid { gap: 44px; margin-bottom: 52px; }
.footer-brand-logo { margin-bottom: 18px; }
.footer-brand-logo img { height: 38px; filter: drop-shadow(0 8px 18px rgba(74, 129, 255, .18)); }
.footer-brand-name { font-size: 20px; letter-spacing: -.035em; }
.footer-brand-name span { color: #77b4ff; }
.fbrand-desc { max-width: 340px; color: #828da7; }
.footer-social a { width: 42px; height: 42px; border-color: var(--pf-line); border-radius: 12px; background: rgba(255, 255, 255, .035); color: #98a4bd; }
.footer-social a:hover { background: rgba(79, 140, 255, .1); border-color: rgba(79, 140, 255, .35); color: #9dc0ff; }
.footer-col h4 { color: #7986a2; font-size: 11px; letter-spacing: .12em; }
.footer-col a { color: #9ba6bd; margin-bottom: 11px; }
.footer-col a:hover { padding-left: 0; color: #fff; }
.footer-bottom { padding-top: 24px; border-color: var(--pf-line); }
.footer-bottom p, .footer-legal a { color: #69748d; }
.footer-legal a:hover { color: #a8c6ff; }

@media (max-width: 1023px) {
  .pf-benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pf-trust-grid, .pf-help-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pf-coverage-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 767px) {
  .pf-benefits, .pf-trust, .pf-help, .cotizar-wrap { padding: 70px 16px; }
  .pf-section-heading { margin-bottom: 30px; text-align: left; }
  .pf-section-heading h2, .pf-coverage h2 { font-size: clamp(1.9rem, 9vw, 2.7rem); }
  .pf-section-heading p, .pf-coverage p { font-size: 14px; }
  .pf-coverage { padding: 20px 14px 70px; }
  .pf-coverage-inner { padding: 30px 22px; gap: 26px; border-radius: 22px; }
  .pf-gradient-button { width: 100%; }
  .pf-benefits-grid { grid-template-columns: 1fr; }
  .pf-benefit-card { min-height: auto; padding: 23px; }
  .pf-card-icon { margin-bottom: 22px; }
  .pf-social-proof { align-items: flex-start; flex-direction: column; }
  .pf-social-proof a { white-space: normal; }
  .cotizar-inner h2 { font-size: 2.25rem; }
  .cotizar-form { border-radius: 20px; }
  .footer-grid { gap: 34px; }
}

@media (max-width: 520px) {
  .pf-trust-grid, .pf-help-grid { grid-template-columns: 1fr; }
  .pf-trust-card, .pf-help-card { min-height: 140px; }
  .pf-benefit-card:hover, .pf-trust-card:hover, .pf-help-card:hover { transform: none; }
  .fgrid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 359px) {
  .hdr-logo-img { max-width: 76px; }
  .hdr-cta { padding-inline: 10px; font-size: 11px; }
  .hdr-burger { width: 38px; height: 38px; }
  .pf-benefits, .pf-trust, .pf-help, .cotizar-wrap { padding-inline: 12px; }
  .cotizar-form { padding-inline: 14px; }
}

.compare-panel { background: var(--pf-surface); border: 1px solid var(--pf-line); color: var(--pf-text); }
.compare-panel h2, .cmp-table td { color: var(--pf-text); }
.cmp-table th { background: var(--pf-surface-2); color: var(--pf-muted); }
.cmp-table td { border-color: var(--pf-line); }
.cmp-close { background: rgba(255, 255, 255, .07); color: #fff; }
nav[aria-label="Breadcrumb"] { color: #77829d !important; }
nav[aria-label="Breadcrumb"] a { color: #8f9ab5 !important; }
nav[aria-label="Breadcrumb"] span[aria-current="page"] { color: #d5daea !important; }

@media (min-width: 1200px) {
  .site-header { padding-inline: max(32px, calc((100vw - 1400px) / 2)); }
  .plans-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

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

/* PlanFibra 3.1: narrative, brand hierarchy and connected-home visual. */
:root {
  --pf-bg: #050912;
  --pf-bg-soft: #08101d;
  --pf-surface: #0b1422;
  --pf-surface-2: #101b2b;
  --pf-line: rgba(125, 184, 218, .14);
  --pf-line-strong: rgba(77, 174, 225, .3);
  --pf-text: #f7f5f0;
  --pf-muted: #9aa9b9;
  --pf-blue: #247cff;
  --pf-violet: #655ee8;
  --pf-cyan: #54d9f5;
  --pf-gradient: linear-gradient(135deg, #247cff, #326fe8 68%, #5267db);
}

body { background: radial-gradient(circle at 72% 5%, rgba(55, 173, 222, .06), transparent 28rem), var(--pf-bg); }
.hdr-nav a, .hdr-cta, .hero-badge, .btn-prim, .btn-sec, .chip, .filter-sort { font-weight: 600; }
.hdr-logo-img { width: 26px; height: 26px; max-width: 26px; border-radius: 7px; opacity: .42; object-fit: cover; filter: none; }
.hdr-logo-txt { font-size: 18px; font-weight: 800; }
.hdr-logo-txt span { color: #66c8f1; }
.hdr-cta { background: #247cff; box-shadow: 0 8px 24px rgba(36, 124, 255, .22); }

.hero--home {
  min-height: 0;
  display: block;
  padding: 0 20px;
  text-align: left;
  background:
    linear-gradient(rgba(117, 183, 213, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 183, 213, .025) 1px, transparent 1px),
    radial-gradient(ellipse 45% 55% at 82% 42%, rgba(34, 140, 205, .16), transparent 72%),
    radial-gradient(ellipse 40% 35% at 14% 5%, rgba(36, 124, 255, .1), transparent 72%),
    #050912;
  background-size: 72px 72px, 72px 72px, auto, auto, auto;
}
.hero--home::before { width: 680px; height: 680px; left: 78%; top: -12%; background: radial-gradient(circle, rgba(81, 214, 244, .08), transparent 68%); }
.hero--home::after { height: 120px; }
.hero-shell { width: min(1280px, 100%); min-height: 690px; margin: 0 auto; padding: 82px 0 76px; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(430px, .95fr); gap: clamp(46px, 7vw, 104px); align-items: center; }
.hero-copy { max-width: 710px; }
.hero--home .hero-badge { margin: 0 0 24px; border-color: rgba(81, 190, 230, .25); background: rgba(63, 171, 217, .07); color: #9bcde0; font-size: 12px; letter-spacing: .1em; }
.hero--home h1 { width: 100%; margin: 0; font-size: inherit; font-weight: inherit; line-height: inherit; letter-spacing: 0; }
.hero--home h1::after { display: none; }
.hero-title-main { display: block; color: #f8f6f1; font-size: clamp(3.15rem, 5.6vw, 5.7rem); font-weight: 800; letter-spacing: -.06em; line-height: .98; text-wrap: balance; }
.hero-title-main > span { color: #78d8ef; background: linear-gradient(100deg, #f8f6f1 0%, #78d8ef 42%, #5aa8ff 94%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-seo-title { display: block; margin-top: 24px; color: #a7b5c3; font-size: 15px; font-weight: 500; letter-spacing: 0; line-height: 1.5; }
.hero--home .hero-sub { max-width: 650px; margin: 15px 0 0; color: #bbc6d0; font-size: clamp(1rem, 1.5vw, 1.16rem); line-height: 1.65; }
.hero-provider-copy { margin-top: 10px; color: #728496; font-size: 13px; font-weight: 500; line-height: 1.55; }
.hero--home .hero-ctas { justify-content: flex-start; margin: 30px 0 0; }
.hero--home .btn-prim { min-width: 210px; background: #247cff; box-shadow: 0 14px 34px rgba(36, 124, 255, .25); font-weight: 700; }
.hero--home .btn-prim:hover { background: #3488ff; box-shadow: 0 16px 40px rgba(36, 124, 255, .32); }
.hero--home .btn-sec { border-color: transparent; background: transparent; color: #b6c4d2; box-shadow: none; font-weight: 600; }
.hero--home .btn-sec:hover { border-color: var(--pf-line); background: rgba(255, 255, 255, .035); }
.hero-cta-note { max-width: 520px; margin-top: 12px; color: #7f91a3; font-size: 13px; line-height: 1.55; }
.hero-trust-list { margin-top: 30px; padding: 22px 0 0; display: flex; flex-wrap: wrap; gap: 12px 22px; border-top: 1px solid var(--pf-line); list-style: none; }
.hero-trust-list li { display: inline-flex; align-items: center; gap: 8px; color: #a9b7c5; font-size: 13px; font-weight: 600; }
.hero-trust-list svg { width: 18px; height: 18px; fill: none; stroke: #62c9e7; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.hero-network { height: 520px; position: relative; isolation: isolate; }
.network-orbit { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(98, 201, 231, .13); border-radius: 50%; transform: translate(-50%, -50%); }
.network-orbit--outer { width: 460px; height: 460px; }
.network-orbit--inner { width: 310px; height: 310px; border-color: rgba(98, 201, 231, .2); background: radial-gradient(circle, rgba(29, 117, 176, .08), transparent 68%); }
.network-lines { position: absolute; inset: 10px 0 0; width: 100%; height: 100%; overflow: visible; }
.network-lines path { fill: none; stroke: url(#pf-line-gradient); stroke-width: 1.5; stroke-dasharray: 4 7; opacity: .5; }
.network-home { width: 176px; height: 176px; position: absolute; left: 50%; top: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(96, 203, 235, .32); border-radius: 50%; background: linear-gradient(145deg, rgba(16, 35, 55, .98), rgba(7, 19, 32, .98)); box-shadow: 0 20px 60px rgba(0, 16, 29, .38), inset 0 1px rgba(255, 255, 255, .05); transform: translate(-50%, -50%); }
.network-home svg { width: 58px; height: 58px; margin-bottom: 10px; fill: none; stroke: #78d8ef; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.network-home strong { color: #f5f5f1; font-size: 15px; font-weight: 700; }
.network-home span { color: #7f93a5; font-size: 11px; }
.network-node { min-width: 108px; padding: 12px 14px; position: absolute; display: flex; align-items: center; gap: 9px; border: 1px solid var(--pf-line); border-radius: 14px; background: rgba(9, 22, 36, .92); box-shadow: 0 14px 35px rgba(0, 12, 24, .24); color: #a8bac9; }
.network-node svg { width: 20px; height: 20px; fill: none; stroke: #5fcbe8; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.network-node span { font-size: 12px; font-weight: 600; }
.network-node--one { left: 0; top: 67px; }
.network-node--two { right: 0; top: 67px; }
.network-node--three { left: -4px; bottom: 75px; }
.network-node--four { right: -4px; bottom: 75px; }
.network-status { min-width: 210px; padding: 13px 16px; position: absolute; left: 50%; bottom: 0; display: flex; align-items: center; gap: 11px; border: 1px solid rgba(91, 193, 220, .22); border-radius: 15px; background: rgba(8, 20, 33, .96); box-shadow: 0 16px 38px rgba(0, 10, 20, .3); transform: translateX(-50%); }
.network-status > span { width: 9px; height: 9px; border: 2px solid #74cee3; border-radius: 50%; }
.network-status div { display: flex; flex-direction: column; }
.network-status small { color: #718597; font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.network-status strong { color: #d8e3e9; font-size: 13px; font-weight: 700; }

.pf-proof-strip { width: min(1280px, calc(100% - 40px)); margin: 0 auto; padding: 26px 0; display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--pf-line); }
.pf-proof-strip > div { padding: 2px 30px; display: flex; flex-direction: column; border-right: 1px solid var(--pf-line); }
.pf-proof-strip > div:first-child { padding-left: 0; }
.pf-proof-strip > div:last-child { border-right: 0; }
.pf-proof-strip strong { color: #dce4e9; font-size: 14px; font-weight: 700; }
.pf-proof-strip span { color: #75889a; font-size: 13px; }

.pf-offer-zone { width: min(1120px, calc(100% - 40px)); margin: 78px auto 24px; padding: 32px; display: grid; grid-template-columns: minmax(190px, .38fr) minmax(0, 1fr); gap: 30px; align-items: center; border: 1px solid var(--pf-line); border-radius: 24px; background: linear-gradient(135deg, rgba(15, 31, 48, .8), rgba(7, 17, 29, .9)); }
.pf-offer-heading > span { color: #69cee8; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.pf-offer-heading p { margin-top: 10px; color: #8799a9; font-size: 14px; line-height: 1.65; }
.pf-offer-zone .hero-intro { width: 100%; max-width: none; margin: 0; color: inherit; }
.pf-offer-zone .cfhp-wrap { max-width: none !important; margin: 0 !important; border-color: rgba(82, 190, 224, .18) !important; background: radial-gradient(ellipse at 50% 0, rgba(61, 162, 210, .1), transparent 62%), rgba(255, 255, 255, .02) !important; }
.pf-offer-zone .cfhp-wrap::before { display: none !important; animation: none !important; }
.pf-offer-zone .cfhp-eyebrow { border-color: rgba(82, 190, 224, .25) !important; background: rgba(82, 190, 224, .08) !important; color: #8dd9eb !important; }
.pf-offer-zone [class*="cfhp-"] { text-shadow: none !important; }

@media (max-width: 1023px) {
  .hero-shell { min-height: 0; grid-template-columns: minmax(0, 1fr) 390px; gap: 34px; }
  .hero-title-main { font-size: clamp(2.8rem, 6.8vw, 4.6rem); }
  .hero-network { height: 460px; transform: scale(.9); transform-origin: center; }
  .network-orbit--outer { width: 410px; height: 410px; }
}

@media (max-width: 767px) {
  .hdr-logo-img { width: 22px; height: 22px; max-width: 22px; }
  .hdr-logo-txt { display: inline; font-size: 16px; }
  .hero--home { padding: 0 16px; background-size: 48px 48px, 48px 48px, auto, auto, auto; }
  .hero-shell { padding: 48px 0 40px; display: flex; flex-direction: column; gap: 28px; align-items: stretch; }
  .hero--home .hero-badge { margin-bottom: 18px; font-size: 10px; }
  .hero-title-main { font-size: clamp(2.55rem, 12vw, 4rem); line-height: 1.01; }
  .hero-seo-title { margin-top: 18px; font-size: 14px; }
  .hero--home .hero-sub { margin-top: 12px; font-size: 15px; line-height: 1.58; }
  .hero-provider-copy { display: none; }
  .hero--home .hero-ctas { margin-top: 24px; align-items: stretch; }
  .hero--home .hero-ctas a { width: 100%; }
  .hero--home .btn-sec { min-height: 44px; padding-block: 9px; }
  .hero-cta-note { margin-top: 8px; font-size: 12px; }
  .hero-trust-list { margin-top: 22px; padding-top: 18px; gap: 9px 15px; }
  .hero-trust-list li { font-size: 12px; }
  .hero-network { width: min(100%, 360px); height: 218px; margin: 0 auto; overflow: hidden; transform: none; }
  .network-orbit--outer { width: 300px; height: 300px; }
  .network-orbit--inner { width: 215px; height: 215px; }
  .network-lines, .network-node { display: none; }
  .network-home { width: 138px; height: 138px; }
  .network-home svg { width: 44px; height: 44px; }
  .network-status { bottom: 0; min-width: 196px; }
  .pf-proof-strip { width: calc(100% - 32px); padding: 22px 0; grid-template-columns: 1fr; }
  .pf-proof-strip > div { padding: 12px 0; border-right: 0; border-bottom: 1px solid var(--pf-line); }
  .pf-proof-strip > div:last-child { border-bottom: 0; }
  .pf-offer-zone { width: calc(100% - 28px); margin-top: 48px; padding: 22px 16px; grid-template-columns: 1fr; gap: 18px; border-radius: 19px; }
  .pf-offer-zone .cfhp-wrap { padding: 22px 16px !important; }
}

@media (max-width: 359px) {
  .hdr-logo-img { display: none; }
  .hero--home { padding-inline: 13px; }
  .hero-title-main { font-size: 2.42rem; }
  .hero-trust-list { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .network-lines path { stroke-dasharray: none; }
}

/* Progressive catalog and a single dominant action per plan. */
.pf-control-icon { width: 19px; height: 19px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pf-home-filter { position: relative; top: auto; z-index: 20; margin: 52px auto 0; border: 0; background: transparent; box-shadow: none; backdrop-filter: none; }
.pf-home-filter .filter-inner-wrap { width: min(1240px, 100%); padding: 0 20px; }
.pf-home-filter .filter-toggle-btn { width: auto; min-width: 190px; min-height: 46px; display: flex; margin-left: auto; padding: 11px 15px; color: #a9bbc9; border-color: var(--pf-line); background: rgba(255, 255, 255, .025); }
.pf-home-filter .filter-collapsible { max-height: 0; overflow: hidden; opacity: 0; }
.pf-home-filter .filter-collapsible.open { max-height: 520px; margin-top: 10px; padding: 16px; overflow: visible; opacity: 1; border: 1px solid var(--pf-line); border-radius: 16px; background: rgba(9, 20, 33, .96); }
.pf-home-filter.is-stuck .filter-toggle-btn:not(.open) { background: rgba(11, 27, 44, .96); color: #bcd0dc; border-color: var(--pf-line-strong); box-shadow: 0 10px 25px rgba(0, 10, 20, .2); }

.pf-curated-catalog { padding-top: 12px; }
.pf-curated-catalog .section-head { max-width: 1240px; padding-top: 24px; }
.pf-curated-catalog .section-head h2 { max-width: 760px; margin-bottom: 10px; font-size: clamp(2.15rem, 4vw, 3.5rem); font-weight: 800; line-height: 1.05; }
.pf-curated-catalog .section-head p { max-width: 690px; color: #8ea0af; font-size: 15px; line-height: 1.7; }
.pf-curated-catalog .plans-grid { max-width: 1240px; }
.pf-curated-catalog:not(.is-expanded) .pcard.pf-catalog-extra { display: none !important; }
.pf-curated-catalog:not(.is-expanded) .plans-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pf-curated-catalog.is-expanded .plans-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pf-catalog-actions { width: min(1240px, calc(100% - 40px)); margin: -8px auto 32px; display: flex; justify-content: center; }
.pf-show-all { min-width: 280px; min-height: 58px; padding: 10px 16px 10px 20px; display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto; column-gap: 18px; text-align: left; border: 1px solid var(--pf-line-strong); border-radius: 15px; background: rgba(17, 35, 52, .62); color: #e4ebef; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.pf-show-all:hover { border-color: rgba(82, 190, 224, .48); background: rgba(20, 43, 63, .8); transform: translateY(-2px); }
.pf-show-all span { font-size: 14px; font-weight: 700; }
.pf-show-all small { color: #7f93a4; font-size: 11px; }
.pf-show-all svg { width: 20px; height: 20px; grid-column: 2; grid-row: 1 / 3; align-self: center; fill: none; stroke: #67cce7; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s ease; }
.pf-show-all[aria-expanded="true"] svg { transform: rotate(180deg); }

.pcard.featured { border-color: var(--pf-line); box-shadow: 0 14px 42px rgba(0, 0, 0, .2); }
.pcard.pf-featured-primary { border-color: rgba(71, 171, 225, .55); box-shadow: 0 22px 55px rgba(7, 79, 126, .16); }
.pcard.pf-featured-primary::before { height: 2px; opacity: 1; background: linear-gradient(90deg, transparent, #55c9e8, #388dff, transparent); }
.pcard.pf-featured-secondary { border-color: rgba(105, 169, 204, .24); }
.card-btns { align-items: center; }
.btn-quiero { min-height: 46px; border-radius: 12px; background: #247cff; box-shadow: 0 9px 22px rgba(36, 124, 255, .2); font-size: 13px; font-weight: 700; }
.btn-quiero:hover { background: #3488ff; box-shadow: 0 11px 26px rgba(36, 124, 255, .27); }
.btn-wa-card { min-height: 44px; padding: 9px 6px; gap: 5px; border: 0; border-radius: 8px; background: transparent; color: #7e9b91; box-shadow: none; font-size: 11px; font-weight: 600; }
.btn-wa-card svg { width: 15px; height: 15px; }
.btn-wa-card:hover { background: rgba(37, 211, 102, .055); color: #78ba91; box-shadow: none; transform: none; }
.btn-cmp-toggle { min-height: 42px; border-color: transparent; border-top: 1px solid var(--pf-line); border-radius: 0; background: transparent; color: #8399aa; font-size: 12px; font-weight: 600; }
.btn-cmp-toggle:hover { color: #b7c8d3; background: rgba(255, 255, 255, .02); }
.btn-cmp-toggle.active-cmp { border-color: rgba(78, 186, 222, .28); border-radius: 10px; background: rgba(63, 165, 204, .1); color: #8dd5e8; }

@media (max-width: 1023px) {
  .pf-curated-catalog:not(.is-expanded) .plans-grid, .pf-curated-catalog.is-expanded .plans-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .pf-home-filter { margin-top: 34px; }
  .pf-home-filter .filter-inner-wrap { padding-inline: 14px; }
  .pf-home-filter .filter-toggle-btn { width: 100%; margin: 0; }
  .pf-home-filter .filter-collapsible.open { max-height: 720px; padding: 13px; }
  .pf-curated-catalog .section-head { padding: 30px 16px 20px; }
  .pf-curated-catalog .section-head h2 { font-size: 2.2rem; }
  .pf-curated-catalog .section-head p { font-size: 14px; }
  .pf-curated-catalog:not(.is-expanded) .plans-grid, .pf-curated-catalog.is-expanded .plans-grid { grid-template-columns: 1fr; }
  .pf-catalog-actions { width: calc(100% - 28px); }
  .pf-show-all { width: 100%; min-width: 0; min-height: 60px; }
  .card-btns { display: grid; grid-template-columns: 1fr auto; }
  .btn-wa-card { min-width: 92px; width: auto; }
}

/* Editorial sections and one coherent line-icon language. */
#social-notif, #sticky-cta { display: none !important; }
.pf-how { width: min(1240px, calc(100% - 40px)); margin: 0 auto; padding: 104px 0 96px; }
.pf-section-heading--left { margin-left: 0; text-align: left; }
.pf-how .pf-section-heading { margin-bottom: 48px; }
.pf-how-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); list-style: none; counter-reset: none; border-block: 1px solid var(--pf-line); }
.pf-how-step { min-height: 250px; padding: 30px; position: relative; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto 1fr; column-gap: 18px; border-right: 1px solid var(--pf-line); }
.pf-how-step:last-child { border-right: 0; }
.pf-how-step > span { color: #607789; font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.pf-how-step > svg { width: 30px; height: 30px; grid-column: 1; grid-row: 2; align-self: end; fill: none; stroke: #62cae6; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.pf-how-step > div { grid-column: 2; grid-row: 2; align-self: end; }
.pf-how-step h3 { color: #eef1f1; font-size: 17px; font-weight: 700; }
.pf-how-step p { margin-top: 8px; color: #8799a8; font-size: 14px; line-height: 1.65; }

.pf-benefits { padding: 104px 20px; background: #07101b; }
.pf-benefits .pf-section-heading { margin-left: max(0px, calc((100% - 1240px) / 2)); text-align: left; }
.pf-benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 56px; }
.pf-benefit-card { min-height: 178px; padding: 28px 0; display: grid; grid-template-columns: 48px 1fr; align-content: center; column-gap: 20px; border: 0; border-top: 1px solid var(--pf-line); border-radius: 0; background: transparent; box-shadow: none; }
.pf-benefit-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--pf-line); }
.pf-benefit-card:hover { transform: none; border-color: rgba(110, 197, 225, .32); background: transparent; }
.pf-benefit-card .pf-card-icon { width: 46px; height: 46px; margin: 0; grid-row: 1 / 3; align-self: start; border: 0; background: rgba(76, 183, 219, .07); color: #67cce7; }
.pf-benefit-card h3 { font-size: 17px; font-weight: 700; }
.pf-benefit-card p { max-width: 440px; }

.pf-trust { width: min(1240px, calc(100% - 40px)); margin: 0 auto; padding: 108px 0; display: grid; grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr); gap: clamp(50px, 8vw, 110px); align-items: start; border-bottom: 1px solid var(--pf-line); background: transparent; }
.pf-trust .pf-section-heading { position: sticky; top: calc(var(--hdr) + 32px); margin-bottom: 0; }
.pf-inline-link { margin-top: 24px; display: inline-flex; gap: 8px; align-items: center; color: #73cde5; font-size: 14px; font-weight: 600; }
.pf-inline-link:hover { color: #a4e4f2; }
.pf-trust-grid { grid-template-columns: 1fr; gap: 0; }
.pf-trust-card { min-height: 128px; padding: 25px 4px; display: grid; grid-template-columns: 46px 1fr; gap: 18px; align-items: start; border: 0; border-top: 1px solid var(--pf-line); border-radius: 0; background: transparent; }
.pf-trust-card:last-child { border-bottom: 1px solid var(--pf-line); }
.pf-trust-card:hover { transform: none; border-color: rgba(110, 197, 225, .32); }
.pf-trust-card > svg { width: 28px; height: 28px; margin-top: 2px; fill: none; stroke: #62cae6; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.pf-trust-card strong { display: block; color: #eef1f1; font-size: 16px; font-weight: 700; }
.pf-trust-card span { display: block; max-width: 500px; margin-top: 7px; color: #899aa9; font-size: 14px; line-height: 1.65; }

.pf-help { padding: 104px 20px; border-top: 1px solid var(--pf-line); background: #07101b; }
.pf-help .pf-section-heading { width: min(1240px, 100%); }
.pf-help-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pf-help-card { min-height: 210px; padding: 25px; }
.pf-help-card > svg { width: 30px; height: 30px; margin-bottom: auto; fill: none; stroke: #66cbe6; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.pf-help-card > span { margin: 22px 0 7px; color: #7090a5; font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.pf-help-card strong { font-weight: 700; }

@media (max-width: 1023px) {
  .pf-trust { grid-template-columns: .8fr 1.2fr; gap: 44px; }
  .pf-help-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .pf-how { width: calc(100% - 28px); padding: 76px 0 68px; }
  .pf-how .pf-section-heading { margin-bottom: 30px; }
  .pf-how-list { grid-template-columns: 1fr; }
  .pf-how-step { min-height: 174px; padding: 24px 4px; border-right: 0; border-bottom: 1px solid var(--pf-line); }
  .pf-how-step:last-child { border-bottom: 0; }
  .pf-benefits { padding: 76px 14px; }
  .pf-benefits .pf-section-heading { margin-left: 0; }
  .pf-benefits-grid { grid-template-columns: 1fr; }
  .pf-benefit-card { min-height: 150px; padding: 24px 0; grid-template-columns: 42px 1fr; column-gap: 15px; }
  .pf-benefit-card:nth-last-child(2) { border-bottom: 0; }
  .pf-benefit-card .pf-card-icon { width: 40px; height: 40px; }
  .pf-trust { width: calc(100% - 28px); padding: 76px 0; grid-template-columns: 1fr; gap: 38px; }
  .pf-trust .pf-section-heading { position: static; }
  .pf-trust-card { min-height: 118px; }
  .pf-help { padding: 76px 14px; }
  .pf-help-grid { grid-template-columns: 1fr; }
  .pf-help-card { min-height: 178px; }
}

/* Mobile control arbitration, accessible states and restrained motion. */
.pf-motion-ready .pf-reveal { transition-delay: var(--pf-reveal-delay, 0ms); }
.hero-network { opacity: 0; transform: translateY(12px); transition: opacity .65s ease, transform .65s cubic-bezier(.2, .75, .25, 1); }
.hero-network.is-ready { opacity: 1; transform: none; }
.pf-cta-pressed { transform: translateY(1px) scale(.985) !important; }
.compare-clear { border: 0; background: transparent; font-family: inherit; }
.compare-clear:focus-visible, .faq-q:focus-visible, .pf-show-all:focus-visible { outline-color: #67d2ec; }
.pf-offer-zone .cfhp-dot { background: #62cbe6 !important; box-shadow: 0 0 0 5px rgba(98, 203, 230, .08) !important; }
.pf-offer-zone .cfhp-price { color: #f6f5f0 !important; }
.pf-offer-zone .cfhp-cta { border-color: rgba(80, 189, 224, .3) !important; background: #247cff !important; box-shadow: 0 10px 26px rgba(36, 124, 255, .2) !important; }
.pf-offer-zone .cfhp-cta::before { display: none !important; }
.pf-offer-zone .cfhp-tag { border-color: var(--pf-line) !important; background: rgba(255, 255, 255, .035) !important; color: #aab9c5 !important; }
.footer-brand-logo img { width: 28px; height: 28px; object-fit: cover; border-radius: 7px; opacity: .38; filter: none; }

@media (max-width: 767px) {
  body.pf-compare-active { padding-bottom: 108px; }
  .pf-home-page .wa-float, .pf-home-page #filter-fab, .pf-compare-active .wa-float { display: none !important; }
  .compare-bar.visible { min-height: 92px; padding: 10px 12px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
  .compare-slots { min-width: 0; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
  .compare-slots::-webkit-scrollbar { display: none; }
  .compare-slot { min-width: 104px; padding: 7px 9px; }
  .compare-slot:not(.filled) { display: none; }
  .btn-compare { min-height: 46px; padding: 10px 14px; }
  .compare-clear { grid-column: 1 / -1; justify-self: center; padding: 2px 8px; }
  .mobile-nav { border-top: 1px solid var(--pf-line); box-shadow: 0 22px 50px rgba(0, 0, 0, .35); }
  .mobile-nav a { min-height: 50px; display: flex; align-items: center; padding: 13px 18px; }
  .form-row input, .form-row select, .form-row textarea { min-height: 50px; font-size: 16px; }
  #row-casa-condominio-datos > div, #row-depto-datos > div { display: grid !important; grid-template-columns: 1fr !important; gap: 12px !important; }
  #inst_day_btns { display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  #inst_day_btns button { min-width: 0 !important; padding-inline: 6px !important; }
  .horario-btn { min-width: 88px; min-height: 48px; }
  .pf-offer-zone .cfhp-tags { gap: 6px !important; }
  .pf-offer-zone .cfhp-tag { font-size: 11px !important; }
}

@media (max-width: 390px) {
  .site-header { gap: 6px; }
  .hdr-right { gap: 6px; }
  .hdr-cta { padding-inline: 10px; }
  .hero--home .btn-prim { min-height: 50px; }
  .hero--home .btn-sec { min-height: 44px; }
  .pf-proof-strip { width: calc(100% - 26px); }
  .pf-offer-zone { width: calc(100% - 20px); }
  #inst_day_btns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Corrections verified in the rendered 3.1 audit. */
.pf-home-page .wa-float { display: none !important; }
.pf-offer-zone .cfhp-title { color: #f7f5f0 !important; }
.pf-curated-catalog .section-head h2 { display: block; }
.pf-curated-catalog .section-head .plan-count-badge { width: max-content; margin: 14px 0 0; display: flex; }
.pf-curated-catalog:not(.is-expanded) .plan-img-wrap { display: none; }
.pf-curated-catalog .badge-min { display: none !important; }

@media (min-width: 768px) and (max-width: 900px) {
  .hero-shell { min-height: 0; padding: 70px 0 54px; display: flex; flex-direction: column; align-items: stretch; gap: 28px; }
  .hero-copy { max-width: 690px; }
  .hero-title-main { font-size: clamp(3.7rem, 9vw, 4.7rem); }
  .hero-network { width: min(100%, 460px); height: 260px; margin: 0 auto; overflow: hidden; transform: none; }
  .network-orbit--outer { width: 330px; height: 330px; }
  .network-orbit--inner { width: 225px; height: 225px; }
  .network-lines, .network-node { display: none; }
  .network-home { width: 140px; height: 140px; }
  .network-home svg { width: 44px; height: 44px; }
  .network-status { bottom: 0; }
}

@media (max-width: 767px) {
  .hdr-logo-img { display: none; }
  .hdr-cta { font-size: 11px; white-space: nowrap; }
  .hdr-whatsapp, .hdr-burger, .hdr-cta { min-height: 44px; }
  .chip, .filter-sort, .filter-select, .btn-cmp-toggle, .btn-ver-mas { min-height: 44px; }
  .btn-ver-mas { display: inline-flex; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-network { opacity: 1; transform: none; }
  .pf-motion-ready .pf-reveal { transition-delay: 0ms; }
}
