/* ==========================================================================
   ESTILOS PREMIUM - CONFIGURADOR DE TARIFAS COMUNICATEL
   ========================================================================== */

/* Importar tipografía premium de Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* Variables de diseño y tokens (Sistema de Diseño HSL) */
:root {
  /* Paleta de Colores de Comunicatel */
  --primary-hue: 210;
  --primary-color: hsl(var(--primary-hue), 98%, 45%); /* #0267c9 */
  --primary-hover: hsl(var(--primary-hue), 100%, 38%);
  --primary-light: hsl(var(--primary-hue), 95%, 96%);
  --primary-glow: hsla(var(--primary-hue), 98%, 45%, 0.15);
  
  --dark-blue: hsl(212, 100%, 16%); /* #002855 - Color premium */
  --dark-blue-light: hsl(212, 100%, 22%);
  --dark-blue-bg: hsla(212, 100%, 16%, 0.03);
  
  --accent-cyan: hsl(187, 100%, 42%); /* Detalle activo */
  --accent-cyan-glow: hsla(187, 100%, 42%, 0.2);
  
  --success-color: hsl(142, 70%, 45%);
  --success-light: hsl(142, 70%, 95%);
  
  /* Tonos neutros */
  --bg-color: hsl(210, 40%, 98%);
  --card-bg: hsl(0, 0%, 100%);
  --text-main: hsl(215, 28%, 17%);
  --text-secondary: hsl(215, 16%, 47%);
  --text-muted: hsl(215, 14%, 68%);
  --border-color: hsl(214, 32%, 91%);
  --border-active: hsl(var(--primary-hue), 98%, 65%);
  
  /* Sombras y elevación */
  --shadow-sm: 0 2px 4px rgba(0, 40, 85, 0.02);
  --shadow-md: 0 10px 25px -5px rgba(0, 40, 85, 0.05), 0 8px 10px -6px rgba(0, 40, 85, 0.03);
  --shadow-lg: 0 20px 40px -10px rgba(0, 40, 85, 0.08), 0 10px 20px -10px rgba(0, 40, 85, 0.04);
  --shadow-active: 0 12px 30px -5px hsla(var(--primary-hue), 98%, 45%, 0.15), 0 4px 12px -5px hsla(var(--primary-hue), 98%, 45%, 0.1);
  
  /* Fuentes */
  --font-family: 'Plus Jakarta Sans', sans-serif;
  --font-title: 'Outfit', sans-serif;
  
  /* Transiciones */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

/* Reset de estilos */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   DISEÑO DEL CONTENEDOR PRINCIPAL
   ========================================================================== */

.configurator-wrapper {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 24px;
}

/* Cabecera del Configurador */
.configurator-header {
  text-align: center;
  margin-bottom: 40px;
}

.configurator-header .brand-logo {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 2rem;
  color: var(--dark-blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.configurator-header .brand-logo span {
  color: var(--primary-color);
}

.configurator-header h1 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--dark-blue);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.configurator-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Layout de dos columnas */
.configurator-container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

/* ==========================================================================
   NAVEGACIÓN POR PESTAÑAS (TABS)
   ========================================================================== */

.configurator-tabs {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 8px;
  display: flex;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-secondary);
  padding: 14px 20px;
  cursor: pointer;
  border-radius: calc(var(--border-radius-md) - 4px);
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  outline: none;
}

.tab-btn svg {
  transition: transform var(--transition-normal);
}

.tab-btn:hover {
  color: var(--primary-color);
}

.tab-btn:hover svg {
  transform: translateY(-2px);
}

.tab-btn.active {
  background: var(--dark-blue);
  color: var(--card-bg);
  box-shadow: 0 4px 12px rgba(0, 40, 85, 0.15);
}

/* ==========================================================================
   PANELES DE SELECCIÓN (CONTROLES)
   ========================================================================== */

.selection-panel {
  display: none;
}

.selection-panel.active {
  display: block;
  animation: slideUp 0.4s ease forwards;
}

.section-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
  transition: border-color var(--transition-normal);
}

.section-card:hover {
  border-color: hsla(var(--primary-hue), 98%, 45%, 0.15);
}

.section-title-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.section-icon {
  background: var(--primary-light);
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.section-card h2 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--dark-blue);
}

/* Grid de opciones (Tarjetas) */
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.option-card {
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 24px;
  cursor: pointer;
  transition: var(--transition-bounce), border-color var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  overflow: hidden;
  user-select: none;
}

.option-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.option-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-active);
  box-shadow: var(--shadow-md);
}

.option-card.active {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-active);
  background: var(--primary-light);
}

.option-card.active::before {
  transform: scaleX(1);
}

/* Contenido de la Tarjeta */
.option-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent-cyan-glow);
  color: var(--primary-color);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.option-card.active .option-badge {
  background: var(--primary-color);
  color: var(--card-bg);
}

.option-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--dark-blue);
}

.option-value {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.option-value span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.option-description {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-top: auto;
  line-height: 1.4;
}

.option-checkmark {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: var(--transition-bounce);
}

.option-card.active .option-checkmark {
  opacity: 1;
  transform: scale(1);
}

/* ==========================================================================
   LÍNEAS ADICIONALES (MÓVILES ADICIONALES)
   ========================================================================== */

.additional-lines-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.additional-line-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  background: var(--dark-blue-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 16px;
  position: relative;
  animation: slideDown 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.line-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.line-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  gap: 6px;
}

.line-select-wrapper {
  position: relative;
}

.line-select {
  width: 100%;
  background: var(--card-bg);
  border: 1.5px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  padding: 10px 32px 10px 12px;
  font-family: var(--font-family);
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 500;
  cursor: pointer;
  appearance: none;
  outline: none;
  transition: var(--transition-fast);
}

.line-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.line-select-wrapper::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 5px solid var(--text-secondary);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  pointer-events: none;
}

.remove-line-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.remove-line-btn:hover {
  background: hsl(0, 85%, 95%);
  color: hsl(0, 85%, 55%);
}

.add-line-trigger {
  align-self: flex-start;
  background: var(--card-bg);
  border: 1.5px dashed var(--primary-color);
  color: var(--primary-color);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 20px;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-normal);
  outline: none;
  margin-top: 8px;
}

