/* ══════════════════════════════════════════
   NAYAMA – tarifas.css  (tema claro 2026)
   ══════════════════════════════════════════ */

/* ── COOKIE BANNER ── */
#nayama-cookie-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.55); z-index: 9998;
  backdrop-filter: blur(3px); animation: ncFadeIn .25s ease;
}
#nayama-cookie-overlay.nc-visible { display: block; }
#nayama-cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 9999; padding: 0 5vw 24px;
  transform: translateY(110%);
  transition: transform .45s cubic-bezier(.22,.85,.36,1);
}
#nayama-cookie-banner.nc-visible { transform: translateY(0); }
.nc-card {
  max-width: 960px; margin: 0 auto;
  background: #fff; border: 1px solid rgba(0,0,0,.1);
  border-radius: 20px; padding: 28px 32px;
  box-shadow: 0 -4px 60px rgba(0,0,0,.12), 0 0 0 1px rgba(0,102,255,.06);
}
.nc-row-top { display: flex; gap: 24px; align-items: flex-start; flex-wrap: wrap; }
.nc-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(0,102,255,0.08); border: 1px solid rgba(0,102,255,.2);
  border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
}
.nc-text { flex: 1; min-width: 220px; }
.nc-text h3 { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: #0d0d0d; }
.nc-text p { font-family: 'DM Sans', sans-serif; font-size: 0.85rem; color: #5a6880; line-height: 1.6; }
.nc-text a { color: #0066ff; text-decoration: underline; text-underline-offset: 3px; }
.nc-btns { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; flex-shrink: 0; }
.nc-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 500;
  cursor: pointer; border: none;
  transition: opacity .2s, transform .15s, background .2s; white-space: nowrap;
}
.nc-btn:hover { transform: translateY(-1px); opacity: .92; }
.nc-btn-accept { background: #0066ff; color: #fff; }
.nc-btn-reject { background: transparent; color: #5a6880; border: 1px solid rgba(0,0,0,0.15); }
.nc-btn-config { background: transparent; color: #5a6880; border: 1px solid rgba(0,0,0,0.15); }
.nc-btn-save { background: #0066ff; color: #fff; flex: 1; justify-content: center; }
.nc-prefs { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.22,.85,.36,1), opacity .3s ease; opacity: 0; }
.nc-prefs.nc-open { max-height: 600px; opacity: 1; }
.nc-prefs-inner { border-top: 1px solid rgba(0,0,0,.08); margin-top: 20px; padding-top: 20px; display: flex; flex-direction: column; gap: 14px; }
.nc-cat { background: #f5f7fa; border: 1px solid rgba(0,0,0,.07); border-radius: 14px; padding: 16px 20px; display: flex; align-items: flex-start; gap: 16px; }
.nc-cat-info { flex: 1; }
.nc-cat-info strong { display: block; font-family: 'Syne', sans-serif; font-size: 0.9rem; color: #0d0d0d; margin-bottom: 4px; }
.nc-cat-info span { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; color: #5a6880; line-height: 1.5; }
.nc-badge-req { font-family: 'DM Sans', sans-serif; font-size: 0.72rem; color: #0066ff; background: rgba(0,102,255,0.06); border: 1px solid rgba(0,102,255,.2); border-radius: 100px; padding: 2px 10px; flex-shrink: 0; align-self: center; white-space: nowrap; }
.nc-toggle { position: relative; width: 44px; height: 24px; flex-shrink: 0; align-self: center; }
.nc-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.nc-toggle-track { position: absolute; inset: 0; background: rgba(0,0,0,.12); border-radius: 100px; cursor: pointer; transition: background .25s; }
.nc-toggle input:checked + .nc-toggle-track { background: #0066ff; }
.nc-toggle input:disabled + .nc-toggle-track { cursor: not-allowed; opacity: .6; }
.nc-toggle-track::after { content: ''; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; background: #fff; border-radius: 50%; transition: transform .25s; box-shadow: 0 1px 4px rgba(0,0,0,.2); }
.nc-toggle input:checked + .nc-toggle-track::after { transform: translateX(20px); }
.nc-prefs-foot { display: flex; gap: 10px; margin-top: 4px; flex-wrap: wrap; }
@keyframes ncFadeIn { from { opacity: 0; } to { opacity: 1; } }
@media (max-width: 680px) {
  .nc-card { padding: 20px 18px; }
  .nc-row-top { flex-direction: column; gap: 16px; }
  .nc-btns { width: 100%; }
  .nc-btn { flex: 1; justify-content: center; }
  .nc-btn-accept { order: -1; }
  .nc-prefs-foot .nc-btn-save { width: 100%; }
}

/* ── VARIABLES ── */
:root {
  --sky: #0066ff;
  --sky-dark: #0052cc;
  --mint: #00b2a9;
  --dark: #ffffff;
  --dark2: #f5f7fa;
  --dark3: #eaf0fb;
  --border: rgba(0,0,0,0.1);
  --text: #0d0d0d;
  --muted: #5a6880;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { background: var(--dark); color: var(--text); font-family: var(--font-body); font-size: 16px; line-height: 1.7; overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 68px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-head); font-weight: 800; font-size: 1.15rem;
  letter-spacing: -0.02em; text-decoration: none; color: var(--text);
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sky); box-shadow: 0 0 12px var(--sky);
  animation: pulse 2s infinite; flex-shrink: 0;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.85rem; transition: color .2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--sky); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 20px; border-radius: 100px;
  background: var(--sky); color: #fff;
  font-family: var(--font-body); font-weight: 500; font-size: 0.88rem;
  text-decoration: none; transition: background .2s, transform .15s;
  border: none; cursor: pointer; white-space: nowrap;
}
.nav-cta:hover { background: var(--sky-dark); transform: translateY(-1px); }
.nav-mobile-btn { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; }

/* ── MOBILE DRAWER ── */
.nav-drawer {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(255,255,255,0.99); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); z-index: 99;
  overflow: hidden; max-height: 0;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease; opacity: 0;
}
.nav-drawer.open { max-height: 500px; opacity: 1; }
.nav-drawer ul { list-style: none; padding: 1rem 5vw 0.5rem; }
.nav-drawer ul li a {
  display: block; padding: 0.8rem 0; color: var(--muted);
  text-decoration: none; font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid var(--border); transition: color .2s;
}
.nav-drawer ul li:last-child a { border-bottom: none; }
.nav-drawer ul li a:hover { color: var(--text); }
.drawer-cta {
  display: block; margin: 1rem 5vw 1.2rem; padding: 12px 20px;
  background: var(--sky); color: #fff; text-align: center;
  border-radius: 100px; font-weight: 500; text-decoration: none;
  transition: background .2s;
}
.drawer-cta:hover { background: var(--sky-dark); }

/* ── HERO ── */
#hero {
  padding: 120px 5vw 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
#hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(0,102,255,0.07) 0%, transparent 70%);
}
#hero::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
}
.hero-h1 {
  position: relative; z-index: 1;
  font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.05;
  margin-bottom: 1rem;
}
.hero-h1 em { font-style: normal; color: var(--sky); }
.hero-sub {
  position: relative; z-index: 1;
  color: var(--muted); font-size: 1.05rem;
  max-width: 580px; margin: 0 auto 2.5rem;
}

/* ── TABS ── */
.tabs-container {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.tab-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 20px; border-radius: 100px;
  background: var(--dark2); border: 1px solid var(--border);
  color: var(--muted); text-decoration: none;
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 500;
  transition: background .2s, border-color .2s, color .2s, transform .15s;
  white-space: nowrap;
}
.tab-btn:hover { background: #fff; border-color: rgba(0,102,255,0.4); color: var(--sky); transform: translateY(-1px); }

/* ── SECTIONS ── */
section { padding: 80px 5vw; }
section:nth-child(even) { background: var(--dark2); }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--sky); margin-bottom: 0.75rem;
}
.section-label::before { content:''; display:block; width:20px; height:1px; background:var(--sky); }
.section-title {
  font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.1;
  margin-bottom: 2rem;
}
.section-title em { font-style: normal; color: var(--sky); }
h4 {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 500;
  color: var(--muted); letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}

/* ── PRICING GRID ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 1.5rem;
}

/* ── PRICE CARD ── */
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,102,255,0.08);
  display: flex;
  flex-direction: column;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.price-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--mint));
  opacity: 0; transition: opacity .3s;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,102,255,0.35);
  box-shadow: 0 12px 40px rgba(0,102,255,0.14);
}
.price-card:hover::before { opacity: 1; }

