/* ==========================================================================
   CHIP SOLUTIONS - HOJA DE ESTILOS COMPACTA (SEMI-FLAT / FLUENT UI)
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
}

body {
    background-color: #f3f4f6;
    color: #1e293b;
    font-size: 13px; /* Reducción general de la fuente solicitada para compactar */
}

/* --- BOTÓN FLOTANTE COMPACTO DE WHATSAPP --- */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background-color: #25D366;
    color: white;
    width: 44px; /* Tamaño de fuente disminuido para compactarse */
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    z-index: 99999;
    text-decoration: none;
    transition: all 0.2s ease;
}

.whatsapp-floating-btn:hover {
    transform: translateY(-2px) scale(1.03);
    background-color: #128c7e;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

/* --- ENCABEZADO CORPORATIVO EN AZUL REY DEGRADADO VIBRANTE --- */
.header {
             background: linear-gradient(135deg, #4169e1, #0033aa); /* Azul rey degradado */
    color: #fff;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative; 
    width: 100%;
    height: 150px;
}

.btn-inicio {
  position: absolute; 
  left: 20px; 
  top: 50%; 
  transform: translateY(-50%); 
  background-color: rgba(255, 255, 255, 0.15); 
  color: #ffffff; 
  text-decoration: none; 
  padding: 6px 14px; 
  border-radius: 4px; 
  font-size: 13px; 
  font-weight: 600; 
  transition: all 0.2s ease;
}

.btn-inicio:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.02);
}

.header-center-container {
 display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 15px; 
}

.logo-chip {
  width: 120px; 
  height: auto;
}

.header-text-container h1 {
  font-size: 42px; 
  font-weight: 700; 
  margin: 0; 
  color: #ffffff;
}

.header-text-container p {
    font-size: 22px; 
    color: #cbd5e1;
    margin-top: 1px;
    text-align: center;
}
/* --- CUERPO GENERAL COMPACTADO --- */
.main-container {
    max-width: 800px;
    margin: 4px auto 12px auto;
    padding: 0 10px;
}

.main-title {
    font-size: 18px;
    color: #0041c2;
    margin-bottom: 2px;
    font-weight: 700;
    text-align: center;
}

.main-subtitle {
    font-size: 11px;
    color: #334155;
    margin-bottom: 4px;
    line-height: 1.4;
    text-align: center;
}

.logo-infinitum {
    width: 120px;
    height: auto;
    margin: 0 auto 4px auto;
    display: block;
}

/* --- CONTENEDOR DEL COTIZADOR (FLUENT UI) --- */
.wizard-container {
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    border: 1px solid #cbd5e1;
    padding-bottom: 6px;
}

/* --- BARRA DE ESTADO SUPERIOR DE ENTRADA --- */
.status-bar {
    background-color: #ffffff;
    border-bottom: 1px solid #cbd5e1;
    padding: 4px;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Forzado nativo a 4 columnas fijas */
    gap: 4px;
}

.status-item {
    background-color: #f8fafc;
    padding: 3px 4px;
    border-radius: 4px;
    border: 1px solid #cbd5e1;
    font-weight: 600;
    font-size: 9px;
    color: #475569;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.status-item span {
    font-weight: 700;
    color: #0041c2;
    font-size: 9px; 
}

/* --- BARRA DE PROGRESO DE AVANCE VERDE --- */
.progress-container {
    background-color: #f1f5f9;
    height: 3px;
    width: 100%;
}

.progress-bar {
    background-color: #22c55e;
    height: 100%;
    width: 7.69%;
    transition: width 0.3s ease;
}

/* --- PANELES DE PASOS COMPRESOS CON REGLAS DE VISIBILIDAD --- */
.step-panel {
    padding: 6px 12px 10px 12px;
    display: none !important; /* Oculta los pasos inactivos */
}

/* Fuerza al navegador a mostrar el paso que el motor de JavaScript tenga activo */
.step-panel.active {
    display: block !important;
}

