:root {
  --red: #b0241f;
  --red-bright: #ef3f34;
  --plum: #2a0d3b;
  --violet: #7c3aed;
  --gold: #d4a017;
  --ink: #211b25;
  --muted: #665f6b;
  --line: #e7e1e9;
  --paper: #ffffff;
  --mist: #f7f5f8;
  --shadow: 0 18px 45px rgba(42, 13, 59, 0.12);
  --radius: 1.25rem;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--red); text-underline-offset: 0.18em; }
a:hover { color: var(--plum); }
button, input, select, textarea { font: inherit; }
button, .button { min-height: 44px; }
:focus-visible { outline: 3px solid rgba(124, 58, 237, 0.42); outline-offset: 3px; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; padding: 0.75rem 1rem; background: var(--paper); color: var(--plum); border-radius: 0.6rem; box-shadow: var(--shadow); }
.skip-link:focus { top: 1rem; }
.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2rem), 780px); margin-inline: auto; }
.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.section-sm { padding: 2.5rem 0; }
.surface { background: var(--mist); }
.eyebrow { margin: 0 0 0.65rem; color: var(--red); font-size: 0.78rem; font-weight: 850; letter-spacing: 0.14em; text-transform: uppercase; }
h1, h2, h3 { margin: 0 0 0.8rem; color: var(--plum); line-height: 1.08; letter-spacing: -0.035em; }
h1 { max-width: 900px; font-size: clamp(2.55rem, 7vw, 5.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
p { margin: 0 0 1rem; }
.lead { max-width: 720px; color: #554c59; font-size: clamp(1.08rem, 2vw, 1.3rem); }
.micro, small { color: var(--muted); font-size: 0.86rem; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; }
.section-heading > div { max-width: 760px; }

.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(42, 13, 59, 0.09); background: rgba(255,255,255,0.94); backdrop-filter: blur(16px); }
.nav-wrap { min-height: 74px; display: flex; align-items: center; gap: 1.2rem; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 146px; max-height: 46px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 0.2rem; margin-left: auto; }
.main-nav a { padding: 0.65rem 0.75rem; color: var(--ink); font-size: 0.92rem; font-weight: 720; text-decoration: none; border-radius: 0.55rem; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--red); background: #fff3f1; }
.header-cta { white-space: nowrap; }
.nav-toggle { display: none; margin-left: auto; width: 44px; border: 1px solid var(--line); border-radius: 0.65rem; background: var(--paper); color: var(--plum); }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ""; display: block; width: 20px; height: 2px; margin: 4px auto; background: currentColor; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem; padding: 0.78rem 1.1rem; border: 1px solid transparent; border-radius: 0.7rem; background: var(--red); color: #fff; font-weight: 800; line-height: 1.15; text-align: center; text-decoration: none; cursor: pointer; transition: transform 160ms ease, background 160ms ease; }
.button:hover { transform: translateY(-1px); background: #8f1c18; color: #fff; }
.button-secondary { border-color: var(--plum); background: transparent; color: var(--plum); }
.button-secondary:hover { background: var(--plum); color: #fff; }
.button-light { background: #fff; color: var(--plum); }
.button-light:hover { background: #f3edf6; color: var(--plum); }
.button-violet { background: var(--violet); }
.button-violet:hover { background: #6128c7; }
.actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.6rem; }

.hero { position: relative; overflow: hidden; padding: clamp(4rem, 8vw, 7rem) 0; background: radial-gradient(circle at 88% 12%, rgba(239,63,52,.12), transparent 30%), linear-gradient(132deg, #fff 0 56%, #f4ecf7 56%); }
.hero::before { content: ""; position: absolute; width: 26rem; height: 26rem; right: -8rem; top: -10rem; border-radius: 50%; border: 5rem solid rgba(239,63,52,0.09); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero-grid > * { min-width: 0; }
.hero h1 { font-size: clamp(2.7rem, 5.4vw, 5.15rem); }
.hero h1 em { color: var(--red); font-style: normal; }
.hero-card { position: relative; padding: 2rem; border-radius: 1.5rem; background: var(--plum); color: #fff; box-shadow: var(--shadow); }
.hero-card h2, .hero-card h3 { color: #fff; }
.hero-card .speed { display: block; margin: 1rem 0 0; color: #fff; font-size: clamp(3.2rem, 8vw, 5.8rem); font-weight: 900; line-height: 0.9; letter-spacing: -0.07em; }
.hero-card .unit { color: #f4c9ff; font-weight: 800; }
.signal { display: flex; align-items: end; gap: 5px; height: 42px; margin-bottom: 1.25rem; }
.signal i { display: block; width: 9px; border-radius: 5px; background: var(--red-bright); }
.signal i:nth-child(1) { height: 10px; }.signal i:nth-child(2) { height: 18px; }.signal i:nth-child(3) { height: 28px; }.signal i:nth-child(4) { height: 40px; background: var(--gold); }

.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.hero-carousel { min-width: 0; padding: .65rem; border: 1px solid rgba(255,255,255,.72); border-radius: 1.65rem; background: rgba(255,255,255,.58); box-shadow: 0 30px 80px rgba(42,13,59,.2); backdrop-filter: blur(12px); }
.carousel-viewport { position: relative; overflow: hidden; aspect-ratio: 1916 / 821; border-radius: 1.2rem; background: var(--plum); isolation: isolate; }
.carousel-slide { position: absolute; inset: 0; margin: 0; animation: carousel-reveal 420ms ease both; }
.carousel-slide[hidden] { display: none; }
.carousel-slide picture, .carousel-slide img { width: 100%; height: 100%; }
.carousel-slide img { object-fit: cover; }
.carousel-slide:nth-child(3) img { object-position: center 43%; }
.carousel-slide::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(25,5,35,.67)); pointer-events: none; }
.slide-data { position: absolute; z-index: 1; left: clamp(.8rem, 3vw, 1.35rem); bottom: clamp(.8rem, 3vw, 1.25rem); display: grid; max-width: min(72%, 300px); gap: .08rem; padding: .62rem .78rem; border: 1px solid rgba(255,255,255,.25); border-radius: .72rem; background: rgba(27,7,38,.7); color: #fff; box-shadow: 0 8px 30px rgba(0,0,0,.2); backdrop-filter: blur(9px); }
.slide-data span { color: #f8c1bd; font-size: .68rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.slide-data strong { font-size: clamp(.82rem, 1.5vw, 1rem); line-height: 1.25; }
.carousel-arrow { position: absolute; z-index: 2; top: 50%; display: grid; place-items: center; width: 44px; min-height: 44px; padding: 0; transform: translateY(-50%); border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: rgba(30,9,42,.74); color: #fff; font-size: 1.25rem; line-height: 1; cursor: pointer; box-shadow: 0 5px 18px rgba(0,0,0,.22); transition: background 160ms ease, transform 160ms ease; }
.carousel-arrow:hover { transform: translateY(-50%) scale(1.05); background: var(--red); }
.carousel-prev { left: .7rem; }
.carousel-next { right: .7rem; }
.carousel-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 42px; padding: .7rem .4rem .1rem; }
.carousel-dots { display: flex; gap: .48rem; }
.carousel-dots button { position: relative; width: 30px; min-height: 44px; padding: 0; border: 0; background: transparent; cursor: pointer; transition: width 180ms ease; }
.carousel-dots button::before { content: ""; position: absolute; inset: 50% 0 auto; height: 8px; transform: translateY(-50%); border-radius: 999px; background: #c9becd; transition: background 180ms ease; }
.carousel-dots button[aria-current="true"] { width: 48px; }
.carousel-dots button[aria-current="true"]::before { background: var(--red); }
.carousel-count { color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .08em; }
.carousel-count strong { color: var(--plum); font-size: 1rem; }
@keyframes carousel-reveal { from { opacity: .25; transform: scale(1.015); } to { opacity: 1; transform: scale(1); } }

.trust-strip { border-block: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { padding: 1.35rem clamp(1rem, 3vw, 2.5rem); border-right: 1px solid var(--line); }
.trust-item:last-child { border: 0; }
.trust-item strong { display: block; color: var(--plum); font-size: 1.03rem; }

.grid-2, .grid-3, .grid-4 { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { padding: clamp(1.25rem, 3vw, 2rem); border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.card p:last-child { margin-bottom: 0; }
.icon-box { display: grid; place-items: center; width: 2.8rem; height: 2.8rem; margin-bottom: 1rem; border-radius: 0.75rem; background: #fbe8e7; color: var(--red); font-size: 1.25rem; font-weight: 900; }
.dark-panel { overflow: hidden; padding: clamp(2rem, 5vw, 4rem); border-radius: 1.6rem; background: var(--plum); color: #eee4f3; }
.dark-panel h2, .dark-panel h3 { color: #fff; }
.coverage-panel { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.coverage-map { min-height: 280px; position: relative; border: 1px solid rgba(255,255,255,0.16); border-radius: 1rem; background: radial-gradient(circle at 27% 31%, rgba(239,63,52,.85) 0 6px, transparent 7px), radial-gradient(circle at 68% 57%, rgba(212,160,23,.9) 0 6px, transparent 7px), radial-gradient(circle at 47% 76%, rgba(124,58,237,.9) 0 6px, transparent 7px), linear-gradient(142deg, rgba(255,255,255,.08), rgba(255,255,255,.02)); }
.coverage-map::before, .coverage-map::after { content: ""; position: absolute; inset: 18% 13%; border: 1px dashed rgba(255,255,255,.28); border-radius: 47% 55% 42% 60%; transform: rotate(8deg); }
.coverage-map::after { inset: 31% 23%; transform: rotate(-24deg); }
.coverage-areas { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
.coverage-area { --area-accent: var(--red); --area-soft: #fff0ef; --area-ring: rgba(176,36,31,.11); position: relative; display: flex; min-height: 310px; flex-direction: column; overflow: hidden; padding: 1.7rem; border: 1px solid var(--line); border-top: 6px solid var(--area-accent); border-radius: var(--radius); background: #fff; box-shadow: 0 12px 30px rgba(42,13,59,.07); }
.coverage-area::after { content: ""; position: absolute; right: -2.7rem; top: -3rem; width: 8rem; height: 8rem; border: 1.4rem solid var(--area-ring); border-radius: 50%; pointer-events: none; }
.coverage-area.violet { --area-accent: var(--violet); --area-soft: #f3edff; --area-ring: rgba(124,58,237,.11); }
.coverage-area.gold { --area-accent: var(--gold); --area-soft: #fff8df; --area-ring: rgba(212,160,23,.13); }
.area-region { margin: 0 0 .2rem; color: var(--muted); font-size: .78rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.coverage-area h3 { max-width: 85%; font-size: clamp(1.6rem, 3vw, 2.15rem); }
.scope-tag { align-self: flex-start; margin: .75rem 0 1rem; padding: .34rem .68rem; border-radius: 999px; background: var(--area-soft); color: var(--area-accent); font-size: .75rem; font-weight: 900; letter-spacing: .03em; text-transform: uppercase; }
.coverage-area p:not(.area-region) { color: var(--muted); }
.coverage-area .button { width: 100%; margin-top: auto; border-color: var(--area-accent); background: transparent; color: var(--area-accent); }
.coverage-area .button:hover { background: var(--area-accent); color: #fff; }
.coverage-disclaimer { display: flex; gap: .85rem; align-items: flex-start; margin-top: 1.3rem; padding: 1.15rem 1.25rem; border: 1px solid #ead79c; border-radius: .85rem; background: #fff9e8; color: #5c4814; }
.coverage-disclaimer::before { content: "i"; display: grid; flex: 0 0 auto; place-items: center; width: 1.55rem; height: 1.55rem; border-radius: 50%; background: var(--gold); color: #fff; font-size: .82rem; font-weight: 900; }
.field-hint { margin: 0; color: var(--muted); font-size: .78rem; }

.tabs { display: inline-flex; gap: 0.25rem; margin-bottom: 1.75rem; padding: 0.3rem; border-radius: 0.75rem; background: #ede8ef; }
.tabs button { min-height: 40px; padding: 0.55rem 1rem; border: 0; border-radius: 0.55rem; background: transparent; color: var(--muted); font-weight: 800; cursor: pointer; }
.tabs button[aria-selected="true"] { background: #fff; color: var(--plum); box-shadow: 0 3px 12px rgba(42,13,59,.1); }
[data-tab-panel][hidden] { display: none; }
.plans-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; align-items: stretch; }
.plan-card { --accent: var(--red); position: relative; display: flex; flex-direction: column; padding: 1.6rem; border: 1px solid var(--line); border-top: 6px solid var(--accent); border-radius: var(--radius); background: #fff; box-shadow: 0 8px 24px rgba(42,13,59,.06); }
.plan-card.violet { --accent: var(--violet); }.plan-card.gold { --accent: var(--gold); }.plan-card.plum { --accent: var(--plum); }
.plan-card.featured { transform: translateY(-8px); box-shadow: var(--shadow); }
.badge { position: absolute; top: 0; right: 1rem; transform: translateY(-50%); padding: 0.3rem 0.65rem; border-radius: 999px; background: var(--accent); color: #fff; font-size: .72rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.plan-name { color: var(--accent); font-size: .82rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.plan-speed { margin: 0.15rem 0 1rem; color: var(--plum); font-size: clamp(2.25rem, 5vw, 3.6rem); font-weight: 900; line-height: 1; letter-spacing: -.06em; }
.plan-speed span { font-size: 1rem; letter-spacing: 0; }
.price { display: flex; align-items: start; margin: 0.35rem 0 0; color: var(--plum); font-weight: 900; line-height: 1; }
.price .currency { margin-top: .35rem; font-size: 1.2rem; }.price .amount { font-size: 3rem; letter-spacing: -.06em; }.price .period { align-self: end; margin: 0 0 .35rem .3rem; color: var(--muted); font-size: .8rem; font-weight: 650; }
.iva-label { margin: .25rem 0 0; color: var(--red); font-size: .76rem; font-weight: 850; text-transform: uppercase; }
.base-price { color: var(--muted); font-size: .82rem; }
.features { flex: 1; margin: 1.3rem 0; padding: 0; list-style: none; }
.features li { position: relative; padding: .38rem 0 .38rem 1.45rem; border-bottom: 1px solid #f0ecf1; }
.features li::before { content: ""; position: absolute; left: 0; top: .8rem; width: .55rem; height: .3rem; border: solid var(--accent); border-width: 0 0 2px 2px; transform: rotate(-45deg); }
.plan-card .button { width: 100%; background: var(--accent); }
.plan-card .button:hover { filter: brightness(.85); }
.plan-note { margin-top: 1.5rem; padding: 1rem 1.2rem; border-left: 4px solid var(--gold); background: #fff9e8; color: #5c4814; }

.comparison { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.comparison .card { position: relative; padding-top: 3rem; }
.comparison .card::before { content: ""; position: absolute; left: 1.7rem; top: 1.4rem; width: 3rem; height: 4px; background: var(--red); }
.steps { counter-reset: steps; }
.step { position: relative; padding-left: 4.4rem; }
.step::before { counter-increment: steps; content: counter(steps, decimal-leading-zero); position: absolute; left: 0; top: 0; color: var(--red); font-size: 1.8rem; font-weight: 900; }

.form-card { padding: clamp(1.4rem, 4vw, 2.5rem); border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .38rem; }
.field-full { grid-column: 1 / -1; }
label, legend { color: var(--plum); font-weight: 780; }
input, select, textarea { width: 100%; min-height: 48px; padding: .72rem .8rem; border: 1px solid #bdb4c1; border-radius: .55rem; background: #fff; color: var(--ink); }
textarea { min-height: 112px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(124,58,237,.12); outline: 0; }
[aria-invalid="true"] { border-color: var(--red); }
.error-text { min-height: 1em; color: var(--red); font-size: .78rem; }
.radio-row { display: flex; flex-wrap: wrap; gap: .7rem; }
.radio-card { flex: 1 1 160px; display: flex; align-items: center; gap: .5rem; min-height: 48px; padding: .7rem .8rem; border: 1px solid var(--line); border-radius: .6rem; cursor: pointer; }
.radio-card input { width: auto; min-height: 0; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { display: none; margin: 1rem 0 0; padding: 1rem; border-radius: .6rem; }
.form-status.show { display: block; }
.form-status.success { background: #e9f7ef; color: #145c31; }.form-status.error { background: #fff0ef; color: #84201b; }
.summary { padding: 1.2rem; border-radius: .8rem; background: var(--mist); }
.summary strong { color: var(--plum); }

.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 1.15rem 2.2rem 1.15rem 0; color: var(--plum); font-weight: 850; cursor: pointer; list-style: none; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: .3rem; top: .85rem; color: var(--red); font-size: 1.55rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 780px; padding-bottom: 1rem; color: var(--muted); }
.breadcrumbs { padding: 1rem 0; color: var(--muted); font-size: .82rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .45rem; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li + li::before { content: "/"; margin-right: .45rem; color: #aaa1ae; }
.page-hero { padding: clamp(3rem, 7vw, 6rem) 0; background: radial-gradient(circle at 85% 10%, rgba(239,63,52,.1), transparent 28%), linear-gradient(120deg, #fbf8fc, #fff2f0); }
.page-hero h1 { max-width: 980px; font-size: clamp(2.5rem, 6vw, 4.8rem); }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(380px, 1.08fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.page-hero-copy { position: relative; z-index: 1; min-width: 0; }
.page-hero-visual h1 { font-size: clamp(2.5rem, 5vw, 4.45rem); }
.plan-visual { position: relative; min-width: 0; margin: 0; overflow: hidden; aspect-ratio: 1916 / 821; border: .65rem solid rgba(255,255,255,.72); border-radius: 1.55rem; background: var(--plum); box-shadow: 0 28px 65px rgba(42,13,59,.18); }
.plan-visual picture, .plan-visual img { width: 100%; height: 100%; }
.plan-visual img { object-fit: cover; }
.plan-visual figcaption { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding: .7rem .85rem; border: 1px solid rgba(255,255,255,.28); border-radius: .75rem; background: rgba(31,8,43,.78); color: #fff; backdrop-filter: blur(8px); }
.plan-visual figcaption strong { line-height: 1.2; }
.plan-visual figcaption span { color: #f7cbc8; font-size: .76rem; font-weight: 800; text-align: right; }
.legal h2 { margin-top: 2.4rem; font-size: 1.6rem; }.legal h3 { margin-top: 1.6rem; font-size: 1.15rem; }

.site-footer { padding: 3.5rem 0 1.2rem; background: #1e092a; color: #d9cfdd; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 2rem; }
.footer-brand img { width: 160px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.site-footer h2, .site-footer h3 { color: #fff; font-size: 1rem; letter-spacing: 0; }
.site-footer a { color: #e9dff0; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin: .5rem 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.13); font-size: .8rem; }
.whatsapp-float { position: fixed; right: 1rem; bottom: 1rem; z-index: 40; display: inline-flex; align-items: center; gap: .5rem; padding: .75rem 1rem; border-radius: 999px; background: #176b42; color: #fff; box-shadow: 0 12px 28px rgba(0,0,0,.2); font-weight: 820; text-decoration: none; }
.whatsapp-float:hover { background: #105232; color: #fff; }

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .main-nav { position: absolute; left: 1rem; right: 1rem; top: calc(100% + .35rem); display: none; align-items: stretch; flex-direction: column; padding: .6rem; border: 1px solid var(--line); border-radius: .8rem; background: #fff; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .header-cta { display: none; }
  .hero-grid, .coverage-panel, .page-hero-grid { grid-template-columns: 1fr; }
  .hero-card, .hero-carousel, .plan-visual { width: min(100%, 720px); }
  .plans-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-areas { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .coverage-area:last-child { grid-column: 1 / -1; min-height: 270px; }
}
@media (max-width: 650px) {
  .container, .narrow { width: min(calc(100% - 1.25rem), var(--max)); }
  .section { padding: 3.5rem 0; }
  .section-heading { align-items: start; flex-direction: column; gap: .5rem; }
  .hero { padding: 3.5rem 0; background: linear-gradient(155deg, #fff 0 64%, #f4ecf7 64%); }
  .hero h1 { font-size: clamp(2.45rem, 12vw, 3.7rem); }
  .hero-carousel { padding: .42rem; border-radius: 1.15rem; }
  .carousel-viewport { min-height: 260px; aspect-ratio: 4 / 3; border-radius: .9rem; }
  .carousel-slide img { object-position: center; }
  .carousel-arrow { width: 42px; min-height: 42px; }
  .slide-data { max-width: calc(100% - 5.5rem); }
  .page-hero-visual { padding-top: 2.75rem; }
  .plan-visual { min-height: 255px; aspect-ratio: 4 / 3; border-width: .4rem; border-radius: 1.1rem; }
  .plan-visual img { object-position: 68% center; }
  .plan-visual figcaption { align-items: flex-start; flex-direction: column; }
  .plan-visual figcaption span { text-align: left; }
  .trust-grid, .plans-grid, .grid-2, .grid-3, .grid-4, .comparison, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .coverage-areas { grid-template-columns: 1fr; }
  .coverage-area, .coverage-area:last-child { grid-column: auto; min-height: 0; }
  .coverage-disclaimer { padding: 1rem; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .plan-card.featured { transform: none; }
  .field-full { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { width: 50px; height: 50px; justify-content: center; padding: 0; font-size: 1.2rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
@media print {
  .site-header, .site-footer, .whatsapp-float, .actions { display: none; }
  body { color: #000; }
}