/* Cabecera degradada (como promo-card-header) */
.price-card-head {
  background: linear-gradient(135deg, var(--sky) 0%, var(--sky-dark) 100%);
  padding: 20px 24px 18px;
  position: relative;
  overflow: hidden;
}
.price-card-head::after {
  content: '';
  position: absolute; top: -30px; right: -30px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(255,255,255,0.08); pointer-events: none;
}
/* Cuerpo de la ficha: padding lateral */
.price-card-body {
  padding: 0 24px 24px;
  display: flex; flex-direction: column; flex: 1;
}

.card-title {
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 700;
  margin-bottom: 0; color: #fff;
}
.card-badge {
  display: inline-block; margin-bottom: 10px;
  padding: 3px 12px; border-radius: 100px; font-size: 0.68rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  background: rgba(0,102,255,0.08); color: var(--sky);
  border: 1px solid rgba(0,102,255,0.2);
}

.price-box { margin: 1rem 0; }
.price-num {
  font-family: var(--font-head); font-size: 3.2rem; font-weight: 800;
  line-height: 1; letter-spacing: -0.03em; color: var(--text);
}
.price-num span {
  font-family: var(--font-body); font-size: 1.1rem; font-weight: 500;
  color: var(--muted); vertical-align: middle;
}
/* Título en cabecera degradada */
.price-card-head .card-title { color: #fff; }
.price-card-head .card-badge {
  background: rgba(255,255,255,0.18);
  color: #fff; border-color: rgba(255,255,255,0.3);
}
.price-period {
  font-size: 0.8rem; color: var(--muted); margin-top: 4px;
  text-transform: uppercase; letter-spacing: .04em;
}

/* Separador sutil bajo el precio */
.price-box::after {
  content: '';
  display: block; width: 32px; height: 2px;
  background: linear-gradient(90deg, var(--sky), var(--mint));
  margin-top: 14px; border-radius: 2px;
}

.features-list {
  list-style: none; display: flex; flex-direction: column; gap: 9px;
  margin-top: auto; padding-top: 4px;
}
.features-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.875rem; color: var(--muted); line-height: 1.5;
}
.features-list li::before {
  content: '✓';
  display: inline-block; flex-shrink: 0;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(0,178,169,0.12);
  color: var(--mint);
  font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}