.add-line-trigger:hover {
  background: var(--primary-light);
  border-style: solid;
  transform: translateY(-2px);
}

.add-line-trigger:active {
  transform: translateY(0);
}

/* ==========================================================================
   SERVICIOS ADICIONALES (TOGGLES/ADD-ONS)
   ========================================================================== */

.addons-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.addon-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: var(--transition-normal);
  user-select: none;
}

.addon-item:hover {
  border-color: var(--border-active);
  background: var(--dark-blue-bg);
}

.addon-item.active {
  border-color: var(--primary-color);
  background: var(--primary-light);
}

.addon-icon {
  background: var(--bg-color);
  color: var(--text-secondary);
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.addon-item.active .addon-icon {
  background: var(--primary-color);
  color: var(--card-bg);
}

.addon-details h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 2px;
}

.addon-details p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* Interruptor Toggle Moderno */
.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-round {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border-color);
  transition: .3s;
  border-radius: 34px;
}

.slider-round:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.toggle-switch input:checked + .slider-round {
  background-color: var(--primary-color);
}

.toggle-switch input:checked + .slider-round:before {
  transform: translateX(22px);
}

/* ==========================================================================
   SIDEBAR DE RESUMEN (PANEL DE PRECIO)
   ========================================================================== */

.summary-sidebar {
  position: sticky;
  top: 40px;
  background: var(--dark-blue);
  color: var(--card-bg);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.summary-sidebar::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--accent-cyan-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.5;
}

.summary-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.summary-title span {
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
  font-family: var(--font-family);
  font-weight: 500;
}

/* Lista de Desglose */
.breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
  max-height: 220px;
  overflow-y: auto;
  padding-right: 4px;
}

/* Scrollbar para el desglose */
.breakdown-list::-webkit-scrollbar {
  width: 4px;
}
.breakdown-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.4;
}

.breakdown-name {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.breakdown-name small {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

.breakdown-price {
  font-weight: 700;
  color: var(--card-bg);
}

.summary-divider {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 20px 0;
}

/* Secciones de Confianza */
.trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.trust-badge {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-sm);
  padding: 8px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.trust-badge svg {
  color: var(--accent-cyan);
}

/* Contenedor del Total */
.price-total-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
}

.price-total-label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.price-total-value {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--card-bg);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Animación Odometer */
.price-total-value .num-counter {
  display: inline-block;
  transition: transform var(--transition-normal);
}

.price-total-value span.period {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-shadow: none;
}

/* Botón CTA Contratar */
.btn-cta {
  width: 100%;
  background: var(--primary-color);
  color: var(--card-bg);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 24px;
  border: none;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: var(--transition-bounce);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(2, 103, 201, 0.3);
  outline: none;
}

.btn-cta:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(2, 103, 201, 0.4);
}

.btn-cta:active {
  transform: translateY(0);
}

.btn-cta svg {
  transition: transform var(--transition-normal);
}

.btn-cta:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   MODAL DE CONFIRMACIÓN / FORMULARIO DE CONVERSIÓN
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 20, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  padding: 20px;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content-card {
  background: var(--card-bg);
  border-radius: var(--border-radius-lg);
  width: 100%;
  max-width: 580px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: transform var(--transition-normal);
}

.modal-backdrop.open .modal-content-card {
  transform: translateY(0) scale(1);
}

/* Cabecera del Modal */
.modal-header-section {
  background: var(--dark-blue);
  color: var(--card-bg);
  padding: 28px 32px;
  position: relative;
}

.modal-header-section h2 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.modal-header-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.close-modal-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--card-bg);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.close-modal-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

/* Cuerpo del Modal */
.modal-body {
  padding: 32px;
}

/* Resumen del pedido en el modal */
.modal-summary-box {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 18px;
  margin-bottom: 24px;
}

.modal-summary-box h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--text-secondary);
}

.modal-summary-item:last-of-type {
  margin-bottom: 0;
}

.modal-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--border-color);
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.05rem;
}

/* Formulario */
.checkout-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group-full {
  grid-column: span 2;
}

.form-field-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field-wrapper label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-input {
  width: 100%;
  background: var(--bg-color);
  border: 1.5px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  padding: 12px 14px;
  font-family: var(--font-family);
  font-size: 0.95rem;
  color: var(--text-main);
  outline: none;
  transition: var(--transition-fast);
}

.form-input::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
}