.step-number {
    font-size: 10px;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1px;
    text-align: center;
}

.step-question {
    font-size: 15px;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 2px;
    text-align: center;
}

.step-text-muted {
    color: #64748b;
    margin-bottom: 6px;
    font-size: 11px;
    text-align: center;
}
/* --- BOTONES PREMIUM CON INTERACCIONES HOVER (FLUENT UI) --- */
.options-group {
    display: flex !important;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
    width: 100%;
}

.btn-option {
    background-color: #ffffff;
    border: 2px solid #0041c2;
    color: #0041c2;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    min-width: 120px;
    transition: all 0.2s ease; /* Transición suave solicitada */
}

.btn-option:hover {
    background-color: #0041c2;
    color: #ffffff;
    transform: translateY(-2px); /* Elevación tridimensional física */
    box-shadow: 0 4px 12px rgba(0, 65, 194, 0.15); /* Sombreado orgánico azul */
}

.btn-green {
    border-color: #22c55e !important;
    color: #22c55e !important;
}

.btn-green:hover {
    background-color: #22c55e !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15) !important;
}

.btn-blue-action {
    background-color: #0041c2 !important;
    color: #ffffff !important;
}

.btn-blue-action:hover {
    background-color: #002d8c !important;
    box-shadow: 0 4px 12px rgba(0, 65, 194, 0.15) !important;
}

/* --- BOTONES ACCIÓN PRINCIPALES COMPACTADOS --- */
.btn-action-primary {
    background-color: #0041c2;
    color: #ffffff;
    border: none;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    margin: 6px auto 3px;
    transition: all 0.2s ease;
}

.btn-action-primary:hover {
    background-color: #002d8c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 65, 194, 0.15);
}

.btn-action-green {
    background-color: #22c55e !important;
}

.btn-action-green:hover {
    background-color: #16a34a !important;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15) !important;
}

.btn-facebook-color {
    background-color: #3b5998 !important;
    color: #ffffff !important;
}

.btn-facebook-color:hover {
    background-color: #2d4373 !important;
    box-shadow: 0 4px 12px rgba(59, 89, 152, 0.15) !important;
}

.btn-muted-grey {
    background-color: #64748b !important;
    color: #ffffff !important;
    display: block;
    margin: 6px auto 3px auto;
    max-width: max-content;
}

.btn-muted-grey:hover {
    background-color: #475569 !important;
    box-shadow: 0 4px 12px rgba(100, 116, 139, 0.15) !important;
    transform: translateY(-1px);
}

/* --- PASO 6: TARJETA VERDE ESMERALDA PASTEL --- */
.fluent-card {
    background-color: #ffffff;
    border: 1px solid #bbf7d0; /* Borde perimetral verde esmeralda pastel */
    border-radius: 8px;
    padding: 8px 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.fluent-card h3 {
    color: #15803d; /* Título centrado verde esmeralda */
    font-size: 13px;
    margin-bottom: 2px;
    font-weight: 700;
}

.fluent-card-instruction {
    font-size: 11px;
    color: #475569;
    margin-bottom: 4px;
    line-height: 1.3;
}

.slider-container {
    margin: 2px 0;
    width: 100%;
}

.range-slider {
    width: 100%;
    max-width: 300px;
    height: 4px;
    accent-color: #0041c2;
    cursor: pointer;
}

.slider-value {
    font-size: 12px;
    font-weight: 700;
    color: #0041c2;
}

/* REGLA FIJA: Fuerza exactamente 4 columnas de iconos en PC y Celulares sin deformarse */
.icon-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important; /* Cuadrícula de 4 columnas */
    gap: 4px;
    margin-top: 6px;
    border-top: 1px solid #f1f5f9;
    padding-top: 6px;
    text-align: center;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-item span {
    font-size: 16px;
    display: block;
}

.icon-item p {
    font-size: 9px;
    color: #1e3a5f; /* Texto descriptivo azul marino sutil */
    font-weight: 600;
}

.speed-output-box {
    background-color: #f1f5f9;
    border-radius: 5px;
    padding: 4px 8px; 
    font-size: 12px;
    font-weight: 700;
    color: #0041c2;
    border: 1px solid #e2e8f0;
    margin-top: 6px;
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: max-content;
}

.selected-card, .solucion-card.selected {
    border-color: #0041c2 !important;
    background-color: #f0f6ff !important;
    box-shadow: 0 4px 12px rgba(0, 65, 194, 0.08) !important;
}
/* --- CATÁLOGOS DE STREAMING Y SOLUCIONES DIGITALES --- */
.streaming-catalog-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 500px;
    margin: 0 auto;
}

