/* ============================================================
   CPSEL EVOLUCIÓN — inner-pages.css
   Estilos compartidos por páginas internas:
   internet.html, videocable.html, contacto.html
   Requiere: main.css + home.css
   ============================================================ */

/* ===================================================================
   HERO INTERNO (reemplaza .page-title)
   =================================================================== */
.inner-hero {
  background: linear-gradient(135deg, var(--primary-deeper) 0%, var(--primary-dark) 60%, var(--primary) 100%);
  color: #fff;
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.inner-hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .inner-hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.inner-hero-text .hero-badge {
  margin-bottom: 0.8rem;
}

.inner-hero-text h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.inner-hero-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 560px;
}

.inner-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .inner-hero-pills {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
  }
}

.inner-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(4px);
}

.inner-pill i {
  font-size: 0.75rem;
}

/* ===================================================================
   BENEFICIOS INTERNET
   =================================================================== */
.inet-benefits-section {
  padding: 4.5rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

[data-theme="dark"] .inet-benefits-section {
  background: var(--card-bg);
}

.inet-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .inet-benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.inet-benefit {
  text-align: center;
  padding: 1.5rem 1rem;
}

.inet-benefit-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary-deeper);
}

[data-theme="dark"] .inet-benefit-icon {
  color: var(--primary);
}

.inet-benefit h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.inet-benefit p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===================================================================
   VIDEOCABLE — Plan
   =================================================================== */
.vc-plan-section {
  padding: 4rem 0;
  background: var(--bg);
}

.vc-plan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 960px) {
  .vc-plan-grid {
    grid-template-columns: 420px 1fr;
    align-items: start;
  }
}

/* Tarjeta del plan */
.vc-plan-card {
  background: var(--card-bg);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: 0 0 0 4px rgba(74,204,236,0.1);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.vc-plan-card-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vc-plan-prices {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.vc-price-block {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
}

.vc-price-block--featured {
  background: var(--primary-light);
  border: 1.5px solid var(--primary);
  flex-direction: column;
}

.vc-price-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  width: 100%;
  margin-bottom: 0.2rem;
}

.vc-price-amount {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.vc-price-period {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.vc-badge-save {
  display: inline-block;
  background: var(--green);
  color: #fff;
  border-radius: 100px;
  padding: 0.1rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
}

.vc-combo-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  font-style: italic;
}

.vc-plan-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vc-plan-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.vc-plan-features li i {
  color: var(--green);
  flex-shrink: 0;
}

.vc-plan-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.vc-plan-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
  line-height: 1.5;
}

/* Grilla completa de canales */
.vc-channels-full h2 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.vc-channels-desc {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
}

.vc-cat-section {
  margin-bottom: 1.4rem;
}

.vc-cat-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.vc-cat-label i {
  color: var(--primary);
}

.vc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.vc-channels-note {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  background: var(--bg);
  border-radius: var(--radius-sm);
}

.vc-channels-note i {
  color: var(--primary);
  flex-shrink: 0;
}

/* ===================================================================
   VIDEOCABLE — Combo section
   =================================================================== */
.vc-combo-section {
  padding: 4.5rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

[data-theme="dark"] .vc-combo-section {
  background: var(--card-bg);
}

.vc-combo-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 900px) {
  .vc-combo-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.vc-combo-text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin: 0.8rem 0 1rem;
  color: var(--text);
}

.vc-combo-text p {
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.2rem;
  font-size: 0.97rem;
}

.vc-combo-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.vc-combo-benefits li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.vc-combo-benefits li i {
  color: var(--green);
}

/* Mini-cards de combos */
.vc-combo-plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.vc-combo-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.vc-combo-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.vc-combo-speed {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
}

.vc-combo-mbps {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--primary-deeper);
}

[data-theme="dark"] .vc-combo-mbps {
  color: var(--primary);
}

.vc-combo-unit {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.vc-combo-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.vc-combo-price {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.vc-combo-price span {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
}

.vc-combo-card .btn {
  font-size: 0.78rem;
  padding: 0.5rem 0.8rem;
  width: 100%;
  justify-content: center;
}