.form-input:focus {
  background: var(--card-bg);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

/* Botones de Envío */
.modal-actions {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}

.btn-submit-whatsapp {
  background: #25d366;
  color: white;
  border: none;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 14px 20px;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: var(--transition-bounce);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-submit-whatsapp:hover {
  background: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-submit-form {
  background: var(--dark-blue);
  color: white;
  border: none;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 14px 20px;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: var(--transition-bounce);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit-form:hover {
  background: var(--dark-blue-light);
  transform: translateY(-2px);
}

.btn-download-pdf {
  grid-column: span 2;
  background: transparent;
  border: 1.5px solid var(--border-color);
  color: var(--text-secondary);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.btn-download-pdf:hover {
  border-color: var(--text-secondary);
  color: var(--text-main);
  background: var(--bg-color);
}

/* Pantalla de Éxito */
.success-screen {
  text-align: center;
  padding: 40px 20px;
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.success-icon-wrapper {
  width: 72px;
  height: 72px;
  background: var(--success-light);
  color: var(--success-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.success-screen h2 {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.success-screen p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  margin-bottom: 28px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   ACORDEÓN DE INTEGRACIÓN / SECCIÓN DE INSTRUCCIONES
   ========================================================================== */

.integration-guide-card {
  margin-top: 48px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.integration-header {
  padding: 24px 32px;
  background: var(--bg-color);
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.integration-header h2 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  gap: 10px;
}

.integration-header svg {
  transition: transform var(--transition-normal);
}

.integration-guide-card.collapsed .integration-body {
  display: none;
}

.integration-guide-card:not(.collapsed) .integration-header svg {
  transform: rotate(180deg);
}

.integration-body {
  padding: 32px;
  animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.integration-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.integration-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.integration-step h3 {
  font-size: 1rem;
  color: var(--dark-blue);
  font-weight: 700;
}

.integration-step p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.code-block-container {
  background: #0f172a;
  border-radius: var(--border-radius-sm);
  padding: 16px;
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}

.code-block-container pre {
  margin: 0;
  overflow-x: auto;
}

.code-block-container code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.85rem;
  color: #38bdf8;
}

.copy-code-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: rgba(255,255,255,0.6);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.copy-code-btn:hover {
  background: rgba(255,255,255,0.15);
  color: white;
}

/* Enlace a la administración */
.admin-link-box {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  text-align: right;
}

.admin-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.admin-link-btn:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/* ==========================================================================
   ANIMACIONES CLAVE
   ========================================================================== */

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Estilos adicionales para el contador de líneas integrado en tarjetas */
.card-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  background: var(--bg-color);
  border: 1.5px solid var(--border-color);
  border-radius: 99px;
  padding: 4px 12px;
  width: 100%;
  max-width: 120px;
  margin-left: auto;
  margin-right: auto;
  gap: 8px;
  transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.card-counter-btn {
  background: transparent;
  border: none;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-secondary);
  width: 22px;
  height: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  line-height: 1;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.card-counter-btn:hover {
  color: var(--primary-color);
}

.card-counter-btn:active {
  transform: scale(0.8) !important;
}

.card-counter-val {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--dark-blue);
  min-width: 14px;
  text-align: center;
  user-select: none;
}

/* ==========================================================================
   DISEÑO RESPONSIVO (MÓVIL)
   ========================================================================== */

/* ==========================================================================
   DISEÑO GENERAL DE VISTAS (SPA) Y CABECERA / PIE DE PÁGINA CORPORATIVO
   ========================================================================== */

.main-views-wrapper {
  margin-top: 80px; /* Margen para compensar la cabecera fija */
  min-height: calc(100vh - 350px);
}

.page-view {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.page-view.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* 1. Cabecera Premium */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-normal);
}

.header-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo-web {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-web img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-links-list {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 8px;
}

.nav-link-item {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 16px;
  text-decoration: none;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link-item:hover, .nav-link-item.active {
  color: var(--primary-color);
  background: var(--primary-light);
}

/* Dropdown Tarifas */
.nav-dropdown {
  position: relative;
}

.dropdown-arrow-icon {
  transition: transform var(--transition-fast);
}

.nav-dropdown:hover .dropdown-arrow-icon {
  transform: rotate(180deg);
}

.dropdown-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 8px;
  width: 200px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-normal);
  list-style: none;
}

/* Hover en PC para dropdown */
@media (min-width: 993px) {
  .nav-dropdown:hover .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.submenu-link-item {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 10px 14px;
  display: block;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
}

.submenu-link-item:hover {
  background: var(--primary-light);
  color: var(--primary-color);
  padding-left: 18px;
}

.header-action-cta {
  display: flex;
  align-items: center;
}

.btn-call-direct {
  background: var(--dark-blue);
  color: var(--card-bg);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 20px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-sm);
}

.btn-call-direct:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 103, 201, 0.2);
}

/* Botón menú móvil */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  outline: none;
}

.hamburger-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-blue);
  position: absolute;
  left: 8px;
  top: 19px;
  transition: var(--transition-fast);
}

.hamburger-icon::before, .hamburger-icon::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--dark-blue);
  position: absolute;
  left: 0;
  transition: var(--transition-fast);
}

.hamburger-icon::before { top: -8px; }
.hamburger-icon::after { top: 8px; }

.menu-toggle.open .hamburger-icon {
  background: transparent;
}

.menu-toggle.open .hamburger-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.menu-toggle.open .hamburger-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

/* ==========================================================================
   ESTILOS ESPECÍFICOS DE LAS VISTAS DEL PORTAL
   ========================================================================== */

.container-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
}

.bg-light-blue {
  background-color: var(--primary-light);
}

.text-center {
  text-align: center;
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.2rem;
  color: var(--dark-blue);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.inner-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* 2. Hero Section */
.hero-section {
  background: radial-gradient(circle at 80% 20%, hsla(var(--primary-hue), 100%, 30%, 0.08) 0%, transparent 50%),
              linear-gradient(135deg, hsl(212, 100%, 12%) 0%, hsl(212, 100%, 18%) 100%);
  color: var(--card-bg);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to top, var(--bg-color), transparent);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  background: var(--accent-cyan-glow);
  color: var(--accent-cyan);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 99px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero-promo-box {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-lg);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: left;
  max-width: 580px;
  margin: 0 auto 40px auto;
  backdrop-filter: blur(8px);
}

.promo-tag {
  background: var(--success-color);
  color: var(--card-bg);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 6px;
}

.promo-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.promo-text p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.promo-specs {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 8px;
}

.promo-price-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 170px;
}

.promo-price {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  justify-content: center;
}

.promo-price span {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}

.btn-promo-cta {
  background: var(--primary-color);
  color: white;
  padding: 12px 24px;
  font-weight: 700;
  border-radius: var(--border-radius-md);
  text-decoration: none;
  transition: var(--transition-bounce);
  box-shadow: 0 4px 14px rgba(2, 103, 201, 0.3);
  display: block;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  white-space: nowrap;
}

.btn-promo-cta:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.btn-hero-primary {
  background: white;
  color: var(--dark-blue);
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--border-radius-md);
  text-decoration: none;
  transition: var(--transition-bounce);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.btn-hero-primary:hover {
  background: #f3f7fa;
  transform: translateY(-2px);
}

.btn-hero-secondary {
  background: transparent;
  color: white;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: var(--border-radius-md);
  border: 2px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: var(--transition-bounce);
}

.btn-hero-secondary:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* 3. Grid de Accesos Directos */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-link-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 32px 24px;
  text-decoration: none;
  color: var(--text-main);
  text-align: left;
  box-shadow: var(--shadow-md);
  transition: var(--transition-bounce);
  display: flex;
  flex-direction: column;
}

.service-link-card.highlight {
  border-color: var(--primary-color);
  background: linear-gradient(to bottom right, var(--card-bg) 70%, var(--primary-light));
  box-shadow: var(--shadow-active);
}

.service-card-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.service-link-card h3 {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 12px;
}

.service-link-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.45;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-card-action {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 0.95rem;
  margin-top: auto;
  transition: transform var(--transition-fast);
}