.streaming-group-title {
    font-size: 11px;
    font-weight: 700;
    color: #002f6c;
    text-transform: uppercase;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 2px;
    margin: 8px 0 3px 0;
}

.streaming-card, .solucion-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 5px;
    padding: 8px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    cursor: pointer;
    transition: all 0.2s ease;
}

.streaming-card:hover, .solucion-card:hover {
    border-color: #0041c2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 65, 194, 0.1);
}

.streaming-info, .solucion-info-body {
    flex: 1;
}

.streaming-header, .solucion-header-row {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 12px;
    color: #0f172a;
    margin-bottom: 2px;
}

.streaming-desc, .solucion-desc {
    font-size: 11px;
    color: #64748b;
    line-height: 1.3;
}

.price-strike {
    text-decoration: line-through;
    color: #94a3b8;
    margin-right: 4px;
}

.price-free {
    color: #ef4444;
    font-weight: 700;
}

.soluciones-catalog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 8px;
    max-width: 700px;
    margin: 0 auto;
}

.solucion-price.free {
    background-color: #dcfce7;
    color: #15803d;
    padding: 1px 4px;
    border-radius: 4px;
    font-size: 9px;
    text-transform: uppercase;
}

/* --- PASO 12: TICKETS FINANCIEROS Y CONTACTO --- */
.summary-main-card {
    max-width: 650px !important;
    margin: 0 auto 12px auto;
}

.summary-title {
    font-size: 16px !important;
    color: #001f3f !important;
    border-bottom: 2px solid #0041c2;
    padding-bottom: 3px;
    margin-bottom: 8px;
    text-align: center;
}

.summary-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 6px;
    background-color: #f8fafc;
    padding: 6px;
    border-radius: 5px;
    margin-bottom: 10px;
    border: 1px solid #cbd5e1;
}

.meta-cell {
    font-size: 11px;
    color: #334155;
}

.summary-section {
    margin-bottom: 10px;
}

.section-header-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0b8a5a;
    border-bottom: 1px dashed #cbd5e1;
    padding-bottom: 1px;
    margin-bottom: 3px;
}

.two-col-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #334155;
    padding: 2px 0;
}

.col-price {
    font-weight: 700;
    color: #0f172a;
    text-align: right;
    min-width: 75px;
}

.totals-grand-container {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.totals-sub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 8px;
}

.total-block {
    background-color: #f8fafc;
    border: 1px solid #cbd5e1;
    padding: 8px;
    border-radius: 5px;
}

.total-block-green {
    background-color: #f0fdf4 !important;
    border-color: #bbf7d0 !important;
}

.total-label {
    font-size: 9px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
}

.total-amount {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
}

.total-block-green .total-amount {
    color: #166534;
}

.total-disclaimer {
    font-size: 9px;
    color: #64748b;
    line-height: 1.3;
}

.advisor-section {
    margin-top: 12px;
    border-top: 1px solid #cbd5e1;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.advisor-info {
    flex: 1;
    font-size: 11px;
    color: #334155;
    line-height: 1.4;
}

.advisor-img-box {
    width: 100px;
    height: 70px;
}