/* ── COVERAGE BADGES ── */
.operator-header {
  display: flex; align-items: center; gap: 12px;
  margin: 2.5rem 0 1.5rem; flex-wrap: wrap;
}
.operator-logo-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 100px;
  font-family: var(--font-head); font-size: 0.9rem; font-weight: 800;
  border: 2px solid; letter-spacing: -0.01em;
}

/* ── SERVICES GRID (adicionales) ── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px; margin-top: 1.5rem;
}
.srv-card {
  background: var(--dark); border: 1px solid var(--border);
  border-radius: 16px; padding: 22px;
  transition: transform .2s, border-color .2s;
}
.srv-card:hover { transform: translateY(-2px); border-color: rgba(0,102,255,0.35); }
.srv-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; gap: 8px; }
.srv-title { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; }
.srv-price { font-family: var(--font-head); font-weight: 800; color: var(--sky); font-size: 0.95rem; white-space: nowrap; }
.srv-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ── DEVICES ── */
.devices-section { background: var(--dark2); }
.devices-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px; margin-top: 2rem;
}
.device-card {
  background: rgba(121, 167, 234, 0.5);
  border: 1px solid rgba(79, 138, 214, 0.6);
  border-radius: 16px; padding: 24px 16px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: transform .2s, border-color .2s, background .2s;
}
.device-card:hover { transform: translateY(-3px); background: rgba(121, 167, 234, 0.25); border-color: rgba(79, 138, 214, 0.35); }
.device-brand { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; }
.device-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }
.device-cta-card {
  background: linear-gradient(135deg, rgba(0,102,255,0.06), rgba(0,178,169,0.04));
  border: 1px solid rgba(0,102,255,0.2); border-radius: 16px;
  padding: 28px 24px; display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center; gap: 16px;
  grid-column: span 2;
}
.device-cta-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
.device-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: 100px;
  background: var(--sky); color: #fff;
  font-family: var(--font-body); font-weight: 500; font-size: 0.9rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-primary:hover { background: var(--sky-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,102,255,0.25); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 26px; border-radius: 100px;
  background: transparent; color: var(--text);
  font-family: var(--font-body); font-weight: 500; font-size: 0.9rem;
  text-decoration: none; border: 1px solid var(--border); cursor: pointer;
  transition: background .2s, border-color .2s;
}
.btn-secondary:hover { background: var(--dark2); border-color: rgba(0,102,255,0.3); }