.service-link-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-link-card:hover .service-card-action {
  transform: translateX(4px);
  color: var(--primary-hover);
}

/* 4. Factor Local */
.trust-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

@media (max-width: 768px) {
  .trust-features-grid {
    grid-template-columns: 1fr;
  }
}

.trust-feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.trust-feature-card:hover {
  border-color: var(--border-active);
  box-shadow: var(--shadow-md);
}

.feature-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-light);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.trust-feature-card h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 12px;
}

.trust-feature-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* 5. Escaparate Multimarca */
.brand-grid-text {
  max-width: 700px;
  margin: 0 auto 32px auto;
  color: var(--text-secondary);
  line-height: 1.6;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.brand-logo-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 12px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  box-sizing: border-box;
  transition: var(--transition-normal);
  filter: grayscale(100%);
  opacity: 0.6;
  user-select: none;
  box-shadow: var(--shadow-sm);
}

.brand-logo-card img {
  max-height: 40px;
  max-width: 85%;
  width: auto;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

.brand-logo-card:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

/* Colores de Hover Personalizados de Marcas */
.brand-logo-card.movistar:hover { color: #00a9e0; border-color: #00a9e0; background: rgba(0, 169, 224, 0.05); }
.brand-logo-card.o2:hover { color: #001f3f; border-color: #001f3f; background: rgba(0, 31, 63, 0.05); }
.brand-logo-card.orange:hover { color: #ff7900; border-color: #ff7900; background: rgba(255, 121, 0, 0.05); }
.brand-logo-card.digi:hover { color: #00509a; border-color: #00509a; background: rgba(0, 80, 154, 0.05); }
.brand-logo-card.pepephone:hover { color: #ec1c24; border-color: #ec1c24; background: rgba(236, 28, 36, 0.05); }
.brand-logo-card.yoigo:hover { color: #ee005f; border-color: #ee005f; background: rgba(238, 0, 95, 0.05); }
.brand-logo-card.vodafone:hover { color: #e60000; border-color: #e60000; background: rgba(230, 0, 0, 0.05); }
.brand-logo-card.lowi:hover { color: #ff0000; border-color: #ff0000; background: rgba(255, 0, 0, 0.05); }
.brand-logo-card.masmovil:hover { color: #ffd600; border-color: #ffd600; background: rgba(255, 214, 0, 0.05); }
.brand-logo-card.simyo:hover { color: #ff6600; border-color: #ff6600; background: rgba(255, 102, 0, 0.05); }
.brand-logo-card.jazztel:hover { color: #ff5000; border-color: #ff5000; background: rgba(255, 80, 0, 0.05); }
.brand-logo-card.avatel:hover { color: #522d7a; border-color: #522d7a; background: rgba(82, 45, 122, 0.05); }
.brand-logo-card.lemmon:hover { color: #b1ff00; border-color: #b1ff00; background: rgba(177, 255, 0, 0.05); }
.brand-logo-card.silbo:hover { color: #00d075; border-color: #00d075; background: rgba(0, 208, 117, 0.05); }
.brand-logo-card.finetwork:hover { color: #ea0a8e; border-color: #ea0a8e; background: rgba(234, 10, 142, 0.05); }

.brands-grid.small {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

@media (max-width: 992px) {
  .brands-grid.small {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 576px) {
  .brands-grid.small {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 6. Subpages y Headers */
.subpage-header {
  background: radial-gradient(circle at 10% 10%, hsla(var(--primary-hue), 98%, 45%, 0.03) 0%, transparent 60%),
              var(--card-bg);
  border-bottom: 1px solid var(--border-color);
  padding: 64px 24px;
  text-align: center;
}

.subpage-category {
  background: var(--primary-light);
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 16px;
}

.subpage-header h1 {
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: var(--dark-blue);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.subpage-header p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
}

/* 7. Tarifas Resumen */
.rates-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.rate-summary-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-bounce);
}

.rate-summary-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-active);
}

.rate-icon {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.rate-summary-card h2 {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--dark-blue);
  margin-bottom: 16px;
}

.rate-summary-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 32px;
  height: 72px; /* Alinear altura */
}

.starting-price {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.starting-price strong {
  font-size: 1.8rem;
  color: var(--primary-color);
  font-family: var(--font-title);
}

.btn-rate-nav {
  display: block;
  width: 100%;
  background: var(--primary-light);
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: var(--border-radius-md);
  transition: var(--transition-fast);
}

.btn-rate-nav:hover {
  background: var(--primary-color);
  color: white;
}

/* 8. Convergente Packs Cerrados */
.packs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.pack-suggested-card {
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px 32px 32px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  transition: var(--transition-bounce);
}

.pack-suggested-card.recommended {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-active);
  background: linear-gradient(to bottom, var(--card-bg) 60%, var(--primary-light));
}

.pack-suggested-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pack-header-tag {
  position: absolute;
  top: 16px;
  left: 32px;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.pack-header-tag.eco { background: var(--success-light); color: var(--success-color); }
.pack-header-tag.star { background: var(--primary-color); color: white; }
.pack-header-tag.family { background: #522d7a; color: white; }

.pack-suggested-card h3 {
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 24px;
}

.pack-specs {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.spec-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.spec-row .val-large {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--primary-color);
  line-height: 1;
  min-width: 155px;
  flex-shrink: 0;
}

.spec-row .val-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 600;
}

@media (max-width: 380px) {
  .spec-row .val-large {
    min-width: auto;
  }
}

.pack-features {
  margin-bottom: 32px;
  flex-grow: 1;
}

.pack-features ul {
  list-style: none;
}

.pack-features li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.pack-features li::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: 800;
  position: absolute;
  left: 0;
}

.pack-price-box {
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pack-price {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-blue);
}

.pack-price span {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.btn-pack-order {
  background: var(--primary-light);
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--border-radius-md);
  transition: var(--transition-bounce);
}

.btn-pack-order:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 103, 201, 0.2);
}

.pack-suggested-card.recommended .btn-pack-order {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 4px 12px rgba(2, 103, 201, 0.2);
}

.pack-suggested-card.recommended .btn-pack-order:hover {
  background: var(--primary-hover);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(2, 103, 201, 0.3);
}

/* 9. Banner Puente Configurador */
.configurator-bridge-banner {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-blue-light) 100%);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.configurator-bridge-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 80%, hsla(var(--primary-hue), 98%, 45%, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.bridge-content h3 {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.bridge-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 720px;
}

.bridge-action {
  flex-shrink: 0;
}

.btn-bridge-cta {
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: var(--border-radius-md);
  transition: var(--transition-bounce);
  box-shadow: 0 4px 16px rgba(2, 103, 201, 0.4);
  display: inline-block;
  white-space: nowrap;
}

.btn-bridge-cta:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 103, 201, 0.5);
}

/* 10. Solo Fibra Grid */
.options-grid-view {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.options-grid-view.mobiles {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.tariff-card {
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-sm);
}

.tariff-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-active);
  box-shadow: var(--shadow-md);
}

.tariff-card.highlighted {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-active);
  background: linear-gradient(to bottom, var(--card-bg) 65%, var(--primary-light));
}

.tariff-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.tariff-badge.eco { background: var(--success-light); color: var(--success-color); }
.tariff-badge.star { background: var(--primary-color); color: white; }

.tariff-card h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.tariff-value {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.tariff-price {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 16px;
}

.tariff-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.tariff-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 24px;
  height: 56px;
  overflow: hidden;
}

.tariff-details {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.tariff-details li {
  font-size: 0.85rem;
  color: var(--text-main);
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
}

.tariff-details li::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: 800;
  position: absolute;
  left: 0;
}

.btn-tariff-action {
  width: 100%;
  background: var(--primary-light);
  color: var(--primary-color);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--border-radius-md);
  text-decoration: none;
  text-align: center;
  transition: var(--transition-fast);
  margin-top: auto;
}

.tariff-card:hover .btn-tariff-action, .tariff-card.highlighted .btn-tariff-action {
  background: var(--primary-color);
  color: white;
}

/* Diferenciador Local */
.local-differentiation {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  margin-bottom: 48px;
}

.local-diff-title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark-blue);
  text-align: center;
  margin-bottom: 32px;
}

.local-diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.local-diff-card {
  text-align: center;
}

.diff-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.local-diff-card h4 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.local-diff-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
}

.multibrand-info-card {
  background: var(--primary-light);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.multibrand-text h3 {
  font-family: var(--font-title);
  font-size: 1.45rem;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.multibrand-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* 11. Sección Televisión */
.channel-recommender {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  margin-bottom: 48px;
}

.recommender-title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark-blue);
  text-align: center;
  margin-bottom: 6px;
}

.recommender-subtitle {
  color: var(--text-secondary);
  font-size: 0.92rem;
  text-align: center;
  margin-bottom: 32px;
}

.recommender-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
  background: var(--bg-color);
  padding: 6px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
}

.tv-tab-btn {
  background: transparent;
  border: none;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-secondary);
  padding: 10px 18px;
  cursor: pointer;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
}

.tv-tab-btn:hover {
  color: var(--primary-color);
}

.tv-tab-btn.active {
  background: var(--dark-blue);
  color: white;
}

.channels-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 16px;
  min-height: 180px;
}

.channel-logo-badge {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  height: 80px;
  box-sizing: border-box;
  padding: 10px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  overflow: hidden;
  filter: grayscale(100%);
  opacity: 0.6;
}

.channel-logo-badge img {
  max-height: 45px;
  max-width: 85%;
  width: auto;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

.channel-logo-badge:hover {
  transform: scale(1.05);
  border-color: var(--border-active);
  background: var(--primary-light);
  color: var(--primary-color);
  filter: grayscale(0%);
  opacity: 1;
}

/* Colores personalizados de logos */
.channel-logo-badge.axn { border-left: 4px solid #cc0000; }
.channel-logo-badge.amc { border-left: 4px solid #d4af37; }
.channel-logo-badge.eurosport { border-left: 4px solid #002f6c; }
.channel-logo-badge.discovery { border-left: 4px solid #0056b3; }
.channel-logo-badge.infantil { border-left: 4px solid #ff007f; }
.channel-logo-badge.musica { border-left: 4px solid #7f00ff; }
.channel-logo-badge.general { border-left: 4px solid #00d075; }

.app-features-section {
  border-radius: var(--border-radius-lg);
  padding: 48px;
  margin-bottom: 48px;
}

.app-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.app-features-grid.font-small p {
  font-size: 0.82rem;
}

.app-feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.app-feat-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.app-feature-card h4 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: var(--dark-blue);
  margin-bottom: 8px;
  font-weight: 700;
}

.app-feature-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
}

.tv-cta-box {
  background: linear-gradient(to right, var(--primary-light), hsla(187, 100%, 42%, 0.05));
  border: 1.5px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.tv-cta-content h3 {
  font-family: var(--font-title);
  font-size: 1.45rem;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.tv-cta-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.tv-cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-tv-cta-primary {
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: var(--border-radius-md);
  transition: var(--transition-bounce);
  box-shadow: 0 4px 12px rgba(2, 103, 201, 0.2);
}

.btn-tv-cta-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-tv-cta-wa {
  background: var(--success-color);
  color: white;
  text-decoration: none;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: var(--border-radius-md);
  transition: var(--transition-bounce);
}

.btn-tv-cta-wa:hover {
  background: hsl(142, 70%, 38%);
  transform: translateY(-2px);
}

.television-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 16px;
  font-style: italic;
}

/* 12. Sección Dispositivos */
.devices-grid-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.device-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px 24px 24px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  transition: var(--transition-bounce);
}

.device-card.highlighted {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-active);
  background: linear-gradient(to bottom, var(--card-bg) 60%, var(--primary-light));
}

.device-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.device-badge {
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.device-badge.green { background: var(--success-light); color: var(--success-color); }
.device-badge.star { background: var(--primary-color); color: white; }
.device-badge.cyan { background: var(--accent-cyan-glow); color: var(--primary-color); }

.device-image-fallback {
  background: var(--bg-color);
  border-radius: var(--border-radius-md);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.device-details h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--dark-blue);
  margin-bottom: 16px;
}

.device-features {
  list-style: none;
  margin-bottom: 24px;
}

.device-features li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.device-price-buy {
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.device-price {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark-blue);
}

.btn-device-reserve {
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--border-radius-md);
  transition: var(--transition-fast);
}

.btn-device-reserve:hover {
  background: var(--primary-hover);
}

.custom-device-order {
  border-radius: var(--border-radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
  align-items: center;
}

.custom-order-info h2 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--dark-blue);
  margin-bottom: 12px;
}

.custom-order-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.btn-wa-custom-order {
  background: var(--success-color);
  color: white;
  text-decoration: none;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: var(--border-radius-md);
  transition: var(--transition-bounce);
  box-shadow: 0 4px 12px rgba(39, 174, 96, 0.2);
  display: inline-block;
}

.btn-wa-custom-order:hover {
  background: hsl(142, 70%, 38%);
  transform: translateY(-2px);
}

.custom-order-form-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.custom-order-form-card h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--dark-blue);
  margin-bottom: 20px;
  font-weight: 700;
}

.inline-simple-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row-simple {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row-simple label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.form-row-simple input {
  background: var(--bg-color);
  border: 1.5px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  padding: 12px;
  font-family: var(--font-family);
  font-size: 0.9rem;
  color: var(--text-main);
  outline: none;
  transition: var(--transition-fast);
}

.form-row-simple input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.btn-submit-simple-form {
  background: var(--dark-blue);
  color: white;
  border: none;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 20px;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: var(--transition-bounce);
}

.btn-submit-simple-form:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.simple-form-success {
  display: none;
  background: var(--success-light);
  color: var(--success-color);
  padding: 12px;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 16px;
  text-align: center;
}

/* 13. Sección Energía */
.energy-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: 28px;
  margin-bottom: 64px;
}

.energy-step-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.step-num {
  width: 44px;
  height: 44px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--font-title);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  box-shadow: 0 4px 10px var(--primary-glow);
}

.energy-step-card h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--dark-blue);
  margin-bottom: 12px;
}