.advisor-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* --- REGLA SOLICITADA: LA NOTA DE FACEBOOK NO SE MUESTRA EN PC --- */
.facebook-mobile-only-alert {
    display: none !important; /* Oculta por defecto en computadoras */
}

/* --- PASO 13: FORMULARIO GEORREFERENCIADO --- */
.form-aligned-card {
    max-width: 500px; 
    margin: 0 auto;
}

.warning-alert-text {
    margin-bottom: 8px; 
    font-weight: bold; 
    color: #ef4444;
    font-size: 11px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 6px;
}

.form-group label {
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #334155;
}

.form-group input {
    padding: 5px 8px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-size: 11px;
    background-color: #f8fafc;
}

.form-group input[readonly] {
    background-color: #e2e8f0;
    color: #475569;
    cursor: not-allowed;
    font-weight: 600;
    font-family: monospace;
}

.max-width-btn {
    background: #0041c2; 
    width: 100%;
}

.whatsapp-large-btn {
    margin-top: 10px; 
    font-size: 14px;
    width: 100%;
}

.requirements-list {
    text-align: left;
    font-size: 11px;
    color: #334155;
    padding-left: 12px;
    line-height: 1.5;
    max-width: 500px;
    margin: 0 auto;
}

/* --- BARRA INFERIOR SECUNDARIA Y CONTROLES --- */
.controls-bar {
    background-color: #f8fafc;
    padding: 6px 12px; 
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-control {
    background-color: #64748b;
    color: white;
    border: none;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
}

.btn-reset {
    background-color: #ef4444;
}

.faq-link-bar {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
    text-decoration: none;
}

.fb-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.fb-popup-box {
    background-color: #ffffff;
    padding: 12px;
    border-radius: 5px;
    max-width: 320px;
    width: 90%;
    text-align: center;
}

/* --- REGLAS DE IMPRESIÓN LIMPIA --- */
@media print {
    .progress-container, .status-bar, .controls-bar, .options-group, .btn-action-primary, .btn-control, .whatsapp-floating-btn {
        display: none !important;
    }
    .step-panel { display: none; }
    .step-panel#step-12 { display: block !important; padding: 0 !important; }
    .wizard-container, .summary-main-card { border: none !important; box-shadow: none !important; padding: 0 !important; max-width: 100% !important; }
}

/* --- OPTIMIZACIONES MÓVILES RESPONSIVAS --- */
@media (max-width: 768px) {
    body { font-size: 12px !important; } /* Tamaño de letra reducido en móvil */
     .header { 
                height: auto !important; 
                padding: 8px 10px !important; /* Relleno mínimo idéntico al asesor */
                display: flex !important; 
                flex-direction: column !important; 
                align-items: center !important; 
                gap: 6px !important; 
                
            }
    .btn-inicio {                position: relative !important; /* Rompe el absolute de PC */
                left: auto !important; 
                top: auto !important; 
                transform: none !important; 
                width: 100% !important; /* Toma todo el ancho de la pantalla */
                text-align: center !important;
                padding: 4px 10px !important; /* Altura esbelta */
                font-size: 12px !important;
                margin-bottom: 2px !important;
                display: inline-block;
            }
    .header-center-container { 
                display: flex !important;
                flex-direction: row !important; 
                align-items: center !important;
                justify-content: center !important;
                gap: 10px !important; 
                width: 100% !important;
            }
    .logo-chip { width: 55px !important; /* Reducimos el logo para compactar la franja */
                height: auto !important;
    }
    .header-text-container {
                text-align: center !important;
    }
    .header-text-container h1 { 
                font-size: 18px !important; /* Letras compactas para "Chip Solutions" */
                margin: 0 !important;
            }
    .header-text-container p {
                font-size: 11px !important; /* Letras compactas para "Conecta tu mundo" */
                margin: 0 !important;
            }
    
    /* REGLA MAESTRA SOLICITADA: Forzar exactamente 4 columnas de estatus superior en móviles */
    /* Forzamos a que la barra aproveche al máximo el espacio horizontal */
    .status-bar { 
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important; 
        padding: 3px !important;
        gap: 2px !important; /* Espacio mínimo para que quepan bien las 4 columnas */
    }
    
    /* Reducimos la letra del título (ej: Paquete:, Trámite:) */
    .status-item { 
        width: 100% !important; 
        font-size: 8px !important; /* Letra ultra compacta de 8px */
        padding: 2px 1px !important; 
        text-align: center !important;
        font-weight: bold !important;
    }
    
    /* Reducimos la letra de las respuestas que inyecta el JS (ej: Hogar, Internet) */
    .status-item span { 
        font-size: 8px !important; /* Mismo tamaño para que no se desalinee */
        font-weight: 800 !important;
        display: block !important; /* Hace que la respuesta salte abajo del título si no cabe de corrido */
    }
}
    
    /* REGLA SOLICITADA: Mostrar la nota de Facebook EXCLUSIVAMENTE en teléfonos móviles */
    .facebook-mobile-only-alert {
        display: block !important;
        font-size: 11px; 
        color: #ef4444; 
        font-weight: bold; 
        margin-bottom: 5px; 
        text-align: center; 
        max-width: 550px; 
        padding: 0 10px; 
        line-height: 1.4;
    }
    
    .options-group { flex-direction: column; gap: 3px; }
    .btn-option, .btn-action-primary, .btn-control { width: 100% !important; margin: 2px 0 !important; padding: 6px 10px; font-size: 12px; }
    
    /* Mantiene las 4 columnas de iconos en el paso 6 */
    .icon-grid { grid-template-columns: repeat(4, 1fr) !important; gap: 3px !important; }
    .icon-item span { font-size: 14px !important; }
    .icon-item p { font-size: 8px !important; }
    
    .soluciones-catalog-container { display: flex; flex-direction: column; gap: 6px; }
    .two-col-row { flex-direction: column; align-items: flex-start; gap: 2px; }
    .col-price { align-self: flex-end; }
    .advisor-section { flex-direction: column-reverse; gap: 8px; text-align: center; }
    .form-group input { padding: 6px !important; font-size: 11px !important; }


footer { background: #002244; color: #ffffff; text-align: center; padding: 12px; margin-top: 20px; font-size: 10px; }
/* --- ESCALA VISUAL MEJORADA PARA PANTALLAS DE ESCRITORIO --- */
body {
    font-size: 15px !important; /* Aumentamos el tamaño de letra base de 13px a 15px */
}

/* Expandimos el contenedor para aprovechar mejor el espacio horizontal */
.main-container {
    max-width: 1100px !important; /* Cambiado de 800px a 1100px para una vista más panorámica */
    margin: 30px auto !important;
    padding: 0 20px !important;
}

/* Agrandamos la tarjeta del asistente y los textos principales */
.wizard-container {
    padding: 30px !important; /* Más espacio interno para que respire el diseño */
}

.main-title {
    font-size: 26px !important; /* Título más grande e imponente */
    margin-bottom: 8px !important;
}

.main-subtitle {
    font-size: 14px !important; /* Subtítulo más legible */
    margin-bottom: 25px !important;
}

.step-question {
    font-size: 20px !important; /* Preguntas de los pasos más visibles */
    margin-bottom: 12px !important;
}

.step-text-muted {
    font-size: 13px !important;
}

/* Hacemos los botones de opciones más altos y con texto más grande */
.btn-option {
    padding: 12px 20px !important;
    font-size: 14px !important;
    border-radius: 6px !important;
}

.btn-action-primary {
    padding: 12px 24px !important;
    font-size: 14px !important;
}

/* Ajuste de la barra de estado superior para que se vea imponente en PC */
.status-item {
    font-size: 11px !important;
    padding: 6px 8px !important;
}
.status-item span {
    font-size: 11px !important;
}
/* ==========================================================================
   BARRA DE CONTROLES PREMIUM Y AMPLIADA PARA ESCRITORIO
   ========================================================================== */
.controls-bar {
    position: relative !important;
    width: 100% !important;
    background-color: #f8fafc !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 6px !important;
    padding: 12px 20px !important; /* Más espacio interno */
    margin-top: 25px !important;
    
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 12px !important; /* Más separación entre los bloques */
}

/* REGLA MAESTRA: Agrandar todos los botones de la barra inferior en PC */
.controls-bar .btn-control {
    padding: 8px 18px !important;    /* Botones más altos y robustos */
    font-size: 13px !important;       /* Letra más grande y legible */
    font-weight: 700 !important;      /* Letras resaltadas */
    border-radius: 5px !important;    /* Esquinas más definidas */
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Efecto hover general para darle tridimensionalidad al pasar el mouse */
.controls-bar .btn-control:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05) !important;
}

/* Estilo específico para el nuevo botón de FAQ */
.btn-faq {
    background-color: #ffffff !important;
    color: #475569 !important;
    border: 1px solid #cbd5e1 !important;
}
.btn-faq:hover {
    background-color: #f1f5f9 !important;
    color: #0f172a !important;
    border-color: #94a3b8 !important;
}
/* Color gris y efectos para el nuevo botón de la barra */
.btn-copy-link {
    background-color: #64748b !important;
    color: #ffffff !important;
}

.btn-copy-link:hover {
    background-color: #475569 !important;
    transform: translateY(-1px) !important;
}
/* ==========================================================================
   BOTONERA INFERIOR EN UNA SOLA COLUMNA ANCHA PARA MÓVILES
   ========================================================================== */
@media (max-width: 768px) {
    .controls-bar {
        display: flex !important;
        flex-direction: column !important; /* Fuerza una sola columna vertical */
        gap: 6px !important; /* Separación limpia entre cada fila */
        padding: 10px !important;
        width: 100% !important;
    }

    /* Forzamos a todos los botones a estirarse al 100% de la caja blanca */
    .controls-bar .btn-control, 
    .controls-bar .btn-facebook-color,
    .controls-bar .btn-copy-link,
    .controls-bar .btn-faq,
    .controls-bar .btn-reset {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 10px 14px !important; /* Más altos para tocarlos fácil con el dedo */
        font-size: 12px !important; /* Letra clara y visible */
        text-align: center !important;
        justify-content: center !important;
        display: flex !important;
    }
}
/* ==========================================================================
   CENTERING FIX FOR THE "CONTINUAR SIN ESTA PROMOCIÓN" BUTTON
   ========================================================================== */
.btn-muted-grey {
    display: block !important;       /* Forces the button to behave as a solid block */
    margin-left: auto !important;    /* Automatically balances left margins */
    margin-right: auto !important;   /* Automatically balances right margins */
    text-align: center !important;   /* Centers the text inside the button */
    max-width: max-content !important; /* Prevents the button from stretching to full width on PC */
}

/* Responsive adjustment for mobile views */
@media (max-width: 768px) {
    .btn-muted-grey {
        max-width: 100% !important;  /* Allows the button to match the width of other buttons on phones */
        width: 100% !important;
    }
}

/* Por defecto, se oculta por completo en computadoras */
.fb-texto-movil {
    display: none !important;
}

/* 📱 Solo se activa en pantallas de teléfonos celulares */
@media (max-width: 768px) {
    .fb-texto-movil {
        display: block !important;
        font-size: 8px !important;
        color: #ef4444 !important; /* Color rojo de advertencia sutil */
        font-weight: 1000 !important;
        text-align: center !important;
        margin: 4px auto 10px auto !important;
        line-height: 1.4 !important;
        max-width: 100% !important;
        padding: 0 0px !important;
    }
}