/* ── VACACIONAL INFO ── */
.vacational-info {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px; margin-top: 2.5rem;
}
.vacational-title {
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 700;
  margin-bottom: 1.5rem; color: var(--sky);
}
.vacational-steps { display: flex; flex-direction: column; gap: 16px; margin-bottom: 1.5rem; }
.vacational-step { display: flex; gap: 16px; align-items: flex-start; }
.vacational-number {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,102,255,0.08); border: 1px solid rgba(0,102,255,0.2);
  color: var(--sky); font-family: var(--font-head); font-weight: 800; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
}
.vacational-step p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; padding-top: 4px; }
.vacational-notes { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vacational-note { background: var(--dark); border: 1px solid var(--border); border-radius: 14px; padding: 18px; }
.vacational-note strong { display: block; font-size: 0.9rem; margin-bottom: 6px; color: var(--text); }
.vacational-note p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ── CTA BOX ── */
.cta-box {
  margin: 0 5vw 80px;
  border-radius: 28px;
  background: linear-gradient(135deg, #0066ff, #0052cc);
  padding: 56px 5%;
  text-align: center; position: relative; overflow: hidden;
}
.cta-box::before {
  content:''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% -20%, rgba(255,255,255,0.15), transparent);
}
.cta-box h3 {
  font-family: var(--font-head); font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 800; letter-spacing: -0.02em; color: #fff; position: relative;
}
.cta-box .section-sub { color: rgba(255,255,255,0.85); position: relative; max-width: 500px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; margin-top: 1.5rem; }
.cta-box .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.35); }
.cta-box .btn-secondary:hover { background: rgba(255,255,255,0.15); }

/* ── FOOTER ── */
footer {
  background: #0066ff;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 48px 5vw 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-top: .75rem; max-width: 280px; line-height: 1.6; }
.footer-col h5 { color: #fff; font-family: var(--font-head); font-weight: 700; margin-bottom: 1rem; font-size: 0.85rem; letter-spacing: .06em; text-transform: uppercase; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.88rem; transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,0.7); font-size: 0.8rem; }
.legal-links { display: flex; gap: 1.5rem; }
.legal-links a { color: rgba(255,255,255,0.7); font-size: 0.8rem; text-decoration: none; transition: color .2s; }
.legal-links a:hover { color: #fff; }
footer .nav-logo-dot { background: #fff; box-shadow: 0 0 10px rgba(255,255,255,0.5); }

/* ── WA FLOAT ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:none} }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-mobile-btn { display: block; }
  .nav-drawer { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .vacational-notes { grid-template-columns: 1fr; }
  .device-cta-card { grid-column: span 1; }
}
@media (max-width: 640px) {
  section { padding: 56px 5vw; }
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .devices-grid { grid-template-columns: repeat(2, 1fr); }
  .device-cta-card {
    grid-column: 1 / -1;
    width: 100%;
  }
  .device-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .device-cta-actions a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .cta-box { margin: 0 0 48px; border-radius: 0; }
}
@media (max-width: 480px) {
  nav { padding: 0 4vw; height: 60px; }
  #hero { padding: 88px 4vw 48px; }
  .hero-h1 { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  section { padding: 48px 4vw; }
  .tabs-container { gap: 8px; }
  .tab-btn { font-size: 0.78rem; padding: 7px 14px; }
  footer { padding: 40px 4vw 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .legal-links { flex-wrap: wrap; gap: 12px; }
}

/* ── DUO CARDS ROW – dos fichas centradas (igual que vacacional) ── */
.duo-cards-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
  gap: 24px;
  max-width: 780px;
  margin: 0 auto 1.5rem;
}

/* Móvil: una debajo de otra, ancho completo */
@media (max-width: 640px) {
  .duo-cards-row {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}


/* ── APOSTILLA DESPLEGABLE (Internacionales) ── */
.info-adicional {
  border: 1px solid var(--border, rgba(0,102,255,0.15));
  border-radius: 14px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.info-adicional summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sky);
  display: flex;
  align-items: center;
  gap: 8px;
  user-select: none;
}
.info-adicional summary::-webkit-details-marker { display: none; }
.info-adicional summary::before {
  content: "\25BA";
  font-size: 0.65rem;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.info-adicional[open] summary::before { transform: rotate(90deg); }
.info-adicional-body {
  padding: 0 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.info-adicional-body p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}
.info-adicional-body a {
  color: var(--sky);
  font-weight: 500;
  text-decoration: none;
}
.info-adicional-body a:hover { text-decoration: underline; }

/* ── FIX VACACIONAL – móvil ── */
@media (max-width: 640px) {
  #vacacional .pricing-grid {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
  }
}

/* ── NOTA DESCUENTO FIBRA ── */
.descuento-fibra-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.5rem 0 1.5rem;
  padding: 0.6rem 1rem;
  background: rgba(0, 102, 255, 0.05);
  border-left: 3px solid rgba(0, 102, 255, 0.35);
  border-radius: 0 8px 8px 0;
  line-height: 1.55;
}
.descuento-fibra-note strong {
  color: var(--text);
  font-weight: 600;
}
.wa-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity .15s;
}
.wa-link:hover { opacity: 1; }