.energy-step-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
}

.energy-brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.energy-logo-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 95px;
  box-sizing: border-box;
  transition: var(--transition-normal);
  filter: grayscale(100%);
  opacity: 0.65;
  user-select: none;
}

.energy-logo-card img {
  max-height: 55px;
  max-width: 85%;
  width: auto;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

.energy-logo-card:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .energy-brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .energy-logo-card {
    height: 80px;
    padding: 12px;
  }
  .energy-logo-card img {
    max-height: 45px;
  }
}

/* Colores marcas energía */
.energy-logo-card.endesa:hover { color: #00d075; border-color: #00d075; background: rgba(0,208,117,0.05); }
.energy-logo-card.naturgy:hover { color: #f99f1b; border-color: #f99f1b; background: rgba(249,159,27,0.05); }
.energy-logo-card.iberdrola:hover { color: #6db33f; border-color: #6db33f; background: rgba(109,179,63,0.05); }
.energy-logo-card.totalenergies:hover { color: #304ffe; border-color: #304ffe; background: rgba(48,79,254,0.05); }
.energy-logo-card.repsol:hover { color: #ff6d00; border-color: #ff6d00; background: rgba(255,109,0,0.05); }
.energy-logo-card.plenitude:hover { color: #ffd600; border-color: #ffd600; background: rgba(255,214,0,0.05); }
.energy-logo-card.ganaenergia:hover { color: #00b0ff; border-color: #00b0ff; background: rgba(0,176,255,0.05); }
.energy-logo-card.niba:hover { color: #002855; border-color: #002855; background: var(--primary-light); }

.energy-capture-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 64px;
}

.energy-form-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.energy-form-card h3 {
  font-family: var(--font-title);
  font-size: 1.35rem;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.energy-form-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.file-upload-zone {
  border: 2px dashed var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 24px;
  text-align: center;
  position: relative;
  background: var(--bg-color);
  cursor: pointer;
  transition: var(--transition-fast);
}

.file-upload-zone:hover {
  border-color: var(--primary-color);
  background: var(--primary-light);
}

.file-input-hidden {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-zone-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  pointer-events: none;
}

.upload-zone-label span {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark-blue);
}

.upload-zone-label small {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.energy-wa-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.energy-wa-card h3 {
  font-family: var(--font-title);
  font-size: 1.35rem;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.energy-wa-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.wa-action-box {
  margin-top: 16px;
  margin-bottom: 24px;
}

.energy-wa-benefits {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.energy-wa-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--text-main);
}

.energy-wa-benefits li span {
  font-size: 0.95rem;
  line-height: 1;
}

.energy-wa-benefits li strong {
  color: var(--dark-blue);
}

.btn-energy-wa-direct {
  background: var(--success-color);
  color: white;
  text-decoration: none;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-bounce);
  box-shadow: 0 4px 16px rgba(39, 174, 96, 0.3);
}

.btn-energy-wa-direct:hover {
  background: hsl(142, 70%, 38%);
  transform: translateY(-2px);
}

.physical-info-badge {
  background: var(--bg-color);
  border-radius: var(--border-radius-md);
  padding: 16px;
  border-left: 4px solid var(--primary-color);
}

.physical-info-badge p {
  font-size: 0.85rem;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Acordeón FAQs Energía */
.faq-section {
  margin-top: 80px;
}

.faq-accordion-container {
  max-width: 100%;
  margin: 32px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-title);
  color: var(--dark-blue);
  font-size: 1.05rem;
  user-select: none;
}

.faq-arrow {
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: transform var(--transition-normal);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  background: var(--dark-blue-bg);
}

.faq-answer p {
  padding: 20px 24px 20px 24px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.55;
}

.faq-item.open {
  border-color: var(--border-active);
  box-shadow: var(--shadow-md);
}

.faq-item.open .faq-question {
  color: var(--primary-color);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-item.open .faq-answer {
  max-height: 500px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

/* 14. Sección Contacto */
.contact-two-columns {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px 40px;
}

.store-image-box {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.store-image-file {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  display: block;
}

.store-visual-placeholder {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-blue-light) 100%);
  border-radius: var(--border-radius-md);
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 20px;
}

.store-visual-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.store-visual-placeholder h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.store-visual-placeholder p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}

.store-image-msg {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}

.physical-details-box {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.physical-details-box h3 {
  font-family: var(--font-title);
  font-size: 1.35rem;
  color: var(--dark-blue);
  margin-bottom: 16px;
}

.detail-line {
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.55;
  margin-bottom: 20px;
}

.maps-embed-container {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  position: relative;
  margin-bottom: 24px;
}

.btn-maps-navigation {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 14px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(2, 103, 201, 0.3);
}

.btn-maps-navigation:hover {
  background: var(--primary-hover);
}

.business-hours-box h4 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--dark-blue);
  margin-bottom: 8px;
  display: inline-block;
  vertical-align: middle;
}

.hours-badge-status {
  display: inline-block;
  vertical-align: middle;
  margin-left: 12px;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.hours-badge-status.open { background: var(--success-light); color: var(--success-color); }
.hours-badge-status.closed { background: #ffebee; color: #c62828; }

.hours-list {
  list-style: none;
  margin-top: 12px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 6px 0;
  border-bottom: 1px dashed var(--border-color);
}

.hours-list li:last-child {
  border-bottom: 0;
}

.hours-list li span {
  color: var(--text-secondary);
}

.hours-val {
  font-weight: 700;
  color: var(--dark-blue);
  text-align: right;
}

.status-subtle-red {
  color: #c62828;
  opacity: 0.9;
  font-weight: 700;
}

.store-reminder-box {
  background: hsla(208, 98%, 50%, 0.03);
  border-left: 4px solid var(--primary-color);
  padding: 16px;
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  margin-top: 24px;
}

.store-reminder-box h5 {
  font-family: var(--font-title);
  font-size: 0.95rem;
  color: var(--dark-blue);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 0;
}

.store-reminder-box p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.fast-channels-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.fast-channels-card h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: var(--dark-blue);
  margin-bottom: 12px;
}

.fast-channels-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.fast-buttons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-fast-contact {
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px;
  border-radius: var(--border-radius-md);
  transition: var(--transition-bounce);
}

.btn-fast-contact.call {
  background: var(--dark-blue-bg);
  color: var(--dark-blue);
}

.btn-fast-contact.call:hover {
  background: var(--dark-blue);
  color: white;
}

.btn-fast-contact.whatsapp {
  background: var(--success-color);
  color: white;
}

.btn-fast-contact.whatsapp:hover {
  background: hsl(142, 70%, 38%);
  transform: translateY(-2px);
}

.fast-contact-email-box {
  margin-top: 16px;
  text-align: center;
  border-top: 1px dashed var(--border-color);
  padding-top: 14px;
}

.fast-contact-email-box span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-blue);
  display: block;
  margin-bottom: 4px;
}

.fast-contact-email-box a {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-fast);
}

.fast-contact-email-box a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.contact-form-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
}

.contact-form-card h3 {
  font-family: var(--font-title);
  font-size: 1.35rem;
  color: var(--dark-blue);
  margin-bottom: 24px;
}

.form-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.text-area-input {
  height: 120px;
  resize: vertical;
}

.lead-magnet-call-me {
  background: linear-gradient(135deg, var(--primary-light) 0%, hsla(187,100%,42%,0.03) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.lead-magnet-call-me h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.lead-magnet-call-me p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Formulario inline */
.inline-simple-form {
  display: flex;
  gap: 10px;
}

.inline-simple-form input {
  flex-grow: 1;
  background: var(--card-bg);
  border: 1.5px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  padding: 12px;
  font-family: var(--font-family);
  font-size: 0.9rem;
  color: var(--text-main);
  outline: none;
  transition: var(--transition-fast);
}

.inline-simple-form input:focus {
  border-color: var(--primary-color);
}

/* 15. Footer General */
.main-footer {
  background: hsl(212, 100%, 10%);
  color: var(--card-bg);
  padding: 64px 24px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: white;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-column h4 {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  border-left: 3px solid var(--primary-color);
  padding-left: 8px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
  line-height: 1.4;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.footer-address-link {
  font-size: 0.82rem;
  white-space: nowrap;
}

.footer-schedule-list li {
  margin-bottom: 16px;
  line-height: 1.5;
}

.footer-schedule-list strong {
  color: white;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-column a:hover {
  color: var(--accent-cyan);
}

.footer-bottom-copyright {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.copyright-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-links {
  display: flex;
  gap: 16px;
}

.legal-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: var(--transition-fast);
}

.legal-links a:hover {
  color: var(--accent-cyan);
}

@media (max-width: 768px) {
  .copyright-content {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .footer-address-link {
    white-space: normal;
  }
}

/* Botón flotante whatsapp */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--success-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  z-index: 999;
  transition: var(--transition-bounce);
  text-decoration: none;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1) rotate(5deg);
  background: hsl(142, 70%, 38%);
}

/* ==========================================================================
   DISEÑO RESPONSIVO MÓVIL (COMPLETO)
   ========================================================================== */

@media (max-width: 992px) {
  /* Cabecera / Menú Móvil */
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 24px 32px 24px;
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    align-items: stretch;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .nav-menu.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }
  
  .nav-links-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  
  .nav-link-item {
    font-size: 1.05rem;
    padding: 12px 16px;
    width: 100%;
    justify-content: space-between;
  }
  
  .header-action-cta {
    display: none; /* Ocultar CTA del header en móvil, priorizar contacto en menú o botón flotante */
  }
  
  /* Dropdown en móvil como acordeón */
  .dropdown-submenu {
    position: relative;
    top: 0;
    width: 100%;
    box-shadow: none;
    border: none;
    background: var(--bg-color);
    margin-top: 4px;
    display: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    padding-left: 16px;
  }
  
  .nav-dropdown.open .dropdown-submenu {
    display: block;
  }
  
  .nav-dropdown.open .dropdown-arrow-icon {
    transform: rotate(180deg);
  }

  /* Layouts de dos columnas a una */
  .configurator-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .summary-sidebar {
    position: relative;
    top: 0;
    margin-top: 8px;
  }

  .custom-device-order {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .energy-capture-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-two-columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-details-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.3rem;
  }
  
  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-promo-box {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .promo-price-action {
    width: 100%;
    justify-content: center;
  }

  .configurator-bridge-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .btn-bridge-cta {
    width: 100%;
    text-align: center;
  }

  .tv-cta-box {
    flex-direction: column;
    text-align: center;
  }

  .tv-cta-actions {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }

  .btn-tv-cta-primary, .btn-tv-cta-wa {
    width: 100%;
    text-align: center;
  }
  
  .fast-buttons-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row-grid {
    grid-template-columns: 1fr;
  }

  .inline-simple-form {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .configurator-wrapper {
    margin: 20px auto;
    padding: 0 16px;
  }
  
  .configurator-header h1 {
    font-size: 1.8rem;
  }
  
  .section-card {
    padding: 20px;
  }
  
  .options-grid {
    grid-template-columns: 1fr;
  }
  
  .checkout-form {
    grid-template-columns: 1fr;
  }
  
  .form-group-full, .modal-actions {
    grid-column: span 1;
  }
  
  .modal-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .integration-steps {
    grid-template-columns: 1fr;
  }
  
  .tab-btn {
    padding: 12px 10px;
    font-size: 0.9rem;
    gap: 6px;
  }
  
  .tab-btn span {
    display: none;
  }
}

/* ==========================================================================
   LOGOS DE CANALES DE TV ESTILIZADOS (CSS PURO)
   ========================================================================== */

.tv-brand-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 70px;
  padding: 10px;
  position: relative;
  text-align: center;
  font-family: var(--font-title);
  overflow: hidden;
  box-sizing: border-box;
}

.logo-axn {
  background: #0d0d0d;
  color: #ffffff;
}
.logo-axn .logo-text {
  font-weight: 900;
  font-style: italic;
  font-size: 1.4rem;
  letter-spacing: 2px;
}
.logo-axn .logo-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #ff0000;
}

.logo-axn-movies {
  background: #000000;
  color: #ffffff;
}
.logo-axn-movies .logo-text {
  font-weight: 900;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1;
}
.logo-axn-movies small {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 2px;
  color: #ff0000;
  margin-top: 2px;
  font-weight: 700;
}

.logo-amc {
  background: #ffffff;
  color: #000000;
  border: 2px solid #000000;
}
.logo-amc .logo-text {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -1px;
}

.logo-amc-break {
  background: #111111;
  color: #ffffff;
}
.logo-amc-break .logo-text {
  font-weight: 800;
  font-size: 1.1rem;
}
.logo-amc-break small {
  display: block;
  font-size: 0.55rem;
  background: #e60021;
  color: white;
  padding: 1px 4px;
  border-radius: 2px;
  font-weight: 700;
  margin-top: 2px;
}

.logo-amc-crime {
  background: #000000;
  color: #ffd600;
}
.logo-amc-crime .logo-text {
  font-weight: 800;
  font-size: 1.1rem;
}
.logo-amc-crime small {
  display: block;
  font-size: 0.55rem;
  color: white;
  letter-spacing: 1px;
  margin-top: 2px;
  font-weight: 700;
}

.logo-eurosport {
  background: #00152b;
  color: white;
}
.logo-eurosport .logo-text {
  font-weight: 900;
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}
.logo-eurosport .logo-text span {
  color: #e60021;
  font-size: 1.1rem;
  margin-left: 2px;
}
.logo-eurosport .stars-ring {
  font-size: 0.65rem;
  color: #ffffff;
  margin-bottom: 2px;
  letter-spacing: 2px;
}

.logo-discovery {
  background: #0d0d0d;
  color: white;
}
.logo-discovery .logo-text {
  font-weight: 800;
  font-size: 1rem;
}
.logo-discovery .globe-icon {
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.logo-history {
  background: #1a1a1a;
  color: #ffffff;
}
.logo-history .h-gold {
  font-size: 1.6rem;
  font-weight: 800;
  color: #d4af37;
  line-height: 1;
}
.logo-history .logo-text {
  font-size: 0.55rem;
  letter-spacing: 2px;
  color: #a0a0a0;
}

.logo-boing {
  background: #00bfff;
  color: white;
}
.logo-boing .logo-text {
  font-weight: 900;
  font-style: italic;
  font-size: 1.2rem;
  letter-spacing: -1px;
  text-shadow: 1px 1px 0px #00509a;
}

.logo-clan {
  background: #ff6600;
  color: white;
  border-radius: 12px;
}
.logo-clan .logo-text {
  font-weight: 800;
  font-size: 1.4rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.logo-rtve {
  background: #111111;
  color: white;
  flex-direction: row;
  gap: 4px;
}
.logo-rtve .rtve-text {
  font-size: 0.8rem;
  font-weight: 800;
  color: #e60021;
}
.logo-rtve .channel-num {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}
.logo-rtve.la2 .rtve-text {
  color: #00d075;
}

.logo-antena3 {
  background: #ff5000;
  color: white;
}
.logo-antena3 .logo-text {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo-cuatro {
  background: #e60021;
  color: white;
}
.logo-cuatro .logo-text {
  font-weight: 800;
  font-size: 1.3rem;
}

.logo-telecinco {
  background: #0099ff;
  color: white;
}
.logo-telecinco .t5-circle {
  width: 20px;
  height: 20px;
  background: white;
  color: #0099ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 2px;
  font-size: 0.75rem;
}
.logo-telecinco .logo-text {
  font-size: 0.65rem;
  font-weight: 800;
}

.logo-lasexta {
  background: #00d075;
  color: white;
  flex-direction: row;
  gap: 6px;
}
.logo-lasexta .six-num {
  font-size: 1.6rem;
  font-weight: 900;
}
.logo-lasexta .logo-text {
  font-size: 0.75rem;
  font-weight: 700;
}

.logo-canalsur {
  background: #009688;
  color: white;
}
.logo-canalsur .logo-text {
  font-size: 0.95rem;
  font-weight: 800;
}
.logo-canalsur .sun-icon {
  font-size: 1.1rem;
  color: #ffd600;
  margin-bottom: 2px;
}

.logo-fdf {
  background: #00a859;
  color: white;
}
.logo-fdf .logo-text {
  font-weight: 900;
  font-size: 1.3rem;
}

.logo-tcm {
  background: #111111;
  color: white;
  border: 1px solid white;
}
.logo-tcm .logo-text {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.logo-hollywood {
  background: #000000;
  color: #ffcc00;
}
.logo-hollywood .logo-text {
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1px;
}
.logo-hollywood .star-icon {
  margin-bottom: 2px;
}

.logo-generic {
  background: var(--dark-blue);
  color: white;
}
.logo-generic .logo-text {
  font-weight: 700;
  font-size: 0.95rem;
}


