/*
 * tev-utils.css — Clases de utilidad TraductorEnVivo
 * Migradas desde estilos inline para cumplir CSP sin unsafe-inline en style-src
 * Generado: Abr 2026
 */

/* ──────────────────────────────────────────
   WIDGET DEMO (hero card en landing pages de sector)
   ────────────────────────────────────────── */

/* Tarjeta glass de demo (fondo oscuro translúcido) */
.tev-card-glass {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 2rem;
    width: 100%;
    max-width: 380px;
}

/* Cabecera del widget (icono + texto + badge) */
.tev-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

/* Avatar circular con gradiente turquesa-azul */
.tev-avatar-gradient {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--turquoise), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icono de traducción dentro del avatar */
.tev-icon-white-lg {
    color: white;
    font-size: 1.1rem;
}

/* Título de sesión en el widget demo */
.tev-text-bold-md {
    font-weight: 700;
    font-size: 0.95rem;
}

/* Subtítulo de sesión (texto tenue) */
.tev-session-subtitle {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* Badge "EN VIVO" */
.tev-badge-live {
    margin-left: auto;
    background: rgba(0,209,178,0.2);
    color: var(--turquoise);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(0,209,178,0.4);
}

/* Bloque de texto original (transcripción original) */
.tev-transcript-original {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    border-left: 3px solid var(--turquoise);
}

/* Bloque de texto traducido */
.tev-transcript-translated {
    background: rgba(0,209,178,0.1);
    border-radius: 12px;
    padding: 1rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    border-left: 3px solid var(--primary-blue);
}

/* Fila de estadísticas (latencia, idiomas, conectados) */
.tev-stats-row {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
}

/* Caja individual de estadística */
.tev-stat-box {
    flex: 1;
    text-align: center;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 0.75rem;
}

/* Valor numérico de estadística */
.tev-stat-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--turquoise);
    font-family: 'Roboto', sans-serif;
}

/* Etiqueta de estadística */
.tev-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

/* ──────────────────────────────────────────
   SECCIÓN CASO REAL (grid de métricas + cita)
   ────────────────────────────────────────── */

/* Grid de 3 métricas del caso real */
.tev-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

/* Tarjeta individual de métrica */
.tev-metric-card {
    text-align: center;
    background: white;
    border-radius: 16px;
    padding: 1.75rem 1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

/* Número grande de métrica (turquesa) */
.tev-metric-num-turquoise {
    font-size: 3rem;
    font-weight: 800;
    color: var(--turquoise);
    font-family: 'Roboto', sans-serif;
    line-height: 1;
}

/* Número grande de métrica (azul primario) */
.tev-metric-num-blue {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    font-family: 'Roboto', sans-serif;
    line-height: 1;
}

/* Número grande de métrica (verde) */
.tev-metric-num-green {
    font-size: 3rem;
    font-weight: 800;
    color: #059669;
    font-family: 'Roboto', sans-serif;
    line-height: 1;
}

/* Etiqueta de métrica del caso real */
.tev-metric-label {
    font-size: 0.85rem;
    color: var(--light-text);
    margin-top: 0.5rem;
    font-weight: 600;
}

/* Tarjeta de cita/testimonio */
.tev-quote-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 2.25rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    border-left: 4px solid var(--turquoise);
}

/* Símbolo de apertura de comillas */
.tev-quote-mark {
    font-size: 2rem;
    color: var(--turquoise);
    line-height: 1;
    margin-bottom: 0.75rem;
}

/* Texto de cita */
.tev-quote-text {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 1.25rem;
    font-style: italic;
}

/* Fila de autor (avatar + nombre) */
.tev-author-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Avatar del autor */
.tev-author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--turquoise), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Icono persona dentro del avatar */
.tev-icon-white-md {
    color: white;
    font-size: 1rem;
}

/* Nombre del autor */
.tev-author-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark-text);
}

/* Cargo/empresa del autor */
.tev-author-role {
    font-size: 0.82rem;
    color: var(--light-text);
}

/* Contenedor del enlace al caso completo */
.tev-quote-cta {
    margin-top: 1.5rem;
}

/* Enlace CTA del caso de éxito */
.tev-case-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--turquoise) 0%, #00b89c 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(0,209,178,0.35);
}

/* ──────────────────────────────────────────
   COLORES Y TIPOGRAFÍA DE UTILIDAD
   ────────────────────────────────────────── */

.tev-color-turquoise {
    color: var(--turquoise);
}

.tev-color-light-text {
    color: var(--light-text);
}

.tev-color-white-07 {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.tev-opacity-70 {
    opacity: 0.7;
}

.tev-opacity-80 {
    opacity: 0.8;
}

.tev-opacity-90 {
    opacity: 0.9;
}

/* Texto blanco grande */
.tev-text-white-lg {
    color: white;
    font-size: 1.1rem;
}

/* ──────────────────────────────────────────
   CTA SECTION (botón + nota)
   ────────────────────────────────────────── */

/* Botón primario ligeramente más grande */
.tev-btn-primary-lg {
    font-size: 1.05rem;
}

/* Nota bajo el CTA */
.tev-cta-note {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* ──────────────────────────────────────────
   LANDING LANDINGS — SECCIÓN PRICING/EVENTOS
   ────────────────────────────────────────── */

/* Badge de categoría en hero de precios */
.tev-badge-category {
    background: linear-gradient(135deg, #00d1b2 0%, #00a896 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

/* Sección de precios con fondo oscuro */
.tev-section-dark-pricing {
    background: linear-gradient(135deg, #0f1419 0%, #1e293b 50%, #1a1d24 100%);
    padding: 4rem 0;
    color: white;
}

/* Contenedor con scroll horizontal para tabla de comparativa */
.tev-table-scroll {
    overflow-x: auto;
}

/* Fila destacada en tabla */
.tev-table-row-highlight {
    background: rgba(0,209,178,0.1);
}

/* Valor destacado en tabla (turquesa grande) */
.tev-table-value-turquoise-lg {
    color: var(--turquoise);
    font-size: 1.3rem;
}

/* Valor destacado en tabla (turquesa normal) */
.tev-table-value-turquoise {
    color: var(--turquoise);
}

/* Precio tachado */
.tev-price-strikethrough {
    font-size: 1.3rem;
    text-decoration: line-through;
}

/* Bloque "Con TraductorEnVivo" */
.tev-compare-winner {
    margin-top: 1.5rem;
}

/* Nota dentro del bloque ganador */
.tev-compare-winner-note {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

/* Precio ganador */
.tev-compare-price {
    font-size: 1.8rem;
    font-weight: 800;
}

/* Texto de ahorro */
.tev-compare-saving {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 0.3rem;
}

/* Bloque "Sin infraestructura" */
.tev-no-infra {
    margin-top: 1rem;
    background: white;
    border: 1px solid #00d1b2;
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Icono check turquesa grande */
.tev-check-icon-turquoise {
    color: #00d1b2;
    font-size: 1.3rem;
}

/* Texto dentro de bloque sin infra */
.tev-no-infra-text {
    color: #1a1a2e;
    font-size: 0.9rem;
}

/* ──────────────────────────────────────────
   ESTADÍSTICAS GLOBALES (sección section-dark)
   ────────────────────────────────────────── */

/* Número grande de estadística global */
.tev-stat-global-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--turquoise);
}

/* Etiqueta de estadística global */
.tev-stat-global-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* ──────────────────────────────────────────
   LOGOS TECNOLOGÍA (sección "Con la tecnología de")
   ────────────────────────────────────────── */

/* Grupo de logo (flex + gap) */
.tev-tech-logo-group {
    display: flex;
    align-items: center;
    gap: 8px; /* Bootstrap d-flex gap-2 = 8px */
    opacity: 0.7;
}

/* Texto de nombre de empresa */
.tev-tech-name {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

/* Nota "Con la tecnología de" */
.tev-tech-note {
    font-size: 0.9rem;
}

/* ──────────────────────────────────────────
   SECCIÓN COMPARATIVA (Pantalla grande vs TraductorEnVivo)
   ────────────────────────────────────────── */

/* Columna "otras plataformas" */
.tev-compare-col-other {
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    background: #fafafa;
}

/* Avatar de otras plataformas */
.tev-compare-avatar-other {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

/* Título de columna */
.tev-compare-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #555;
}

/* Subtítulo de columna */
.tev-compare-subtitle {
    font-size: 0.8rem;
    color: #999;
}

/* Lista de características */
.tev-compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

/* Item de lista */
.tev-compare-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

/* Icono X (negativo) */
.tev-icon-negative {
    color: #dc3545;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Texto negativo */
.tev-compare-text-other {
    color: #444;
    font-size: 0.95rem;
}

/* Separador VS */
.tev-vs-wrapper {
    text-align: center;
}

.tev-vs-text {
    font-size: 2.5rem;
    color: var(--turquoise);
    font-weight: 800;
    line-height: 1;
}

.tev-vs-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--turquoise), transparent);
    margin: 0.5rem auto 0;
}

/* Columna TraductorEnVivo */
.tev-compare-col-tev {
    border: 2px solid var(--turquoise);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,209,178,0.05) 0%, rgba(0,209,178,0.02) 100%);
    position: relative;
}

/* Badge superior de la columna TEV */
.tev-compare-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--turquoise);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Avatar TEV */
.tev-compare-avatar-tev {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0,209,178,0.15);
    border: 2px solid var(--turquoise);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

/* Título columna TEV */
.tev-compare-title-tev {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--navy);
}

/* Subtítulo columna TEV (turquesa) */
.tev-compare-subtitle-tev {
    font-size: 0.8rem;
    color: var(--turquoise);
    font-weight: 600;
}

/* Icono check (positivo) */
.tev-icon-positive {
    color: var(--turquoise);
    margin-top: 2px;
    flex-shrink: 0;
}

/* Texto positivo */
.tev-compare-text-tev {
    color: #333;
    font-size: 0.95rem;
}

/* Texto resumen comparativa */
.tev-compare-summary {
    font-size: 1.1rem;
    color: #555;
    max-width: 660px;
    margin: 0 auto;
}

/* ──────────────────────────────────────────
   RESEÑAS / VALORACIONES
   ────────────────────────────────────────── */

/* Estrellas */
.tev-stars {
    color: #f59e0b;
    font-size: 1.3rem;
}

/* Puntuación numérica */
.tev-rating-value {
    font-weight: 600;
    color: var(--dark-text);
}

/* Número de opiniones */
.tev-rating-count {
    color: #666;
}

/* Enlace a caso de éxito */
.tev-case-link-text {
    color: var(--turquoise);
    text-decoration: none;
    font-weight: 600;
}

/* ──────────────────────────────────────────
   FAQ / ACCORDION
   ────────────────────────────────────────── */

/* Item de acordeón redondeado */
.tev-accordion-item {
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

/* Icono en pregunta del acordeón */
.tev-faq-icon {
    color: var(--turquoise);
}

/* ──────────────────────────────────────────
   FORMULARIO DE CONTACTO
   ────────────────────────────────────────── */

/* Sección de contacto */
.tev-section-contact {
    background: var(--bg-pale-teal);
    padding: 5rem 0;
}

/* Alerta de éxito con gradiente */
.tev-alert-success {
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
}

/* Icono check en alerta */
.tev-alert-check-icon {
    font-size: 1.5rem;
    color: #28a745;
}

/* Alerta de error */
.tev-alert-danger {
    border-radius: 12px;
}

/* Tarjeta del formulario */
.tev-form-card {
    border-radius: 20px;
    overflow: hidden;
}

/* Campo de formulario estilo landing */
.tev-form-input {
    border-radius: 12px;
    border: 2px solid #e9ecef;
    padding: 14px 18px;
    transition: all 0.3s;
}

/* Campo de formulario estilo modal */
.tev-form-input-modal {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 12px 16px;
}

/* Textarea del formulario */
.tev-form-textarea {
    border-radius: 12px;
    border: 2px solid #e9ecef;
    padding: 14px 18px;
    resize: none;
    transition: all 0.3s;
}

/* Textarea del modal */
.tev-form-textarea-modal {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 12px 16px;
    resize: none;
}

/* Checkbox del formulario */
.tev-form-checkbox {
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.15em;
    cursor: pointer;
}

/* Etiqueta del checkbox */
.tev-form-label {
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
}

/* Enlace en etiqueta de privacidad */
.tev-form-link-blue {
    color: var(--primary-blue);
}

/* Enlace en etiqueta de privacidad (modal) */
.tev-form-link-turquoise {
    color: var(--turquoise);
}

/* Botón de envío */
.tev-form-submit {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--turquoise) 100%);
    color: white;
    padding: 16px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* Botón de envío del modal */
.tev-form-submit-modal {
    background: linear-gradient(135deg, var(--turquoise) 0%, #00a896 100%);
    color: white;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s;
}

/* Pie del formulario (separador) */
.tev-form-footer {
    border-top: 1px solid #e9ecef;
}

/* Texto gris en pie del formulario */
.tev-form-footer-text {
    color: #666;
    font-size: 0.95rem;
}

/* Texto muy tenue en pie */
.tev-form-footer-subtext {
    color: #888;
    font-size: 0.9rem;
}

/* Icono shield */
.tev-icon-shield {
    color: var(--turquoise);
}

/* Icono WhatsApp */
.tev-icon-whatsapp {
    color: #25D366;
}

/* Enlace WhatsApp */
.tev-link-whatsapp {
    color: #25D366;
    font-weight: 600;
}

/* ──────────────────────────────────────────
   MODAL DE PRESUPUESTO
   ────────────────────────────────────────── */

/* Modal redondeado */
.tev-modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
}

/* Header del modal */
.tev-modal-header {
    background: linear-gradient(135deg, var(--turquoise) 0%, #00a896 100%);
    border: none;
    padding: 1.5rem 2rem;
}

/* Título del modal */
.tev-modal-title {
    font-weight: 700;
    font-size: 1.3rem;
}

/* Body del modal */
.tev-modal-body {
    padding: 2rem;
}

/* Footer del modal */
.tev-modal-footer {
    border: none;
    padding: 0 2rem 1.5rem;
    background: #f8f9fa;
}

/* ──────────────────────────────────────────
   BASE.HTML — IMPERSONATION BANNER
   ────────────────────────────────────────── */

#impersonation-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(90deg, #dc3545, #c82333);
    color: white;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(220, 53, 69, 0.5);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.tev-impersonation-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tev-impersonation-icon {
    font-size: 1.5rem;
}

.tev-impersonation-detail {
    margin-left: 0.5rem;
    opacity: 0.9;
}

.tev-impersonation-duration {
    margin-left: 1rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

.tev-impersonation-btn {
    background: white;
    color: #dc3545;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.tev-impersonation-btn:hover {
    background: #f8d7da;
    color: #dc3545;
}

.tev-impersonation-spacer {
    height: 56px;
}

/* ──────────────────────────────────────────
   BASE.HTML — NAVBAR
   ────────────────────────────────────────── */

.tev-nav-logo {
    max-width: 100%;
    width: auto;
}

.tev-nav-calc-link {
    color: var(--turquoise, #00d1b2);
    font-weight: 600;
}

.tev-nav-register-btn {
    background: var(--turquoise, #00d1b2);
    border-color: var(--turquoise, #00d1b2);
    color: white;
    font-weight: 600;
    padding: 8px 20px;
}

/* ──────────────────────────────────────────
   BASE.HTML — CHAT DE SOPORTE
   ────────────────────────────────────────── */

#soporte-toggle-btn {
    bottom: 80px;
    right: 20px;
    z-index: 1000;
    width: 56px;
    height: 56px;
    background: #0d6efd;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.tev-chat-toggle-icon {
    font-size: 1.6rem;
}

#soporte-chat {
    bottom: 150px;
    right: 20px;
    width: 350px;
    max-width: calc(100vw - 40px);
    height: 450px;
    max-height: calc(100vh - 200px);
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.tev-chat-header {
    background: linear-gradient(135deg, #0d6efd, #0056b3);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tev-chat-subtitle {
    font-size: 0.8rem;
    opacity: 0.9;
}

.tev-chat-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

#soporte-mensajes {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    background: #f8f9fa;
}

.tev-chat-input-wrap {
    padding: 10px;
    border-top: 1px solid #dee2e6;
    background: white;
}

#soporte-form {
    display: flex;
    gap: 8px;
}

#soporte-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    outline: none;
}

.tev-chat-send-btn {
    background: #0d6efd;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

/* Botón "Subir" */
#scrollTopBtn {
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

/* ──────────────────────────────────────────
   VIDEOLLAMADAS LANDING
   ────────────────────────────────────────── */

.tev-vl-cta-text {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.tev-vl-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tev-vl-btn-ghost {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
}

.tev-vl-cta-footnote {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* ──────────────────────────────────────────
   CASO VALLMED
   ────────────────────────────────────────── */

.tev-case-lead {
    margin: 0 auto;
}

.tev-case-heading {
    color: var(--dark-text);
}

/* ──────────────────────────────────────────
   FAQ
   ────────────────────────────────────────── */

.tev-faq-icon-lg {
    font-size: 2rem;
}

.tev-faq-empty-icon {
    font-size: 4rem;
}

/* ──────────────────────────────────────────
   500.html / 404.html — imágenes de logo
   ────────────────────────────────────────── */

.tev-error-logo {
    max-width: 100%;
    width: auto;
}

/* ──────────────────────────────────────────
   MANTENIMIENTO
   ────────────────────────────────────────── */

.tev-btn-loading {
    display: none;
}

/* Botón en estado de carga (opacidad reducida) */
.tev-loading {
    opacity: 0.7;
}

.tev-maintenance-footer-note {
    margin-top: 0.5rem;
}

/* ──────────────────────────────────────────
   LANDING — SECCIÓN CTA FINAL
   ────────────────────────────────────────── */

.tev-landing-cta-note {
    color: rgba(255,255,255,0.7);
    margin-top: 1rem;
    font-size: 0.9rem;
}

.tev-landing-cta-btn-ghost {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
}

.tev-landing-cta-small {
    opacity: 0.8;
}

/* Posición en campo oculto honeypot */
.tev-honeypot {
    position: absolute;
    left: -9999px;
}

/* Flex con gap 0.75rem y align-items flex-start */
.tev-flex-start {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

/* Icono play en hero-step */
.tev-play-icon {
    font-size: 2.2rem;
    color: white;
    margin-left: 4px;
}

/* Unidad de precio inline (ej: /hora, +) */
.tev-price-unit {
    font-size: 1rem;
    font-weight: 400;
}

/* Sección con fondo pale-teal y padding 5rem */
.tev-section-pale-teal {
    padding: 5rem 0;
    background: var(--bg-pale-teal);
}

/* ──────────────────────────────────────────
   ENCUESTAS
   ────────────────────────────────────────── */

/* Lista de recompensas en gracias.html */
.tev-list-mt10 {
    margin-top: 10px;
    margin-bottom: 0;
}

/* Párrafo beta en gracias_primera_sesion.html */
.tev-p-mt15 {
    margin-top: 15px;
}

/* ──────────────────────────────────────────
   MARKETING STANDALONE PAGES
   ────────────────────────────────────────── */

/* Nota pie en feedback_success y unsubscribe_brevo */
.tev-note-footer {
    margin-top: 30px;
    font-size: 14px;
}

/* Texto gris tenue en pie de unsubscribe_brevo */
.tev-note-footer-muted {
    margin-top: 30px;
    font-size: 14px;
    color: #999;
}

/* Enlace turquesa en páginas standalone */
.tev-link-turquoise-standalone {
    color: #00d1b2;
}

/* ──────────────────────────────────────────
   HISTORIAL IMPERSONACIONES (admin)
   ────────────────────────────────────────── */

.tev-imp-page {
    padding: 1rem;
}

.tev-imp-subtitle {
    color: #666;
    margin-bottom: 2rem;
}

.tev-imp-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.tev-imp-thead-row {
    background: #f8f9fa;
}

.tev-imp-th {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 2px solid #dee2e6;
}

.tev-imp-td {
    padding: 0.75rem;
}

.tev-imp-row {
    border-bottom: 1px solid #dee2e6;
}

.tev-imp-badge-active {
    background: #28a745;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
}

.tev-imp-badge-done {
    background: #6c757d;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
}

.tev-imp-td-mono {
    padding: 0.75rem;
    font-family: monospace;
    font-size: 0.875rem;
}

.tev-imp-td-empty {
    padding: 2rem;
    text-align: center;
    color: #666;
}

.tev-imp-pagination {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.tev-imp-page-btn {
    padding: 0.5rem 1rem;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.tev-imp-page-info {
    padding: 0.5rem 1rem;
    color: #666;
}

/* ──────────────────────────────────────────
   USUARIOS — ICONOS GRANDES (standalone)
   ────────────────────────────────────────── */

/* Icono envelope en recuperacion_enviada.html */
.tev-icon-3rem-purple {
    font-size: 3rem;
    color: #6f42c1;
}

/* Iconos 4rem en segmentacion_respuesta.html */
.tev-icon-4rem {
    font-size: 4rem;
}

/* ──────────────────────────────────────────
   MONITOR EVENTOS — BADGES Y SPANS INLINE
   ────────────────────────────────────────── */

/* Badge de estado del agente */
.tev-monitor-estado-badge {
    padding: 4px 12px;
    border-radius: 12px;
    background: #666;
    color: white;
}

/* Contador de eventos activos (turquesa) */
.tev-monitor-count-turquoise {
    background: var(--tev-turquoise, #00D1B2);
    padding: 2px 10px;
    border-radius: 10px;
}

/* Contador de alertas (error) */
.tev-monitor-count-error {
    background: var(--status-error, #f14668);
    padding: 2px 10px;
    border-radius: 10px;
}

/* Contenedor del gráfico de latencia */
.tev-chart-container {
    display: none;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* Título del gráfico */
.tev-chart-title {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #666;
}

/* Select del gráfico */
.tev-chart-select {
    margin-left: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 0.8rem;
}

/* Leyenda del gráfico */
.tev-chart-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    font-size: 0.75rem;
    color: #888;
}

/* Línea de leyenda Total */
.tev-legend-total::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 3px;
    background: #00D1B2;
    vertical-align: middle;
    margin-right: 4px;
}

/* Línea de leyenda STT */
.tev-legend-stt::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 3px;
    background: #3298dc;
    vertical-align: middle;
    margin-right: 4px;
}

/* Línea de leyenda TTS */
.tev-legend-tts::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 3px;
    background: #ffdd57;
    vertical-align: middle;
    margin-right: 4px;
}

/* Panel sin alertas — padding reducido */
.tev-no-eventos-sm {
    padding: 20px;
}

/* Contenedor panel estado agente */
.tev-panel-mb20 {
    margin-bottom: 20px;
}

/* Celda con ancho máximo para texto largo */
.tev-imp-td-razon {
    padding: 0.75rem;
    max-width: 300px;
}

/* ══════════════════════════════════════════════════════
   CSP CLEANUP — Clases para eliminar unsafe-inline
   Generado: 2026-04-10
   ══════════════════════════════════════════════════════ */

/* ── Toasts / Notificaciones flotantes ── */
.tev-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.tev-toast--info    { background: #3b82f6; }
.tev-toast--success { background: #10b981; }
.tev-toast--warning { background: #f59e0b; }
.tev-toast--error   { background: #ef4444; }

/* ── Banners de sala (borde inferior de color) ── */
.tev-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    transition: opacity 0.5s;
    border-bottom: 3px solid transparent;
}
.tev-banner--error { border-bottom-color: #ef4444; background: linear-gradient(135deg, #ef4444, #dc2626); color: #fff; }
.tev-banner--ok    { border-bottom-color: #10b981; background: linear-gradient(135deg, #065f46 0%, #047857 100%); color: #fff; }
.tev-banner--warn  { border-bottom-color: #f59e0b; background: linear-gradient(135deg, #1a1d24 0%, #2d3748 100%); color: #fff; }
.tev-fade-out      { opacity: 0; }
.tev-fade-reverse  { animation: fadeIn 0.2s ease reverse; }

/* ── Overlays / Modales dinámicos ── */
.tev-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    color: #fff;
    text-align: center;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}
.tev-overlay--dark  { background: rgba(13,17,23,0.93); }
.tev-overlay-icon   { font-size: 48px; margin-bottom: 20px; }
.tev-overlay-title  { font-size: 1.5rem; margin-bottom: 15px; }
.tev-overlay-body   { margin-bottom: 20px; max-width: 400px; opacity: 0.9; }
.tev-overlay-body--sm { font-size: 14px; opacity: 0.7; margin-bottom: 30px; max-width: 400px; }
.tev-overlay-btn    { padding: 14px 32px; font-size: 16px; cursor: pointer; }
.tev-overlay-btn-sm { padding: 10px 20px; font-size: 14px; cursor: pointer; }

/* ── Overlay content inner box ── */
.tev-overlay-content {
    background: #1a1d24;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    color: #fff;
}

/* ── Chat messages ── */
.tev-chat-msg {
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    max-width: 80%;
}
.tev-chat-msg--propio {
    background-color: #007bff;
    color: white;
    align-self: flex-end;
}
.tev-chat-msg--otro {
    background-color: #f0f0f0;
    color: #333;
    align-self: flex-start;
}
.tev-chat-msg-meta {
    font-size: 11px;
    opacity: 0.8;
    margin-bottom: 4px;
}
.tev-chat-msg-text { font-size: 14px; }

/* ── Estado subtítulos ── */
.tev-subtitle-activa { color: #4ade80; }
.tev-subtitle-dim    { color: rgba(255,255,255,0.6); }

/* ── Notificación estado (sala multilingüe) ── */
.tev-notif--success { background: var(--tev-green, #10b981); }
.tev-notif--error   { background: var(--tev-red, #ef4444); }

/* ── Indicador estado activo/inactivo ── */
.tev-indicador-activo   { background: #3fb950; animation: pulso 1.5s infinite; }
.tev-indicador-inactivo { background: #da3633; animation: none; }

/* ── Iconos animados (usados en innerHTML) ── */
.tev-icon-pulse   { animation: pulse 0.5s ease-in-out infinite; }
.tev-icon-spin    { animation: spin 1s linear infinite; }
.tev-icon-warn    { font-size: 20px; color: #f59e0b; }
.tev-icon-error   { font-size: 20px; color: #ef4444; }
.tev-icon-ok      { font-size: 20px; color: #10b981; }
.tev-icon-primary { font-size: 20px; color: var(--tev-turquoise, #00d1b2); }
.tev-icon-lg      { font-size: 24px; }
.tev-icon-heart   { color: #28a745; }

/* ── Drag & drop — posición por custom properties ── */
.tev-draggable {
    position: absolute;
    left: var(--drag-x, auto);
    top: var(--drag-y, auto);
    right: auto;
    bottom: auto;
}

/* ── Tooltip guía de sala ── */
.tev-guia-tooltip {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
}
.guia-color-conf { --guia-color: #71007E; }
.guia-pulso.guia-color-conf { box-shadow: 0 0 0 4px rgba(113, 0, 126, 0.3); }
.tev-guia-tooltip--centrado {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #007bff;
    color: white;
    padding: 20px 30px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(0,123,255,0.4);
    text-align: center;
    max-width: 350px;
}

/* ── Audio meter ── */
.tev-audio-meter-bar {
    width: var(--meter-width, 0%);
    transition: width 0.1s;
}

/* ── Barra de nivel audio multilingüe ── */
.tev-barra-audio {
    height: var(--bar-height, 3px);
    transition: height 0.1s;
}

/* ── Botón pantalla compartida ── */
.tev-btn-screen--idle   { background: #2d4a6b; }
.tev-btn-screen--active { background: #c0392b; }

/* ── Botón WhatsApp alerta crédito ── */
.tev-btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.tev-btn-link {
    background: #007bff;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
}

/* ── Alerta crédito ── */
.tev-alerta-credito {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.tev-alerta-credito-titulo {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 4px;
}
.tev-alerta-credito-msg { font-size: 14px; }
.tev-alerta-credito-acciones {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.tev-btn-cerrar-toast {
    background: none;
    border: none;
    color: inherit;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    margin-left: 10px;
}

/* ── Countdown reconexión ── */
.tev-countdown {
    font-size: 18px;
    font-weight: bold;
    background: var(--tev-turquoise, #00d1b2);
    color: #1a1d24;
    padding: 4px 12px;
    border-radius: 12px;
}
.tev-reconexion-msg { font-size: 16px; }

/* ── Alerta inactividad / desconexión ── */
.tev-alerta-inactividad-countdown {
    color: #e74c3c;
    font-size: 18px;
    font-weight: bold;
}
.tev-alerta-cuerpo { text-align: center; }
.tev-alerta-info {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}
.tev-alerta-footer { gap: 10px; }
.tev-alerta-btn-ok { background: #27ae60; }

/* ── WA badge (contacto admin) ── */
.tev-wa-badge {
    background-color: #25D366;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
}

/* ── QR image ── */
.tev-qr-img {
    width: 256px;
    height: 256px;
}

/* ── Video hidden (pantalla grande panel) ── */
.tev-video-hidden { display: none; }

/* ── Paso guía ── */
.tev-guia-paso {
    display: block;
    font-size: 11px;
    opacity: 0.7;
    margin-top: 6px;
}

/* ── Overlay panel multilingüe (redirigiendo) ── */
.tev-panel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13,17,23,0.93);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.tev-panel-overlay-title {
    margin: 0 0 8px;
    color: #e6edf3;
}
.tev-panel-overlay-sub { color: #7d8590; }

/* ── Overlay fin panel multilingüe ── */
.tev-panel-fin-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    color: #fff;
    text-align: center;
    padding: 20px;
}
.tev-panel-fin-icon  { font-size: 80px; color: #28a745; margin-bottom: 20px; }
.tev-panel-fin-title { font-size: 32px; margin-bottom: 16px; }
.tev-panel-fin-msg   { font-size: 18px; color: #aaa; margin-bottom: 32px; }
.tev-panel-fin-btn {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
}

/* ── Estado traducción mesa redonda ── */
.tev-estado-activa   { color: var(--tev-green, #10b981); }
.tev-estado-pausada  { color: var(--tev-orange, #f59e0b); }
.tev-estado-detenida { color: var(--tev-red, #ef4444); }

/* ── Optimizador discurso ── */
.tev-optimizador-cambio { margin-top: 4px; }
.tev-optimizador-code   { font-size: 0.8rem; }
.tev-optimizador-razon  { margin-top: 4px; }

/* ── Checkout / Facturación ── */
.tev-iva-exento { color: #28a745; }

/* ── Mantenimiento — validación formulario ── */
.tev-mant-input-ok     { border-color: #28a745 !important; }
.tev-mant-input-error  { border-color: #dc3545 !important; }
.tev-mant-feedback-ok  { color: #28a745; }
.tev-mant-feedback-err { color: #dc3545; }

/* ── CTA modal inner (position relative) ── */
.tev-cta-modal-inner { position: relative; }

/* ── Overlay title variante primary ── */
.tev-overlay-title--primary { color: #007bff; }

/* ── Slide up animation para toasts ── */
@keyframes slideUp {
    from { transform: translateX(-50%) translateY(0); opacity: 1; }
    to   { transform: translateX(-50%) translateY(-20px); opacity: 0; }
}
.tev-slide-up { animation: slideUp 0.3s ease-out forwards; }

/* ── Banner recordatorio (inferior, morado) ── */
.tev-banner-recordatorio {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(113, 0, 126, 0.95);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* ── Banner sala (top, turquesa) — reconexión rápida / reinicio traductor ── */
.tev-banner-sala {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #1a1d24 0%, #2d3748 100%);
    border-bottom: 3px solid var(--tev-turquoise, #00d1b2);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 10000;
    color: white;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.tev-banner-sala--reconexion {
    padding: 16px 24px;
    gap: 20px;
    animation: slideDown 0.3s ease-out;
}

/* ── Alerta crédito toast (posición fija top-right) ── */
.tev-alerta-credito-notif {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 10000;
    max-width: 350px;
    animation: slideInRight 0.3s ease-out;
}
.tev-alerta-credito-notif--advertencia { background: #ffc107; color: #1a1d24; }
.tev-alerta-credito-notif--bajo        { background: #ff9800; color: white; }
.tev-alerta-credito-notif--critico     { background: #dc3545; color: white; }
.tev-alerta-credito-notif--agotado     { background: #dc3545; color: white; }

/* ── Alerta conexión modal — variantes de tamaño ── */
.tev-alerta-modal--sm { max-width: 400px; }
.tev-alerta-modal--md { max-width: 420px; }

/* ── Overlay botón con margen inferior ── */
.tev-overlay-btn--mb { margin-bottom: 15px; }

/* ── Guía — mensaje final centrado ── */
.tev-guia-mensaje-final {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    z-index: 1001;
    max-width: 320px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    text-align: center;
    background: var(--guia-color, #71007E);
}

/* ── Mesa redonda — tarjetas debate y estado ── */
.tev-ponente-hablando-debate { background: rgba(0, 209, 178, 0.15); }
.tev-floor-empty-debate {
    background: rgba(0, 209, 178, 0.2);
    border: 1px solid var(--tev-turquoise, #00d1b2);
}
.tev-cola-empty-debate {
    background: rgba(0, 209, 178, 0.1);
    border: 1px dashed var(--tev-turquoise, #00d1b2);
}
.tev-text-turquoise { color: var(--tev-turquoise, #00d1b2); }
.tev-text-turquoise-bold { color: var(--tev-turquoise, #00d1b2); font-weight: 600; }
.tev-avatar-yellow { background: var(--tev-yellow, #f59e0b); }
.tev-btn-orange { background: var(--tev-orange, #f59e0b); color: #fff; }
.tev-btn-blue   { background: var(--tev-blue, #007bff); color: #fff; }
.tev-ponente-card-turno   { border-left: 3px solid var(--tev-green, #10b981); }
.tev-ponente-card-normal  { border-left: 3px solid var(--tev-turquoise, #00d1b2); }
.tev-avatar-turno  { background: var(--tev-green, #10b981); }
.tev-avatar-normal { background: var(--tev-turquoise, #00d1b2); }
.tev-estado-turno  { color: var(--tev-green, #10b981); }
.tev-estado-normal { color: var(--tev-turquoise, #00d1b2); }
.tev-text-sm-subtle  { font-size: 12px; margin-top: 8px; }
.tev-text-xs-subtle  { font-size: 11px; opacity: 0.7; }
.tev-info-circle-turquoise { font-size: 18px; display: block; margin-bottom: 8px; color: var(--tev-turquoise, #00d1b2); }
.tev-floor-empty-hint { font-size: 12px; margin-top: 8px; }

/* ── Alerta conexion modal — variantes tamaño ── */
.tev-alerta-modal-sm { max-width: 400px; }
.tev-alerta-modal-md { max-width: 420px; }

/* ── Opacidad reducida (loading/disabled) ── */
.tev-opacity-60 { opacity: 0.6; }

/* ── Textarea fuera de pantalla (truco portapapeles) ── */
.tev-clipboard-helper { position: fixed; opacity: 0; }

/* ── Toast Bootstrap z-index ── */
.tev-z-toast { z-index: 9999; }

/* ── Toast min-width ── */
.tev-toast-minw { min-width: 280px; }

/* ── Panel ponente label width ── */
.tev-panel-ponente-label { min-width: 100px; }

/* ── Badge término de discurso / palabras clave ── */
.tev-badge-termino { background: #e8f5e9; color: #2e7d32; font-size: 0.78rem; font-weight: 500; }

/* ── Panel multilingüe — nombre del hablante activo ── */
.tev-panel-hablando-nombre { color: #e6edf3; }

/* ── Monitor eventos KPIs ── */
.tev-monitor-sesion       { color: #888; }
.tev-monitor-estado-wrap  { display: flex; align-items: center; gap: 5px; }
.tev-monitor-dot--ok      { width: 8px; height: 8px; border-radius: 50%; background: var(--status-ok, #10b981); display: inline-block; }
.tev-monitor-dot--off     { width: 8px; height: 8px; border-radius: 50%; background: #ccc; display: inline-block; }
.tev-monitor-no-alertas   { padding: 20px; }
.tev-monitor-sin-alertas  { color: var(--status-ok, #10b981); }
.tev-monitor-agente--ok   { background: var(--status-ok, #10b981); }
.tev-monitor-agente--err  { background: var(--status-error, #ef4444); }

/* ── Body sin scroll (modal abierto) ── */
.tev-no-scroll { overflow: hidden; }

/* ── Flash verde feedback guardado ── */
.tev-flash-ok { background-color: #d4edda !important; }

/* ── Wise copy button — feedback copiado ── */
.tev-wise-copied { background: #28a745 !important; }

/* ── Soporte chat burbujas ── */
.tev-soporte-msg-wrap           { display: flex; flex-direction: column; margin-bottom: 10px; }
.tev-soporte-msg-wrap--usuario  { align-items: flex-end; }
.tev-soporte-msg-wrap--bot      { align-items: flex-start; }
.tev-soporte-burbuja--usuario   { border-radius: 18px 18px 4px 18px; max-width: 85%; padding: 10px 14px; box-shadow: 0 1px 2px rgba(0,0,0,0.1); word-break: break-word; }
.tev-soporte-burbuja--bot       { border-radius: 18px 18px 18px 4px; max-width: 85%; padding: 10px 14px; box-shadow: 0 1px 2px rgba(0,0,0,0.1); word-break: break-word; }

/* ── Exit intent popup ── */
#exitIntentOverlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    animation: tev-fadeIn 0.3s ease;
}
#exitIntentOverlay.show { display: flex; }
@keyframes tev-fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.exit-intent-popup {
    background: white;
    border-radius: 20px;
    max-width: 450px;
    width: 90%;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: tev-slideIn 0.4s ease;
}
@keyframes tev-slideIn {
    from { transform: translateY(-30px); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
}
.exit-intent-close {
    position: absolute; top: 15px; right: 20px;
    background: none; border: none;
    font-size: 28px; color: #999; cursor: pointer;
    transition: color 0.2s;
}
.exit-intent-close:hover { color: #333; }
.exit-intent-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, #00d1b2 0%, #007bff 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.exit-intent-icon i { font-size: 32px; color: white; }
.exit-intent-popup h3 { font-size: 1.8rem; color: #2c3e50; margin-bottom: 8px; }
.exit-intent-subtitle { color: #666; font-size: 1rem; margin-bottom: 25px; }
.exit-intent-offer {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
    border-radius: 12px; padding: 20px; margin-bottom: 15px;
}
.exit-intent-offer-fomo {
    background: linear-gradient(135deg, #e8f4fd 0%, #d1ecf1 100%);
    border-left: 4px solid #0d6efd;
}
.exit-intent-discount { font-size: 1.5rem; font-weight: 700; color: #e67e00; display: block; }
.exit-intent-highlight { font-size: 1.15rem; font-weight: 600; color: #0d6efd; display: block; line-height: 1.4; }
.exit-intent-offer p { margin: 5px 0 0; color: #856404; }
.exit-intent-offer-fomo p { color: #0c5460; margin-top: 10px; }
.exit-intent-urgency { color: #dc3545; font-weight: 600; margin-bottom: 25px; }
.exit-intent-urgency i { margin-right: 5px; }
.exit-intent-fact { color: #198754; font-weight: 600; margin-bottom: 25px; }
.exit-intent-fact i { margin-right: 5px; }
.exit-intent-buttons { display: flex; flex-direction: column; gap: 12px; }
.btn-exit-primary {
    background: linear-gradient(135deg, #00d1b2 0%, #00b8a3 100%);
    color: white; padding: 15px 30px; border-radius: 30px;
    font-weight: 600; font-size: 1.1rem; text-decoration: none;
    display: inline-block; transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 209, 178, 0.4);
}
.btn-exit-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 209, 178, 0.5);
    color: white;
}
.btn-exit-secondary {
    background: transparent; border: none;
    color: #999; padding: 10px; cursor: pointer; font-size: 0.9rem;
}
.btn-exit-secondary:hover { color: #666; }
.exit-intent-trust { color: #28a745; font-size: 0.85rem; margin-top: 20px; }
.exit-intent-trust i { margin-right: 5px; }
@media (max-width: 480px) {
    .exit-intent-popup { padding: 30px 20px; }
    .exit-intent-popup h3 { font-size: 1.5rem; }
    .exit-intent-discount { font-size: 1.3rem; }
}
.tev-soporte-link               { color: #0d6efd; text-decoration: underline; }

/* ── Landings de sector (congresos-cientificos, industria, eventos-rrhh, colegios-profesionales, congresos-medicos, formacion-empresas, webinars-corporativos) ── */
.sector-landing-root {
    --bg-pale-teal: #edf4f4;
    --primary-blue: #007bff;
    --turquoise: #00d1b2;
    --dark-bg: #0a2540;
    --dark-card: #0d2d4d;
    --dark-text: #1a1a2e;
    --light-text: #666;
}

.sector-landing body { font-family: 'Noto Sans', sans-serif; }
.sector-landing h1, .sector-landing h2, .sector-landing h3, .sector-landing h4, .sector-landing .btn { font-family: 'Roboto', sans-serif; }

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

.hero-dark {
    background: linear-gradient(135deg, #0a2540 0%, #0d3a5c 50%, #0f4c75 100%);
    color: white;
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(0,209,178,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0,123,255,0.12) 0%, transparent 50%);
    pointer-events: none;
}

.hero-dark .container { position: relative; z-index: 1; }

.hero-badge-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: white;
    border: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 1.5rem;
}

.hero-badge-dark i { color: #00d1b2; }

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    background: linear-gradient(90deg, #00d1b2, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    max-width: 620px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

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

.hero-stat-number {
    font-size: 2.6rem;
    font-weight: 800;
    color: #00d1b2;
    display: block;
    font-family: 'Roboto', sans-serif;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
}

.hero-cta-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #00d1b2 0%, #00b89c 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(0,209,178,0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,209,178,0.5);
    color: white;
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 15px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.2);
    color: white;
}

.section-problem {
    padding: 5rem 0;
    background: white;
}

.section-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
    font-family: 'Roboto', sans-serif;
}

.section-lead {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
}

.problem-card {
    background: #edf4f4;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ef4444, #f97316);
}

.problem-card:hover {
    transform: translateY(-6px);
    border-color: #fca5a5;
    box-shadow: 0 16px 40px rgba(239,68,68,0.12);
}

.problem-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ef4444;
    margin-bottom: 1.25rem;
}

.problem-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.6rem;
}

.problem-card p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.section-how {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a2540 0%, #0d3a5c 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.section-how::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(0,209,178,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.section-how .container { position: relative; z-index: 1; }

.section-heading-white {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
    font-family: 'Roboto', sans-serif;
}

.section-lead-white {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 3rem;
}

.how-step-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2rem 1.75rem;
    height: 100%;
    transition: all 0.3s;
    position: relative;
}

.how-step-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: #00d1b2;
    transform: translateY(-5px);
}

.how-step-number {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #007bff 0%, #00d1b2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.25rem;
    font-family: 'Roboto', sans-serif;
}

.how-step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.6rem;
}

.how-step-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.how-step-card .step-tag {
    display: inline-block;
    background: rgba(0,209,178,0.15);
    color: #00d1b2;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    margin-top: 1rem;
    border: 1px solid rgba(0,209,178,0.3);
}

.section-price {
    padding: 5rem 0;
    background: #edf4f4;
}

.price-compare-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 780px;
    margin: 0 auto 2.5rem;
}

.price-col-card {
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.price-col-card.traditional {
    background: white;
    border: 2px solid #fecaca;
}

.price-col-card.tev {
    background: linear-gradient(135deg, #0a2540 0%, #0d3a5c 100%);
    border: 2px solid #00d1b2;
    color: white;
    box-shadow: 0 16px 48px rgba(0,209,178,0.2);
}

.price-col-badge {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
}

.price-col-card.traditional .price-col-badge {
    background: #fee2e2;
    color: #ef4444;
}

.price-col-card.tev .price-col-badge {
    background: rgba(0,209,178,0.2);
    color: #00d1b2;
    border: 1px solid rgba(0,209,178,0.4);
}

.price-col-amount-big {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    margin-bottom: 0.4rem;
    font-family: 'Roboto', sans-serif;
}

.price-col-card.traditional .price-col-amount-big {
    color: #ef4444;
    text-decoration: line-through;
    opacity: 0.8;
}

.price-col-card.tev .price-col-amount-big {
    color: #00d1b2;
}

.price-col-detail-text {
    font-size: 0.85rem;
    line-height: 1.5;
}

.price-col-card.traditional .price-col-detail-text { color: #666; }
.price-col-card.tev .price-col-detail-text { color: rgba(255,255,255,0.6); }

.price-col-items {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    text-align: left;
}

.price-col-items li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    padding: 5px 0;
}

.price-col-card.traditional .price-col-items li { color: #6b7280; }
.price-col-card.traditional .price-col-items li i { color: #ef4444; }
.price-col-card.tev .price-col-items li { color: rgba(255,255,255,0.75); }
.price-col-card.tev .price-col-items li i { color: #00d1b2; }

.price-saving-banner {
    background: linear-gradient(135deg, rgba(0,209,178,0.15) 0%, rgba(0,123,255,0.1) 100%);
    border: 1px solid rgba(0,209,178,0.3);
    border-radius: 14px;
    padding: 1.25rem 1.75rem;
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.price-saving-banner i {
    font-size: 1.8rem;
    color: #00d1b2;
    flex-shrink: 0;
}

.price-saving-banner p {
    margin: 0;
    color: #374151;
    font-size: 0.97rem;
    line-height: 1.6;
}

.section-usecases {
    padding: 5rem 0;
    background: white;
}

.usecase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.usecase-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 16px;
    border: 2px solid transparent;
    background: #edf4f4;
    transition: all 0.3s;
}

.usecase-card:hover {
    border-color: #00d1b2;
    background: white;
    box-shadow: 0 8px 24px rgba(0,209,178,0.12);
    transform: translateY(-3px);
}

.usecase-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.usecase-icon.blue  { background: #dbeafe; color: #007bff; }
.usecase-icon.teal  { background: #ccfbf1; color: #00d1b2; }
.usecase-icon.green { background: #d1fae5; color: #059669; }

.usecase-card h4 {
    font-size: 0.97rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.25rem;
}

.usecase-card p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.section-cta-final {
    padding: 5rem 0;
    background: linear-gradient(135deg, #007bff 0%, #00d1b2 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.section-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.section-cta-final .container { position: relative; z-index: 1; }

.section-cta-final h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-cta-final p {
    font-size: 1.1rem;
    opacity: 0.92;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white-cta {
    background: white;
    color: #007bff;
    padding: 18px 44px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-white-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
    color: #007bff;
}

.cta-subtext {
    margin-top: 1.25rem;
    font-size: 0.9rem;
    opacity: 0.75;
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-stats { justify-content: center; }
    .hero-cta-row { justify-content: center; }
    .price-compare-wrap { grid-template-columns: 1fr; }
    .section-cta-final h2 { font-size: 1.8rem; }
    .section-heading, .section-heading-white { font-size: 1.8rem; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 1.8rem; }
    .hero-stat-number { font-size: 2rem; }
    .hero-stats { gap: 1.25rem; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
    .btn-white-cta { width: 100%; justify-content: center; }
}

/* ── Landing caso-vallmed ── */
.caso-vallmed-root {
    --bg-pale-teal: #edf4f4;
    --primary-blue: #007bff;
    --turquoise: #00d1b2;
    --dark-bg: #0d1f2d;
    --dark-card: #0d2d4d;
    --dark-text: #1a1a2e;
    --light-text: #666;
}

.video-thumbnail-wrapper--short {
    max-width: 220px;
}

.video-thumbnail-wrapper--short img {
    aspect-ratio: 9/16 !important;
    max-height: 390px;
    object-fit: cover;
}

.video-thumbnail-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 680px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    cursor: pointer;
    margin-bottom: 2.5rem;
    text-decoration: none;
}

.video-thumbnail-wrapper img {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
    transition: background 0.3s;
}

.video-thumbnail-wrapper:hover .video-play-overlay {
    background: rgba(0,0,0,0.5);
}

.video-play-btn {
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.video-thumbnail-wrapper:hover .video-play-btn {
    transform: scale(1.1);
}

.video-play-btn i {
    font-size: 1.8rem;
    color: #0d1f2d;
    margin-left: 4px;
}

.hero-metrics {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

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

.hero-metric-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: #00d1b2;
    display: block;
    font-family: 'Roboto', sans-serif;
}

.hero-metric-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
}

.section-light {
    padding: 5rem 0;
    background: #f8f9fa;
}

.section-dark {
    padding: 5rem 0;
    background: #0d1f2d;
    color: white;
}

.section-light .section-heading { color: #1a1a2e; }
.section-dark .section-heading { color: white; }

.section-light .section-lead { color: #666; }
.section-dark .section-lead { color: rgba(255,255,255,0.78); }

.quote-block {
    border-left: 4px solid #00d1b2;
    padding: 1.2rem 1.5rem;
    background: white;
    border-radius: 0 12px 12px 0;
    font-size: 1.1rem;
    font-style: italic;
    color: #1a1a2e;
    max-width: 680px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.solution-icon-box {
    text-align: center;
    padding: 2rem 1.5rem;
}

.solution-icon {
    width: 64px;
    height: 64px;
    background: rgba(0,209,178,0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.solution-icon i {
    font-size: 1.8rem;
    color: #00d1b2;
}

.solution-icon-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.4rem;
}

.solution-icon-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
}

.result-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    height: 100%;
    transition: transform 0.3s;
}

.result-card:hover { transform: translateY(-4px); }

.result-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #00d1b2;
    font-family: 'Roboto', sans-serif;
    display: block;
}

.result-label {
    font-size: 0.95rem;
    color: #666;
    margin-top: 0.3rem;
}

.testimonial-wrap {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00d1b2;
    margin-bottom: 1.5rem;
}

.testimonial-quote {
    font-size: 1.25rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.9);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding-top: 2rem;
}

.testimonial-quote::before {
    content: '\201C';
    font-size: 4rem;
    color: #00d1b2;
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.6;
}

.testimonial-name {
    font-weight: 700;
    color: white;
    font-size: 1rem;
}

.testimonial-role {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.short-video-wrap { text-align: center; }

.short-video-wrap iframe {
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    max-width: 340px;
    width: 100%;
}

.short-caption {
    font-size: 0.95rem;
    color: #666;
    margin-top: 1rem;
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0d1f2d 0%, #0a2540 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Roboto', sans-serif;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.78);
    margin-bottom: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(37,211,102,0.35);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37,211,102,0.45);
    color: white;
}

.cta-secondary-link {
    display: block;
    margin-top: 1.2rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.cta-secondary-link:hover { color: #00d1b2; }

@media (max-width: 768px) {
    .hero-metrics { gap: 1.5rem; justify-content: center; }
    .cta-title { font-size: 1.7rem; }
    .testimonial-quote { font-size: 1.05rem; }
}

/* ── Landing calculadora ── */
.calc-hero {
    background: linear-gradient(135deg, #0a2540 0%, #0d3a5c 50%, #0f4c75 100%);
    color: white;
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.calc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(0,209,178,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0,123,255,0.12) 0%, transparent 50%);
    pointer-events: none;
}

.calc-hero .container { position: relative; z-index: 1; }

.calc-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.calc-hero h1 .highlight {
    background: linear-gradient(90deg, #00d1b2, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.calc-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
}

.calc-section {
    padding: 4rem 0 5rem;
    background: #edf4f4;
}

.calc-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,209,178,0.15);
}

.calc-label {
    font-weight: 700;
    color: #1a1a2e;
    font-size: 1rem;
    margin-bottom: 0.4rem;
    display: block;
}

.calc-sublabel {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
    display: block;
}

.calc-slider-wrap {
    position: relative;
    margin-bottom: 0.5rem;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e5e7eb;
    outline: none;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d1b2, #007bff);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,209,178,0.4);
    transition: transform 0.2s;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.slider-value {
    font-size: 2rem;
    font-weight: 800;
    color: #007bff;
    font-family: 'Roboto', sans-serif;
}

.slider-unit {
    font-size: 1rem;
    color: #666;
    margin-left: 4px;
}

.slider-marks {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: #9ca3af;
    margin-top: 4px;
}

.idiomas-toggle {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.idioma-btn {
    padding: 10px 20px;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    background: white;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1a1a2e;
    cursor: pointer;
    transition: all 0.2s;
}

.idioma-btn:hover {
    border-color: #00d1b2;
}

.idioma-btn.active {
    background: linear-gradient(135deg, #00d1b2, #007bff);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 14px rgba(0,209,178,0.35);
}

.coste-tradicional-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: border-color 0.2s;
}

.coste-tradicional-wrap:focus-within {
    border-color: #007bff;
}

.coste-tradicional-wrap span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #666;
}

.coste-tradicional-wrap input {
    border: none;
    background: transparent;
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a1a2e;
    width: 100%;
    outline: none;
    font-family: 'Roboto', sans-serif;
}

.coste-tradicional-hint {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 0.4rem;
    font-style: italic;
}

.desglose-wrap {
    background: #fef9f0;
    border: 1px solid #fde68a;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-top: 0.75rem;
}

.desglose-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #92400e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.6rem;
}

.desglose-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #78350f;
    padding: 3px 0;
    border-bottom: 1px solid rgba(253,230,138,0.5);
}

.desglose-row:last-child { border-bottom: none; font-weight: 700; }

.resultado-card {
    background: linear-gradient(135deg, #0a2540 0%, #0d3a5c 100%);
    border-radius: 24px;
    padding: 2.5rem;
    color: white;
    position: sticky;
    top: 2rem;
}

.resultado-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.25rem;
}

.resultado-amount {
    font-size: 2.8rem;
    font-weight: 800;
    font-family: 'Roboto', sans-serif;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.resultado-amount.red { color: #f87171; text-decoration: line-through; opacity: 0.8; }
.resultado-amount.teal { color: #00d1b2; }

.resultado-detail {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 1.5rem;
}

.ahorro-highlight {
    background: linear-gradient(135deg, rgba(0,209,178,0.2) 0%, rgba(0,123,255,0.15) 100%);
    border: 1px solid rgba(0,209,178,0.4);
    border-radius: 14px;
    padding: 1.25rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.ahorro-highlight .ahorro-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.ahorro-highlight .ahorro-euros {
    font-size: 3rem;
    font-weight: 900;
    color: #00d1b2;
    font-family: 'Roboto', sans-serif;
    line-height: 1;
}

.ahorro-highlight .ahorro-pct {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-top: 0.25rem;
}

.paquete-rec {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.paquete-rec-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.paquete-rec-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.2rem;
}

.paquete-rec-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #00d1b2;
    font-family: 'Roboto', sans-serif;
}

.paquete-rec-hours {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-left: 6px;
}

.btn-calc-cta {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #00d1b2 0%, #00b89c 100%);
    color: white;
    padding: 16px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(0,209,178,0.35);
}

.btn-calc-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,209,178,0.45);
    color: white;
}

.calc-disclaimer {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    text-align: center;
    margin-top: 0.75rem;
    line-height: 1.5;
}

.calc-divider {
    border: none;
    border-top: 1px solid #f3f4f6;
    margin: 2rem 0;
}

@media (max-width: 991px) {
    .resultado-card { position: static; margin-top: 2rem; }
}

@media (max-width: 768px) {
    .calc-hero h1 { font-size: 2rem; }
    .ahorro-highlight .ahorro-euros { font-size: 2.2rem; }
    .resultado-amount { font-size: 2.2rem; }
}

/* ── Landing precios ── */
.pricing-hero {
    background: linear-gradient(135deg, #0f1419 0%, #1e293b 50%, #1a1d24 100%);
    padding: 5rem 0 3rem;
    text-align: center;
    color: white;
}

.pricing-hero h1 {
    font-weight: 800;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.pricing-hero .subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    opacity: 0.9;
}

.pricing-hero .highlight {
    background: linear-gradient(90deg, #00d1b2, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.95rem;
    color: white;
    font-weight: 500;
}

.hero-badge i {
    color: #00d1b2;
}

.section-spacing {
    padding: 4rem 0;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: #007bff;
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
}

@media (max-width: 576px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
}

.pricing-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.pricing-card.featured {
    background: rgba(0, 209, 178, 0.1);
    border: 2px solid #00d1b2;
    position: relative;
}

.pricing-card.featured .featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00d1b2 0%, #10b981 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.pricing-header .hours {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.price-amount {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-amount .price {
    font-size: 3rem;
    font-weight: 800;
    color: white;
}

.price-amount .price-usd {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.95);
    margin-top: 4px;
    font-weight: 600;
}

.price-per-min {
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #00d1b2;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    font-size: 0.9rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
}

.pricing-features li i {
    width: 20px;
    text-align: center;
}

.pricing-features li i.bi-check-circle-fill { color: #00d1b2; }
.pricing-features li i.bi-person-badge-fill { color: #8b5cf6; }
.pricing-features li i.bi-whatsapp { color: #25D366; }
.pricing-features li i.bi-camera-video { color: #00d1b2; }

.cta-duo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 2.5rem 0 1.5rem;
}

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

.cta-duo-card {
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
}

.cta-duo-register {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.15) 0%, rgba(0, 209, 178, 0.15) 100%);
    border: 1px solid rgba(0, 209, 178, 0.3);
}

.cta-duo-demo {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-duo-icon {
    font-size: 2rem;
    color: #00d1b2;
}

.cta-duo-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.cta-duo-sublabel {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.btn-cta-register {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #007bff 0%, #00d1b2 100%);
    color: white;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.35);
    margin-top: 4px;
}

.btn-cta-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 123, 255, 0.5);
    color: white;
}

.btn-demo-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-demo-whatsapp:hover {
    background: #1ebe5a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
}

.cta-duo-demo-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.bonus-section {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(0, 209, 178, 0.15) 100%);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.bonus-icon {
    background: linear-gradient(135deg, #10b981 0%, #00d1b2 100%);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-icon i {
    font-size: 1.5rem;
    color: white;
}

.bonus-text {
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
}

.bonus-price-old {
    text-decoration: line-through;
    color: rgba(255,255,255,0.5);
    margin-left: 10px;
}

.bonus-badge {
    background: linear-gradient(135deg, #10b981 0%, #00d1b2 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    margin-left: 10px;
    font-size: 0.9rem;
}

.feature-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.feature-badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    color: white;
}

.feature-badge i {
    color: #00d1b2;
    margin-right: 6px;
}

.comparison-section {
    background: #edf4f4;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.comparison-table th,
.comparison-table td {
    padding: 18px 20px;
    text-align: center;
}

.comparison-table thead th {
    background: #007bff;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.comparison-table thead th:first-child { text-align: left; }
.comparison-table thead th:last-child { background: #00d1b2; }

.comparison-table tbody tr:nth-child(even) { background: #edf4f4; }
.comparison-table tbody td:first-child { text-align: left; font-weight: 500; }

.comparison-table tbody td svg { width: 22px; height: 22px; }
.comparison-table tbody td svg.check { color: #28a745; }
.comparison-table tbody td svg.x { color: #dc3545; }

.faq-section {
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #edf4f4;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.faq-item h4 {
    color: #007bff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h4 svg {
    width: 24px;
    height: 24px;
    color: #00d1b2;
}

.faq-item p {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.btn-white {
    background: white;
    color: #007bff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    color: #007bff;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-white:hover {
    background: white;
    color: #007bff;
}

@media (max-width: 768px) {
    .pricing-hero h1 { font-size: 2rem; }
    .faq-grid { grid-template-columns: 1fr; }
    .comparison-table { font-size: 0.85rem; }
    .comparison-table th,
    .comparison-table td { padding: 12px 10px; }
    .cta-buttons { flex-direction: column; align-items: center; }
}

/* ── Landing principal (landing.html) ── */
body.landing-page,
.landing-page {
    font-family: 'Noto Sans', sans-serif !important;
}

.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page h4,
.landing-page h5,
.landing-page h6,
.landing-page .btn,
.landing-page button,
.landing-page .hero-title,
.landing-page .section-title,
.landing-page .pricing-name,
.landing-page .step-number,
.landing-page .pricing-price {
    font-family: 'Roboto', sans-serif !important;
}

.landing-page p,
.landing-page span,
.landing-page li,
.landing-page .hero-subtitle,
.landing-page .section-subtitle {
    font-family: 'Noto Sans', sans-serif !important;
}

.urgency-topbar {
    width: 100%;
    background: #E36E00;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    flex-wrap: wrap;
    text-align: center;
    position: relative;
    z-index: 10;
    animation: glow-topbar 2.5s ease-in-out infinite;
}

@keyframes glow-topbar {
    0%, 100% {
        box-shadow: 0 4px 20px 4px rgba(227, 110, 0, 0.7), 0 8px 40px 0px rgba(227, 110, 0, 0.4);
        filter: brightness(1);
    }
    50% {
        box-shadow: 0 6px 35px 8px rgba(227, 110, 0, 1), 0 12px 60px 4px rgba(227, 110, 0, 0.6);
        filter: brightness(1.15);
    }
}

.urgency-topbar-icon {
    color: white;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.urgency-topbar-text {
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
}

.urgency-topbar-text strong {
    font-size: 1.2rem;
    font-weight: 900;
    color: white;
    letter-spacing: 0.5px;
}

.urgency-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1a1200 0%, #2d1f00 100%);
    border: 1px solid rgba(255, 165, 0, 0.5);
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    color: white;
    margin-bottom: 1.5rem;
    animation: pulse-urgency 2.5s ease-in-out infinite;
    flex-wrap: wrap;
}

.urgency-badge {
    background: #f59e0b;
    color: #1a1200;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.urgency-banner .urgency-icon {
    color: #f59e0b;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.urgency-banner strong {
    color: #f59e0b;
}

.urgency-banner .urgency-sub {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
}

@keyframes pulse-urgency {
    0%, 100% { box-shadow: 0 4px 20px rgba(245, 158, 11, 0.2); }
    50% { box-shadow: 0 4px 30px rgba(245, 158, 11, 0.45); }
}

.btn-cta-intermedio {
    background: transparent;
    color: white;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid #00d1b2;
    transition: all 0.3s;
}

.btn-cta-intermedio:hover {
    background: #00d1b2;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 209, 178, 0.4);
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 1.8rem;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.testimonial-header .testimonial-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff 0%, #00d1b2 100%);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    margin-bottom: 0;
    box-shadow: 0 3px 10px rgba(0, 123, 255, 0.35);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 0.85rem;
}

.testimonial-text {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.guarantee-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.guarantee-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 209, 178, 0.15);
    border: 2px solid #00d1b2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #00d1b2;
    margin: 0 auto 1.2rem;
}

.guarantee-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.guarantee-card p {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.price-highlight {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 209, 178, 0.2) 0%, rgba(0, 123, 255, 0.15) 100%);
    border: 1px solid rgba(0, 209, 178, 0.4);
    padding: 16px 28px;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.price-highlight .price-from {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.price-highlight .price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00d1b2;
}

.price-highlight .price-unit {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-cta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: transform 0.25s ease;
    flex: 1 1 0;
    min-width: 100px;
}

.hero-cta-item:hover {
    transform: translateY(-3px);
}

.hero-cta-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.25s ease;
}

.hero-cta-item:hover .hero-cta-circle {
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.hero-cta-circle--register {
    background: linear-gradient(135deg, #007bff 0%, #00d1b2 100%);
    box-shadow: 0 4px 14px rgba(0, 123, 255, 0.4);
}

.hero-cta-circle--wa {
    background: #25D366;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
}

.hero-cta-circle--yt {
    background: #ff0000;
    box-shadow: 0 4px 14px rgba(255, 0, 0, 0.35);
}

.hero-cta-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    text-align: center;
    line-height: 1.3;
}

.landing-page .hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 576px) {
    .landing-page .hero-cta {
        justify-content: center;
    }
}

.landing-page .btn-hero-primary {
    background: linear-gradient(135deg, #00d1b2 0%, #00b89c 50%, #00d1b2 100%);
    background-size: 200% 200%;
    color: white;
    padding: 22px 48px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.4rem;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 209, 178, 0.5), 0 0 0 0 rgba(0, 209, 178, 0.4);
    transition: all 0.3s;
    animation: pulseGlow 2s ease-in-out infinite, gradientShift 3s ease infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 10px 40px rgba(0, 209, 178, 0.5), 0 0 0 0 rgba(0, 209, 178, 0.4); }
    50% { box-shadow: 0 15px 50px rgba(0, 209, 178, 0.6), 0 0 0 15px rgba(0, 209, 178, 0); }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.landing-page .btn-hero-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 209, 178, 0.6);
    color: white;
    animation: none;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-feature i {
    color: #00d1b2;
    font-size: 1.1rem;
}

.compare-card {
    background: #edf4f4;
    border: 2px solid #00d1b2;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 209, 178, 0.25);
}

.compare-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #007bff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.compare-table {
    width: 100%;
}

.compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 123, 255, 0.15);
    font-size: 0.9rem;
}

.compare-row:last-child { border-bottom: none; }

.compare-row.header {
    font-weight: 700;
    color: #007bff;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.compare-row .feature { color: #1a1a2e; }
.compare-row .competitor { text-align: center; color: #6b7280; }
.compare-row .us { text-align: center; color: #00d1b2; font-weight: 600; }
.compare-row .us .check { color: #10b981; }

.compare-total {
    background: linear-gradient(135deg, rgba(0, 209, 178, 0.2) 0%, rgba(0, 123, 255, 0.15) 100%);
    border: 2px solid #00d1b2;
    border-radius: 12px;
    padding: 16px;
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
}

.compare-total .label { color: #007bff; font-size: 0.85rem; font-weight: 600; }
.compare-total .competitor-price { color: #ef4444; font-weight: 700; font-size: 1.1rem; text-decoration: line-through; }
.compare-total .our-price { color: #00d1b2; font-weight: 800; font-size: 1.3rem; }

.compare-winner {
    background: linear-gradient(135deg, #00d1b2 0%, #007bff 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 1rem;
    font-weight: 600;
}

.compare-winner i { margin-right: 8px; }

.cost-breakdown { margin-bottom: 1rem; }

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 123, 255, 0.15);
    font-size: 0.9rem;
}

.cost-item:last-child { border-bottom: none; }

.cost-item.cost-total {
    padding-top: 15px;
    margin-top: 5px;
    border-top: 2px solid rgba(0, 209, 178, 0.4);
}

.cost-label { color: #1a1a2e; }
.cost-value { font-weight: 600; color: #007bff; }
.cost-value.text-danger { color: #ef4444 !important; }

.section-white {
    background: white;
    padding: 5rem 0;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.landing-page .section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.included-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    text-align: center;
}

.included-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 123, 255, 0.15);
}

.included-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d1b2 0%, #007bff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.included-card h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.included-card p { color: #666; font-size: 0.95rem; margin: 0; }

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00d1b2 0%, #00a896 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-name { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.pricing-hours { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; margin-bottom: 1.5rem; }
.pricing-price { margin-bottom: 1rem; }
.pricing-price .amount { font-size: 3rem; font-weight: 800; color: white; }
.pricing-price .currency { font-size: 1.5rem; color: rgba(255, 255, 255, 0.7); }

.pricing-per-min {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
    font-size: 0.9rem;
    color: #00d1b2;
    margin-bottom: 1.5rem;
}

.btn-pricing {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-pricing-primary {
    background: linear-gradient(135deg, #00d1b2 0%, #00a896 100%);
    color: white;
    border: none;
}

.btn-pricing-primary:hover { transform: scale(1.02); color: white; }

.btn-pricing-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-pricing-secondary:hover { background: rgba(255, 255, 255, 0.2); color: white; }

.addon-section {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.08) 0%, rgba(0, 209, 178, 0.1) 100%);
    border: 1px solid rgba(0, 209, 178, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 3rem;
}

.addon-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.addon-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #007bff 0%, #00d1b2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.addon-title { font-size: 1.5rem; font-weight: 700; margin: 0; }
.addon-subtitle { color: rgba(255, 255, 255, 0.7); margin: 0; }

.addon-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.addon-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 0.95rem;
}

.addon-feature i { color: #00d1b2; font-size: 1.2rem; }
.addon-note { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; font-style: italic; }

.event-type-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.event-type-card:hover { transform: translateY(-5px); border-color: #007bff; }

.event-type-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.event-type-icon.congress { background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%); color: #007bff; }
.event-type-icon.webinar { background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%); color: #00d1b2; }
.event-type-icon.corporate { background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%); color: #007bff; }
.event-type-icon.training { background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%); color: #00d1b2; }
.event-type-icon.hybrid { background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%); color: #007bff; }
.event-type-icon.streaming { background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%); color: #00d1b2; }

.event-type-card h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.event-type-card p { color: #666; font-size: 0.9rem; margin: 0; }

.how-step {
    text-align: center;
    padding: 2.5rem;
}

.how-step .step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff 0%, #00d1b2 100%);
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 18px rgba(0, 123, 255, 0.45);
}

.how-step h4 { font-size: 1.4rem; font-weight: 700; margin-bottom: 1rem; }
.how-step p { color: rgba(255,255,255,0.8); font-size: 1.05rem; line-height: 1.6; }

.btn-cta-white {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #007bff;
    padding: 22px 50px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.4rem;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
    animation: pulseWhite 2s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulseWhite {
    0%, 100% { box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(255, 255, 255, 0.4); }
    50% { box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 255, 255, 0); }
}

.btn-cta-white:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    color: #007bff;
    animation: none;
}

.faq-section {
    background: #edf4f4;
    padding: 5rem 0;
}

.landing-page .accordion-button {
    font-weight: 700;
    font-size: 1.05rem;
    background: white;
    font-family: 'Roboto', sans-serif;
}

.landing-page .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #e8f4f4 0%, #d4eded 100%);
    color: #007bff;
}

.landing-page .accordion-body {
    background: white;
    font-family: 'Noto Sans', sans-serif;
}

.form-control:focus {
    border-color: #00d1b2 !important;
    box-shadow: 0 0 0 3px rgba(0, 209, 178, 0.1) !important;
}

@media (max-width: 991px) {
    .compare-card { margin-top: 3rem; }
    .addon-features { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .landing-page .hero-title { font-size: 2.2rem; }
    .price-highlight .price-value { font-size: 2rem; }
    .landing-page .section-title { font-size: 2rem; }
    .compare-row { grid-template-columns: 1fr; gap: 4px; }
    .compare-row.header { display: none; }
    .compare-row .competitor, .compare-row .us { text-align: left; }
    .compare-total { grid-template-columns: 1fr; text-align: left; gap: 8px; }
}

@media (max-width: 576px) {
    .landing-page .hero-title { font-size: 1.8rem; }
    .landing-page .section-title { font-size: 1.6rem; }
    .btn-cta-white { padding: 16px 28px; font-size: 1.1rem; }
    .btn-cta-intermedio { padding: 14px 28px; font-size: 1rem; }
    .urgency-topbar-text strong { font-size: 1rem; }
    .urgency-topbar-text { font-size: 0.9rem; }
}

/* ── Landing videollamadas ── */
.videollamadas-hero {
    background: linear-gradient(135deg, #edf4f4 0%, #fff 100%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.videollamadas-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,209,178,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #00d1b2 0%, #00a896 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.videollamadas-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.videollamadas-hero h1 .highlight {
    background: linear-gradient(135deg, #007bff 0%, #00d1b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #00d1b2;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,123,255,0.3);
    color: white;
}

.btn-outline-custom {
    background: transparent;
    color: #007bff;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border: 2px solid #007bff;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-custom:hover {
    background: #007bff;
    color: white;
}

.features-section {
    padding: 5rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #edf4f4;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #00d1b2;
    box-shadow: 0 12px 32px rgba(0,209,178,0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d1b2 0%, #00a896 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i { font-size: 1.8rem; color: white; }
.feature-card h3 { font-size: 1.3rem; font-weight: 700; color: #1a1a2e; margin-bottom: 0.75rem; }
.feature-card p { color: #666; line-height: 1.6; margin: 0; }

.how-it-works {
    padding: 5rem 0;
    background: #edf4f4;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}

.step-item h4 { font-size: 1.2rem; font-weight: 700; color: #1a1a2e; margin-bottom: 0.5rem; }
.step-item p { color: #666; font-size: 0.95rem; }

.use-cases {
    padding: 5rem 0;
    background: white;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.use-case-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #edf4f4;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.use-case-item:hover {
    background: linear-gradient(135deg, rgba(0,209,178,0.1) 0%, rgba(0,123,255,0.1) 100%);
}

.use-case-item i { font-size: 1.5rem; color: #00d1b2; }
.use-case-item span { font-weight: 600; color: #1a1a2e; }

.pricing-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #007bff 0%, #00d1b2 100%);
    text-align: center;
    color: white;
}

.pricing-cta h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; }
.pricing-cta p { font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.95; }

.included-notice {
    padding: 3rem 0;
    background: #edf4f4;
    text-align: center;
}

.included-box {
    background: white;
    border: 2px solid #00d1b2;
    border-radius: 16px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.included-box i { font-size: 2.5rem; color: #00d1b2; }
.included-box .text { text-align: left; }
.included-box h3 { font-size: 1.3rem; font-weight: 700; color: #1a1a2e; margin: 0 0 0.25rem 0; }
.included-box p { color: #666; margin: 0; }

@media (max-width: 768px) {
    .videollamadas-hero h1 { font-size: 2.2rem; }
    .steps-container { flex-direction: column; align-items: center; }
    .included-box { flex-direction: column; text-align: center; }
    .included-box .text { text-align: center; }
}

@media (max-width: 576px) {
    .videollamadas-hero h1 { font-size: 1.8rem; }
    .stat-number { font-size: 2rem; }
    .btn-primary-custom, .btn-outline-custom { width: 100%; justify-content: center; }
}

/* ── FAQ page ── */
.faq-hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 60px 0 40px;
    margin-bottom: 40px;
}

.faq-hero h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 15px; }
.faq-hero .lead { font-size: 1.2rem; opacity: 0.9; }

.faq-category { margin-bottom: 30px; }

.faq-category-title {
    color: #007bff;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #00d1b2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-category-title i { color: #00d1b2; }

.faq-page .accordion-button {
    font-weight: 600;
    color: #333;
    background-color: white;
    padding: 15px 20px;
}

.faq-page .accordion-button:not(.collapsed) {
    color: #007bff;
    background-color: rgba(0, 123, 255, 0.05);
}

.faq-page .accordion-button:focus {
    box-shadow: none;
    border-color: #00d1b2;
}

.faq-page .accordion-body {
    background-color: #fafafa;
    color: #555;
    line-height: 1.7;
    padding: 20px;
}

.faq-page .accordion-body ul { margin-bottom: 0; padding-left: 20px; }
.faq-page .accordion-body li { margin-bottom: 5px; }

.faq-page .accordion-item {
    border: 1px solid #e9ecef;
    margin-bottom: 8px;
    border-radius: 8px !important;
    overflow: hidden;
}

.faq-sidebar {
    position: sticky;
    top: 20px;
}

.faq-nav-link {
    color: #333;
    padding: 8px 15px;
    display: block;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.faq-nav-link:hover {
    background-color: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

.faq-nav-link.active {
    background-color: #007bff;
    color: white;
}

.faq-cta {
    background: linear-gradient(135deg, #00d1b2 0%, #00b8a3 100%);
    color: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    margin-top: 40px;
}

.faq-cta h3 { font-weight: 700; margin-bottom: 15px; }

.category-icon { width: 24px; text-align: center; }

@media (max-width: 991px) {
    .faq-sidebar { position: relative; margin-bottom: 30px; }
    .faq-nav { display: flex; flex-wrap: wrap; gap: 8px; }
    .faq-nav-link { padding: 6px 12px; font-size: 0.85rem; background-color: #f8f9fa; }
}

@media (max-width: 576px) {
    .faq-hero h1 { font-size: 1.8rem; }
}

/* ── Gracias evento ── */
.gracias-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f1419 0%, #1e293b 50%, #1a1d24 100%);
    position: relative;
    overflow: hidden;
}

.gracias-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 209, 178, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.gracias-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    max-width: 550px;
    position: relative;
    z-index: 1;
}

.gracias-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d1b2 0%, #00a896 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: pulse-success 2s infinite;
}

.gracias-icon i { font-size: 3rem; color: white; }

@keyframes pulse-success {
    0% { box-shadow: 0 0 0 0 rgba(0, 209, 178, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(0, 209, 178, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 209, 178, 0); }
}

.gracias-title { font-size: 2rem; font-weight: 800; color: white; margin-bottom: 1rem; }

.gracias-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.gracias-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: left;
}

.gracias-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(0, 209, 178, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.gracias-feature i { color: #00d1b2; font-size: 1.3rem; }

.btn-gracias {
    background: linear-gradient(135deg, #00d1b2 0%, #00a896 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-gracias:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 209, 178, 0.4);
    color: white;
}

.btn-secondary-gracias {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-secondary-gracias:hover { background: rgba(255, 255, 255, 0.2); color: white; }

.gracias-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.gracias-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gracias-footer p { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; margin: 0; }
.gracias-footer a { color: #00d1b2; }

@media (max-width: 576px) {
    .gracias-card { padding: 2rem 1.5rem; margin: 1rem; }
    .gracias-title { font-size: 1.6rem; }
    .gracias-cta { flex-direction: column; }
    .btn-gracias, .btn-secondary-gracias { width: 100%; justify-content: center; }
}

/* ── Mantenimiento ── */
.mantenimiento-body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    background: #edf4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    position: relative;
    overflow-x: hidden;
}

.bg-decoration {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.bg-circle-1 { width: 600px; height: 600px; background: #007bff; top: -200px; right: -200px; }
.bg-circle-2 { width: 400px; height: 400px; background: #00d1b2; bottom: -100px; left: -100px; }
.bg-circle-3 { width: 200px; height: 200px; background: #71007E; top: 50%; left: 10%; opacity: 0.05; }

.mantenimiento-container {
    text-align: center;
    max-width: 700px;
    z-index: 10;
    position: relative;
}

.logo { margin-bottom: 2rem; }

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #007bff 0%, #00d1b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.maintenance-icon {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 40px rgba(0, 123, 255, 0.15);
    animation: pulse-icon 3s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 40px rgba(0, 123, 255, 0.15); }
    50% { transform: scale(1.05); box-shadow: 0 15px 50px rgba(0, 123, 255, 0.25); }
}

.maintenance-icon svg {
    width: 60px;
    height: 60px;
    fill: #007bff;
    animation: rotate-gear 8s linear infinite;
}

@keyframes rotate-gear {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.main-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 800;
    color: #2c3e50;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.main-title .highlight {
    background: linear-gradient(135deg, #007bff 0%, #00d1b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mantenimiento-subtitle {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.status-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.08);
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #007bff 0%, #00d1b2 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.status-card h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.status-card h3 .status-dot {
    width: 12px;
    height: 12px;
    background: #00d1b2;
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.status-card p { color: #6c757d; font-size: 1rem; line-height: 1.6; }

.features-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.12);
}

.feature-item .icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.feature-item .icon svg { width: 24px; height: 24px; }
.feature-item:nth-child(1) .icon { background: rgba(0, 123, 255, 0.1); }
.feature-item:nth-child(1) .icon svg { fill: #007bff; }
.feature-item:nth-child(2) .icon { background: rgba(0, 209, 178, 0.1); }
.feature-item:nth-child(2) .icon svg { fill: #00d1b2; }
.feature-item:nth-child(3) .icon { background: rgba(113, 0, 126, 0.1); }
.feature-item:nth-child(3) .icon svg { fill: #71007E; }
.feature-item h4 { color: #2c3e50; font-size: 0.95rem; font-weight: 600; }

.notify-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.08);
}

.notify-section h3 { color: #2c3e50; font-size: 1.1rem; margin-bottom: 0.5rem; }
.notify-section > p { color: #6c757d; margin-bottom: 1.5rem; font-size: 0.95rem; }

.notify-form {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 450px;
    margin: 0 auto;
}

.notify-form input[type="email"] {
    flex: 1;
    min-width: 220px;
    padding: 14px 18px;
    border: 2px solid #e0e6ed;
    border-radius: 12px;
    background: #f8fafa;
    color: #2c3e50;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.notify-form input[type="email"]::placeholder { color: #a0aab4; }
.notify-form input[type="email"]:focus { border-color: #007bff; background: white; }

.notify-form button {
    padding: 14px 28px;
    background: linear-gradient(135deg, #007bff 0%, #00d1b2 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.notify-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.notify-form button:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.notify-success {
    color: #00d1b2;
    font-weight: 600;
    margin-top: 1rem;
    padding: 12px 20px;
    background: rgba(0, 209, 178, 0.1);
    border-radius: 10px;
    display: none;
}

.notify-error {
    color: #E36E00;
    font-weight: 600;
    margin-top: 1rem;
    padding: 12px 20px;
    background: rgba(227, 110, 0, 0.1);
    border-radius: 10px;
    display: none;
}

.contact-info {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-info a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #5a6c7d;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 10px 18px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.15);
}

.contact-info a svg { width: 20px; height: 20px; fill: currentColor; }

.mantenimiento-footer { margin-top: 3rem; color: #8a9aa8; font-size: 0.85rem; }
.mantenimiento-footer a { color: #007bff; text-decoration: none; }
.mantenimiento-footer a:hover { text-decoration: underline; }

@media (max-width: 600px) {
    .main-title { font-size: 1.6rem; }
    .mantenimiento-subtitle { font-size: 1rem; }
    .features-preview { grid-template-columns: 1fr; }
    .notify-form input[type="email"] { min-width: 100%; }
    .contact-info { flex-direction: column; align-items: center; }
}

/* ── base.html ── */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.4s ease-out;
}

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

.cookie-banner-content { max-width: 1200px; margin: 0 auto; }
.cookie-banner h5 { color: #00d1b2; margin-bottom: 10px; }
.cookie-banner p { font-size: 0.95rem; line-height: 1.5; margin-bottom: 15px; }
.cookie-banner a { color: #00d1b2; text-decoration: underline; }

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-buttons button {
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-accept-all {
    background: linear-gradient(135deg, #00d1b2 0%, #00b8a3 100%);
    color: white;
    font-size: 1.1rem;
    padding: 12px 28px !important;
    box-shadow: 0 4px 15px rgba(0, 209, 178, 0.4);
    animation: pulse-accept 2s infinite;
}

@keyframes pulse-accept {
    0%, 100% { box-shadow: 0 4px 15px rgba(0, 209, 178, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(0, 209, 178, 0.7); }
}

.btn-accept-all:hover {
    background: linear-gradient(135deg, #00b8a3 0%, #009688 100%);
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 209, 178, 0.5);
}

.btn-accept-essential {
    background: transparent;
    color: white;
    border: 2px solid white !important;
}

.btn-accept-essential:hover { background: rgba(255,255,255,0.1); }

.btn-customize {
    background: transparent;
    color: #aaa;
    text-decoration: underline;
    padding: 10px 15px;
}

.btn-customize:hover { color: white; }

.cookie-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.cookie-modal.show { display: flex; }

.cookie-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 30px;
    color: #333;
}

.cookie-modal h4 { color: #007bff; margin-bottom: 20px; }

.cookie-category {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category h6 { margin: 0; font-weight: 600; }
.cookie-category p { font-size: 0.85rem; color: #666; margin: 0; }

.cookie-switch {
    position: relative;
    width: 50px;
    height: 26px;
}

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

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .3s;
    border-radius: 26px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider { background-color: #00d1b2; }
.cookie-switch input:checked + .cookie-slider:before { transform: translateX(24px); }
.cookie-switch input:disabled + .cookie-slider { background-color: #00d1b2; cursor: not-allowed; }

.guia-pulso {
    position: relative;
    z-index: 100;
}

.guia-pulso::before {
    content: '';
    position: absolute;
    top: -6px; left: -6px; right: -6px; bottom: -6px;
    border: 3px solid var(--guia-color, #E36E00);
    border-radius: inherit;
    animation: guia-pulse 1.5s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

.guia-pulso-naranja { --guia-color: #E36E00; }
.guia-pulso-morado { --guia-color: #71007E; }

@keyframes guia-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--guia-color);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.02);
        box-shadow: 0 0 20px 5px var(--guia-color);
    }
}

.guia-tooltip {
    position: absolute;
    background: var(--guia-color, #E36E00);
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    z-index: 1001;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: guia-tooltip-appear 0.3s ease-out;
}

.guia-tooltip::after {
    content: '';
    position: absolute;
    border: 8px solid transparent;
}

.guia-tooltip.tooltip-bottom::after {
    top: -16px; left: 50%;
    transform: translateX(-50%);
    border-bottom-color: var(--guia-color, #E36E00);
}

.guia-tooltip.tooltip-top::after {
    bottom: -16px; left: 50%;
    transform: translateX(-50%);
    border-top-color: var(--guia-color, #E36E00);
}

.guia-tooltip.tooltip-left::after {
    right: -16px; top: 50%;
    transform: translateY(-50%);
    border-left-color: var(--guia-color, #E36E00);
}

.guia-tooltip.tooltip-right::after {
    left: -16px; top: 50%;
    transform: translateY(-50%);
    border-right-color: var(--guia-color, #E36E00);
}

@keyframes guia-tooltip-appear {
    0% { transform: translateY(-10px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.guia-cerrar {
    position: fixed;
    top: 80px;
    right: 20px;
    background: rgba(0,0,0,0.8);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    z-index: 1002;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.guia-cerrar:hover { background: rgba(0,0,0,0.9); }

/* ── 404.html ── */
.error-container { text-align: center; padding: 3rem; }
.error-code { font-size: clamp(3rem, 20vw, 8rem); font-weight: 800; color: #6f42c1; line-height: 1; }
.error-message { font-size: clamp(1rem, 4vw, 1.5rem); color: #495057; margin: 1rem 0 2rem; }
.error-hint { color: #6c757d; margin-bottom: 2rem; }
.btn-home { background: #6f42c1; border: none; padding: 12px 32px; font-size: 1.1rem; border-radius: 8px; }
.btn-home:hover { background: #5a32a3; }

/* ──────────────────────────────────────────
   DASHBOARD DE USUARIO
   ────────────────────────────────────────── */
.dash-hero {
    background: linear-gradient(135deg, #1a1d24 0%, #2d3748 100%);
    color: #fff;
    padding: 2rem 0 2.5rem;
    position: relative;
    overflow: hidden;
}

.dash-hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(0,209,178,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.dash-hero-content { position: relative; z-index: 1; }

.dash-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.dash-greeting { font-size: 0.85rem; opacity: 0.65; margin: 0; }
.dash-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}
.dash-title span { color: #00d1b2; }

.dash-alerta-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(231,76,60,0.2);
    border: 1px solid rgba(231,76,60,0.45);
    border-radius: 10px;
    padding: 0.45rem 0.9rem;
    color: #ff7675;
    font-weight: 600;
    font-size: 0.82rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}
.dash-alerta-top:hover { background: rgba(231,76,60,0.32); color: #ff7675; }

.dash-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 900px) {
    .dash-grid { grid-template-columns: 1fr; }
}

.dash-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.dash-card.credito {
    border-color: rgba(0,209,178,0.3);
    background: rgba(0,209,178,0.07);
}
.dash-card.eventos { border-color: rgba(0,209,178,0.25); }
.dash-card.paquetes { border-color: rgba(0,123,255,0.25); }

.credito-valor {
    font-size: 1.9rem;
    font-weight: 800;
    color: #00d1b2;
    line-height: 1;
}
.credito-label {
    font-size: 0.75rem;
    opacity: 0.6;
    font-weight: 500;
    margin-top: 2px;
}
.credito-meta {
    font-size: 0.78rem;
    opacity: 0.6;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.credito-ok {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #00cec9;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: auto;
}

.card-header-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.dash-card.eventos .card-icon { background: #00d1b2; color: #1a1d24; }
.dash-card.paquetes .card-icon { background: #007bff; color: #fff; }
.dash-card.credito .card-icon { background: rgba(0,209,178,0.25); color: #00d1b2; }

.card-title { font-size: 1rem; font-weight: 700; margin: 0; }
.card-subtitle { font-size: 0.72rem; opacity: 0.6; margin: 0; }

.dash-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    margin-top: auto;
}
.dash-btn.verde {
    background: #00d1b2;
    color: #1a1d24;
    box-shadow: 0 3px 12px rgba(0,209,178,0.3);
}
.dash-btn.verde:hover {
    background: #00e6c8;
    color: #1a1d24;
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(0,209,178,0.4);
}
.dash-btn.azul {
    background: #007bff;
    color: #fff;
    box-shadow: 0 3px 12px rgba(0,123,255,0.25);
}
.dash-btn.azul:hover {
    background: #0069d9;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(0,123,255,0.35);
}

.pack-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}
.pack-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 0.7rem 0.75rem;
    font-size: 0.82rem;
    text-decoration: none;
    color: #fff;
    transition: background 0.15s;
    border-left: 3px solid transparent;
}
.pack-item:hover { background: rgba(255,255,255,0.13); color: #fff; }
.pack-item.popular {
    background: rgba(0,123,255,0.15);
    border-left-color: #007bff;
}
.pack-name { font-weight: 600; display: flex; align-items: center; gap: 5px; }
.pack-price { opacity: 0.8; }
.badge-pop {
    font-size: 0.58rem;
    background: #007bff;
    color: #fff;
    padding: 2px 5px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
}

.eventos-desc {
    font-size: 0.8rem;
    opacity: 0.65;
    line-height: 1.4;
    flex: 1;
}

.dash-recursos {
    background: #edf4f4;
    padding: 2rem 0 2.5rem;
}
.recursos-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 7px;
}
.recursos-title i { color: #00a896; }

.recursos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (max-width: 600px) { .recursos-grid { grid-template-columns: 1fr; } }

.recurso-card {
    background: #fff;
    border-radius: 12px;
    padding: 1rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
    color: #2d3748;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border-left: 4px solid transparent;
    transition: all 0.2s;
}
.recurso-card:hover {
    box-shadow: 0 5px 18px rgba(0,0,0,0.11);
    transform: translateY(-2px);
    color: #2d3748;
    text-decoration: none;
}
.recurso-card.ponente { border-left-color: #00d1b2; }
.recurso-card.checklist { border-left-color: #007bff; }

.recurso-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.recurso-card.ponente .recurso-icon { background: rgba(0,209,178,0.12); color: #00a896; }
.recurso-card.checklist .recurso-icon { background: rgba(0,123,255,0.1); color: #007bff; }

.recurso-content h5 { font-size: 0.88rem; font-weight: 700; margin: 0 0 2px; }
.recurso-content p { font-size: 0.75rem; color: #6c757d; margin: 0; line-height: 1.3; }

.recurso-badge {
    margin-left: auto;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 9px;
    border-radius: 7px;
    white-space: nowrap;
    flex-shrink: 0;
}
.recurso-card.ponente .recurso-badge { background: rgba(0,209,178,0.12); color: #00a896; }
.recurso-card.checklist .recurso-badge { background: rgba(0,123,255,0.1); color: #007bff; }

.dash-tracking-hidden { display: none; }

/* ──────────────────────────────────────────
   CONFERENCIA PONENTE
   ────────────────────────────────────────── */
.conf-ponente-root {
    --tev-turquoise: #00d1b2;
    --tev-blue: #007bff;
    --tev-dark: #1a1d24;
    --tev-gray: #2d3748;
    --tev-red: #dc3545;
    --tev-green: #28a745;
}
.conf-ponente-root * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Roboto', sans-serif; }
.conf-ponente-root body {
    background: linear-gradient(135deg, var(--tev-dark) 0%, var(--tev-gray) 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.ponente-header {
    background: rgba(0,0,0,0.3);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0,209,178,0.2);
}
.ponente-branding { display: flex; align-items: center; gap: 12px; }
.ponente-branding img { height: 28px; }
.ponente-badge {
    background: var(--tev-turquoise);
    color: var(--tev-dark);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}
.ponente-info { text-align: center; }
.ponente-info h1 { font-size: 18px; font-weight: 600; }
.ponente-info .sesion { font-size: 13px; color: rgba(255,255,255,0.6); }
.oyentes-count {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0,123,255,0.2);
    border-radius: 20px;
    font-size: 14px;
}
.oyentes-count i { color: var(--tev-blue); }
.ponente-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
}
.control-panel {
    background: rgba(0,0,0,0.4);
    border-radius: 24px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}
.mic-status {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(0,209,178,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}
.mic-status:hover { background: rgba(0,209,178,0.2); }
.mic-status.active {
    background: rgba(0,209,178,0.3);
    box-shadow: 0 0 40px rgba(0,209,178,0.4);
}
.mic-status.active::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--tev-turquoise);
    animation: conf-pulse-ring 1.5s infinite;
}
@keyframes conf-pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}
.mic-status i { font-size: 50px; color: var(--tev-turquoise); }
.mic-status.muted i { color: var(--tev-red); }
.status-text { font-size: 18px; margin-bottom: 30px; }
.status-text.active { color: var(--tev-turquoise); }
.status-text.inactive { color: rgba(255,255,255,0.5); }
.control-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-control {
    padding: 16px 32px;
    border-radius: 30px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}
.btn-start { background: var(--tev-green); color: white; }
.btn-start:hover { background: #218838; transform: translateY(-2px); }
.btn-stop { background: var(--tev-red); color: white; }
.btn-stop:hover { background: #c82333; }
.btn-mute { background: rgba(255,255,255,0.1); color: white; }
.btn-mute:hover { background: rgba(255,255,255,0.2); }
.btn-mute.muted { background: var(--tev-red); }
.btn-translate { background: rgba(255,255,255,0.1); color: white; }
.btn-translate:hover { background: rgba(255,255,255,0.2); }
.btn-translate.active { background: var(--tev-turquoise); color: var(--tev-dark); }
.translation-monitor {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(0,209,178,0.3);
    border-radius: 16px;
    padding: 20px;
    max-width: 600px;
    width: 100%;
    margin-bottom: 20px;
}
.monitor-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.monitor-header > i { color: var(--tev-turquoise); font-size: 18px; }
.monitor-header > span { flex: 1; font-size: 14px; font-weight: 500; }
.monitor-controls { display: flex; align-items: center; gap: 10px; }
.btn-monitor-toggle {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.btn-monitor-toggle:hover { background: rgba(255,255,255,0.2); }
.btn-monitor-toggle.muted { background: rgba(220,53,69,0.3); color: var(--tev-red); }
.monitor-slider {
    width: 80px;
    height: 4px;
    -webkit-appearance: none;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    outline: none;
}
.monitor-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: var(--tev-turquoise);
    border-radius: 50%;
    cursor: pointer;
}
.monitor-volume-label { font-size: 12px; color: rgba(255,255,255,0.6); min-width: 35px; }
.monitor-subtitle {
    font-size: 18px;
    line-height: 1.5;
    color: white;
    text-align: center;
    min-height: 54px;
    padding: 10px;
    background: rgba(0,209,178,0.1);
    border-radius: 8px;
    margin-bottom: 12px;
}
.monitor-subtitle-original { font-size: 13px; color: rgba(255,255,255,0.4); font-style: italic; text-align: center; margin-top: 6px; }
.monitor-hint { font-size: 12px; color: rgba(255,255,255,0.5); text-align: center; margin: 0; }
.monitor-hint i { margin-right: 4px; }
.stats-panel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 600px; width: 100%; }
.stat-card { background: rgba(0,0,0,0.3); border-radius: 16px; padding: 20px; text-align: center; }
.stat-value { font-size: 28px; font-weight: 700; color: var(--tev-turquoise); }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.qr-section {
    margin-top: 30px;
    padding: 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
}
.qr-section h3 { font-size: 16px; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.qr-section h3 i { color: var(--tev-turquoise); }
.conf-qr-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.conf-qr-box { padding: 10px; border-radius: 8px; background: white; display: inline-block; }
.conf-qr-info { flex: 1; min-width: 200px; }
.conf-qr-hint { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 10px; }
.conf-arrow-icon { color: rgba(255,255,255,0.4); }
.url-display { display: flex; align-items: center; gap: 10px; background: rgba(0,0,0,0.3); padding: 12px 16px; border-radius: 10px; }
.url-display input { flex: 1; background: none; border: none; color: white; font-size: 14px; outline: none; }
.url-display button { background: var(--tev-turquoise); color: var(--tev-dark); border: none; padding: 8px 16px; border-radius: 8px; cursor: pointer; font-weight: 600; font-size: 13px; }
.url-display button:hover { opacity: 0.9; }
.ayuda-conexion {
    margin: 10px 0;
    padding: 10px 14px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    max-width: 320px;
    width: auto;
    border: 1px solid rgba(255,255,255,0.1);
    align-self: flex-start;
}
.ayuda-conexion summary { cursor: pointer; font-size: 14px; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 8px; list-style: none; }
.ayuda-conexion summary::-webkit-details-marker { display: none; }
.ayuda-conexion summary i { color: var(--tev-turquoise); }
.ayuda-conexion[open] summary { margin-bottom: 12px; color: white; }
.ayuda-conexion-contenido ul { margin: 0; padding: 0; list-style: none; }
.ayuda-conexion-contenido li { padding: 8px 0; font-size: 13px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.ayuda-conexion-contenido li:last-child { border-bottom: none; }
.ayuda-conexion-contenido li i { color: var(--tev-turquoise); font-size: 14px; width: 20px; text-align: center; }
.debug-panel {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.9);
    border: 1px solid var(--tev-turquoise);
    border-radius: 12px;
    padding: 16px;
    font-size: 12px;
    max-width: 350px;
    z-index: 1000;
    font-family: monospace;
}
.debug-panel h4 { color: var(--tev-turquoise); margin-bottom: 12px; display: flex; align-items: center; justify-content: space-between; }
.debug-panel .close-debug { cursor: pointer; opacity: 0.6; }
.debug-panel .close-debug:hover { opacity: 1; }
.debug-item { display: flex; justify-content: space-between; padding: 4px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.debug-item:last-child { border-bottom: none; }
.debug-label { color: rgba(255,255,255,0.6); }
.debug-value { color: white; font-weight: bold; }
.debug-value.ok { color: #28a745; }
.debug-value.error { color: #dc3545; }
.debug-value.warning { color: #ffc107; }
.conf-debug-col { flex-direction: column; }
.conf-debug-mt { margin-top: 10px; }
.conf-debug-log { max-height: 100px; overflow-y: auto; font-size: 10px; color: rgba(255,255,255,0.7); margin-top: 4px; }
.debug-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--tev-turquoise);
    color: var(--tev-dark);
    border: none;
    padding: 10px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    z-index: 999;
}
.audio-meter { width: 100%; height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; margin-top: 8px; overflow: hidden; }
.audio-meter-fill { height: 100%; background: linear-gradient(90deg, #28a745, #ffc107, #dc3545); width: 0%; transition: width 0.1s; }
.ponente-footer { padding: 16px; text-align: center; border-top: 1px solid rgba(255,255,255,0.1); }
.ponente-footer a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 12px; }
.languages-bar { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 30px; }
.lang-chip { padding: 8px 16px; background: rgba(255,255,255,0.1); border-radius: 20px; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.lang-chip.speaking { background: rgba(0,209,178,0.2); color: var(--tev-turquoise); }
.guia-pulso { position: relative; z-index: 100; }
.guia-pulso::before {
    content: '';
    position: absolute;
    top: -6px; left: -6px; right: -6px; bottom: -6px;
    border: 3px solid var(--guia-color, #71007E);
    border-radius: inherit;
    animation: guia-pulse 1.5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes guia-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--guia-color); }
    50% { opacity: 0.7; box-shadow: 0 0 20px 5px var(--guia-color); }
}
.guia-tooltip {
    position: fixed;
    background: var(--guia-color, #71007E);
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    z-index: 1001;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.guia-cerrar { position: fixed; top: 80px; right: 20px; background: rgba(0,0,0,0.8); color: white; border: none; padding: 10px 20px; border-radius: 8px; cursor: pointer; z-index: 1002; display: flex; align-items: center; gap: 8px; }
.alerta-conexion-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.7); display: flex; align-items: center; justify-content: center; z-index: 2000; animation: conf-fadeIn 0.3s ease; }
.alerta-conexion-modal { background: linear-gradient(135deg, #1a1d24 0%, #2d3748 100%); border: 2px solid #ff9800; border-radius: 16px; padding: 32px; max-width: 480px; width: 90%; box-shadow: 0 20px 60px rgba(255,152,0,0.3); animation: conf-slideUp 0.3s ease; }
.alerta-conexion-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.alerta-conexion-icon { width: 56px; height: 56px; background: rgba(255,152,0,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; animation: conf-pulse 2s infinite; }
.alerta-conexion-title { font-size: 20px; font-weight: 600; color: #ff9800; }
.alerta-conexion-subtitle { font-size: 14px; color: rgba(255,255,255,0.7); }
.alerta-conexion-body { margin-bottom: 24px; }
.alerta-conexion-mensaje { font-size: 16px; line-height: 1.6; margin-bottom: 16px; }
.alerta-conexion-sugerencias { background: rgba(255,255,255,0.05); border-radius: 12px; padding: 16px; }
.alerta-conexion-sugerencias h4 { font-size: 14px; font-weight: 600; color: var(--tev-turquoise); margin-bottom: 12px; }
.alerta-conexion-sugerencias ul { list-style: none; padding: 0; margin: 0; }
.alerta-conexion-sugerencias li { padding: 8px 0; display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.9); }
.alerta-conexion-sugerencias li i { color: var(--tev-turquoise); font-size: 16px; }
.alerta-conexion-footer { display: flex; justify-content: flex-end; gap: 12px; }
.alerta-conexion-btn { background: var(--tev-turquoise); color: var(--tev-dark); border: none; padding: 12px 28px; border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.alerta-conexion-btn:hover { background: #00e6c8; transform: translateY(-2px); }
.alerta-conexion-modal.alerta-critica { border-color: #dc3545; box-shadow: 0 20px 60px rgba(220,53,69,0.4); }
.alerta-critica .alerta-conexion-icon { background: rgba(220,53,69,0.2); }
.alerta-critica .alerta-conexion-title { color: #dc3545; }
.alerta-conexion-btn-reinicio { background: #dc3545 !important; color: white !important; display: flex; align-items: center; gap: 8px; }
.alerta-conexion-btn-reinicio:hover { background: #c82333 !important; }
@keyframes conf-pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.1); opacity: 0.8; } }
@keyframes conf-slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes conf-fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
/* d-none para templates standalone sin Bootstrap */
.d-none { display: none !important; }

/* ============================================================
   MESA REDONDA MODERADOR
   ============================================================ */
.conf-moderador-root { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Roboto', sans-serif; }
.conf-moderador-root *, .conf-moderador-root *::before, .conf-moderador-root *::after { box-sizing: border-box; font-family: 'Roboto', sans-serif; }
.conf-moderador-root body { background: linear-gradient(135deg, var(--tev-dark, #1a1d24) 0%, var(--tev-gray, #2d3748) 100%); color: white; min-height: 100vh; display: flex; flex-direction: column; }
.mod-header { background: rgba(0,0,0,0.3); padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(0,209,178,0.2); }
.mod-branding { display: flex; align-items: center; gap: 12px; }
.mod-branding img { height: 28px; }
.mod-badge { background: #fd7e14; color: white; padding: 4px 12px; border-radius: 12px; font-size: 12px; font-weight: 600; }
.mod-info { text-align: center; }
.mod-info h1 { font-size: 18px; font-weight: 600; }
.mod-info .sesion { font-size: 13px; color: rgba(255,255,255,0.6); }
.live-badge { display: flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(220,53,69,0.2); border-radius: 20px; font-size: 14px; }
.live-badge.active { background: #dc3545; animation: mod-pulse 2s infinite; }
@keyframes mod-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
.mod-main { flex: 1; display: grid; grid-template-columns: 1fr 350px; gap: 20px; padding: 20px; max-width: 1400px; margin: 0 auto; width: 100%; }
.floor-panel { background: rgba(0,0,0,0.3); border-radius: 16px; padding: 24px; }
.panel-title { font-size: 16px; font-weight: 600; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.panel-title i { color: #00d1b2; }
.floor-section { margin-bottom: 24px; }
.section-header { font-size: 13px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; display: flex; align-items: center; justify-content: space-between; }
.ponente-card { background: rgba(255,255,255,0.05); border-radius: 12px; padding: 16px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; transition: all 0.2s; }
.ponente-card:hover { background: rgba(255,255,255,0.1); }
.ponente-card.hablando { background: rgba(0,209,178,0.15); border: 1px solid #00d1b2; }
.ponente-card.mano-levantada { background: rgba(255,193,7,0.15); border: 1px solid #ffc107; }
.ponente-card.desconectado { opacity: 0.5; }
.ponente-info { display: flex; align-items: center; gap: 12px; }
.ponente-avatar { width: 40px; height: 40px; border-radius: 50%; background: #2d3748; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.ponente-avatar.hablando { background: #00d1b2; animation: mod-pulse-speaking 1s infinite; }
@keyframes mod-pulse-speaking { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
.ponente-nombre { font-weight: 500; }
.ponente-estado { font-size: 12px; color: rgba(255,255,255,0.5); }
.ponente-actions { display: flex; gap: 8px; }
.floor-empty { background: rgba(255,255,255,0.05); border: 2px dashed rgba(255,255,255,0.2); border-radius: 12px; padding: 40px; text-align: center; color: rgba(255,255,255,0.5); }
.floor-empty i { font-size: 48px; margin-bottom: 12px; opacity: 0.5; }
.cola-empty { text-align: center; padding: 20px; color: rgba(255,255,255,0.4); font-size: 14px; }
.side-panel { display: flex; flex-direction: column; gap: 20px; }
.enlaces-panel { background: rgba(0,0,0,0.3); border-radius: 16px; padding: 20px; }
.enlace-item { background: rgba(255,255,255,0.05); border-radius: 8px; padding: 12px; margin-bottom: 10px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.enlace-item:last-child { margin-bottom: 0; }
.enlace-info { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.enlace-info i { font-size: 18px; color: #00d1b2; }
.enlace-info span { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.enlace-actions { display: flex; gap: 6px; }
.enlace-item-empty { justify-content: center; color: rgba(255,255,255,0.5); }
.btn-enlace { padding: 6px 10px; border: none; border-radius: 6px; font-size: 12px; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; gap: 4px; }
.btn-copiar { background: #007bff; color: white; }
.btn-copiar:hover { background: #0056b3; }
.btn-qr { background: rgba(255,255,255,0.1); color: white; }
.btn-qr:hover { background: rgba(255,255,255,0.2); }
.enlace-seccion { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin: 16px 0 8px 0; }
.enlace-seccion:first-child { margin-top: 0; }
.qr-modal { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.8); z-index: 10000; align-items: center; justify-content: center; }
.qr-modal.show { display: flex; }
.qr-modal-content { background: white; border-radius: 16px; padding: 24px; text-align: center; max-width: 320px; }
.qr-modal-content h4 { color: #333; margin: 0 0 16px 0; }
.qr-modal-content img { width: 200px; height: 200px; margin-bottom: 12px; }
.qr-modal-content .qr-url { font-size: 11px; color: #666; word-break: break-all; margin-bottom: 16px; }
.qr-modal-content .btn-cerrar-qr { background: #007bff; color: white; border: none; padding: 10px 24px; border-radius: 8px; cursor: pointer; }
.stats-panel { background: rgba(0,0,0,0.3); border-radius: 16px; padding: 20px; }
.stats-panel:has(.stat-row) { display: block; grid-template-columns: none; max-width: none; }
.stat-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.stat-row:last-child { border-bottom: none; }
.stat-label { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.6); font-size: 14px; }
.stat-value { font-weight: 600; font-size: 16px; }
.controls-panel { background: rgba(0,0,0,0.3); border-radius: 16px; padding: 20px; }
.control-btn { width: 100%; padding: 16px; border: none; border-radius: 12px; font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 12px; }
.control-btn:last-child { margin-bottom: 0; }
.btn-iniciar { background: #28a745; color: white; }
.btn-iniciar:hover { background: #218838; }
.btn-traducir { background: #00d1b2; color: #1a1d24; }
.btn-traducir:hover { background: #00c4a7; }
.btn-pausar { background: #fd7e14; color: white; }
.btn-finalizar { background: #dc3545; color: white; }
.btn-finalizar:hover { background: #c82333; }
.btn-descargar { background: linear-gradient(135deg, #17a2b8 0%, #138496 100%); color: white; }
.btn-descargar:hover { background: linear-gradient(135deg, #138496 0%, #117a8b 100%); }
/* Botones de control de turno en el panel del moderador (Dar voz / Liberar turno) */
.btn-dar-turno,
.btn-quitar-turno { padding: 8px 16px; border: none; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; color: #fff; box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
.btn-dar-turno { background: linear-gradient(135deg, #00d1b2 0%, #00a693 100%); }
.btn-dar-turno:hover { background: linear-gradient(135deg, #00a693 0%, #008578 100%); transform: translateY(-1px); box-shadow: 0 4px 10px rgba(0,209,178,0.35); }
.btn-dar-turno i { font-size: 14px; }
.btn-quitar-turno { background: linear-gradient(135deg, #fd7e14 0%, #e36e00 100%); }
.btn-quitar-turno:hover { background: linear-gradient(135deg, #e36e00 0%, #c25c00 100%); transform: translateY(-1px); box-shadow: 0 4px 10px rgba(253,126,20,0.35); }
.btn-quitar-turno i { font-size: 14px; }
.posicion-badge { background: #ffc107; color: #1a1d24; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
@media (max-width: 900px) {
    .mod-main { grid-template-columns: 1fr; }
    .side-panel { order: -1; }
}
.subtitulos-panel { background: rgba(0,0,0,0.5); border-radius: 16px; padding: 16px 20px; margin-top: 20px; min-height: 80px; position: relative; }
.subtitulos-header { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; font-size: 13px; color: rgba(255,255,255,0.6); }
.subtitulos-header i { color: #00d1b2; }
.subtitulo-linea { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.1); animation: mod-fadeIn 0.3s; }
.subtitulo-linea:last-child { border-bottom: none; }
.subtitulo-original { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 4px; }
.subtitulo-traducido { font-size: 16px; color: #00d1b2; font-weight: 500; }
.subtitulo-participante { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 2px; }
@keyframes mod-fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.subtitulos-empty { text-align: center; color: rgba(255,255,255,0.4); font-size: 14px; padding: 16px; }
/* Moderador notification + audio bars + timer + chat + volume — scoped to moderador root */
.conf-moderador-root .notification { position: fixed; top: 20px; right: 20px; background: #28a745; color: white; padding: 16px 24px; border-radius: 12px; display: none; z-index: 1000; animation: mod-slideIn 0.3s; }
@keyframes mod-slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.conf-moderador-root .audio-level-container { display: flex; align-items: center; gap: 4px; margin-left: 12px; }
.conf-moderador-root .audio-bar { width: 4px; height: 20px; background: rgba(255,255,255,0.2); border-radius: 2px; transition: background 0.1s; }
.conf-moderador-root .audio-bar.active { background: #28a745; }
.conf-moderador-root .audio-bar.high { background: #ffc107; }
.conf-moderador-root .audio-bar.peak { background: #dc3545; }
.conf-moderador-root .timer-turno { font-family: 'Roboto Mono', monospace; font-size: 14px; color: rgba(255,255,255,0.7); margin-left: 12px; display: flex; align-items: center; gap: 6px; }
.conf-moderador-root .timer-turno.warning { color: #fd7e14; }
.conf-moderador-root .timer-turno.danger { color: #dc3545; animation: mod-blink 1s infinite; }
@keyframes mod-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
/* Moderador in-flow chat panel */
.conf-moderador-root .chat-panel { background: rgba(0,0,0,0.3); border-radius: 16px; padding: 20px; max-height: 300px; display: flex; flex-direction: column; }
.conf-moderador-root .chat-messages { flex: 1; overflow-y: auto; margin-bottom: 12px; min-height: 150px; max-height: 200px; }
.conf-moderador-root .chat-message { padding: 8px 12px; margin-bottom: 8px; border-radius: 8px; font-size: 13px; }
.conf-moderador-root .chat-message.from-moderador { background: rgba(0,209,178,0.2); margin-left: 20px; }
.conf-moderador-root .chat-message.from-ponente { background: rgba(255,255,255,0.1); margin-right: 20px; }
.conf-moderador-root .chat-message .sender { font-weight: 600; font-size: 11px; color: #00d1b2; margin-bottom: 2px; }
.conf-moderador-root .chat-message.from-moderador .sender { color: #fd7e14; }
.conf-moderador-root .chat-input-container { display: flex; gap: 8px; }
.conf-moderador-root .chat-input { flex: 1; padding: 10px 14px; border: none; border-radius: 8px; background: rgba(255,255,255,0.1); color: white; font-size: 14px; }
.conf-moderador-root .chat-input::placeholder { color: rgba(255,255,255,0.4); }
.conf-moderador-root .chat-input:focus { outline: none; background: rgba(255,255,255,0.15); }
.conf-moderador-root .btn-send { padding: 10px 16px; background: #00d1b2; color: #1a1d24; border: none; border-radius: 8px; cursor: pointer; font-weight: 600; }
.conf-moderador-root .btn-send:hover { background: #00c4a7; }
.conf-moderador-root .chat-empty { text-align: center; color: rgba(255,255,255,0.4); padding: 40px 20px; font-size: 14px; }
.conf-moderador-root .chat-icon-large { font-size: 24px; display: block; margin-bottom: 8px; }
.conf-moderador-root .timer-config { display: flex; align-items: center; gap: 8px; margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.1); }
.conf-moderador-root .timer-config label { font-size: 13px; color: rgba(255,255,255,0.6); }
.conf-moderador-root .timer-config select { padding: 6px 10px; border-radius: 6px; border: none; background: rgba(255,255,255,0.1); color: white; font-size: 13px; }
.conf-moderador-root .timer-config select option { background: #1a1d24; }
.conf-moderador-root .volume-control { display: flex; align-items: center; gap: 8px; margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.1); }
.conf-moderador-root .volume-control label { font-size: 13px; color: rgba(255,255,255,0.6); white-space: nowrap; display: flex; align-items: center; gap: 4px; }
/* Mesa ponente fixed floating chat panel */
.conf-mesa-ponente-root .chat-panel { position: fixed; bottom: 20px; right: 20px; width: 320px; max-height: 400px; background: rgba(0,0,0,0.9); border-radius: 16px; display: flex; flex-direction: column; z-index: 100; border: 1px solid rgba(0,209,178,0.3); }
.conf-mesa-ponente-root .chat-header { padding: 12px 16px; background: rgba(0,209,178,0.2); border-radius: 16px 16px 0 0; display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.conf-mesa-ponente-root .chat-header-title { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; }
.conf-mesa-ponente-root .chat-header i { color: #00d1b2; }
.conf-mesa-ponente-root .chat-toggle { background: none; border: none; color: white; cursor: pointer; font-size: 16px; }
.conf-mesa-ponente-root .chat-body { flex: 1; overflow: hidden; display: flex; flex-direction: column; }
.conf-mesa-ponente-root .chat-body.collapsed { display: none; }
.conf-mesa-ponente-root .chat-messages { flex: 1; overflow-y: auto; padding: 12px; max-height: 250px; }
.conf-mesa-ponente-root .chat-message { padding: 8px 12px; margin-bottom: 8px; border-radius: 8px; font-size: 13px; }
.conf-mesa-ponente-root .chat-message.from-moderador { background: rgba(253,126,20,0.2); margin-right: 20px; }
.conf-mesa-ponente-root .chat-message.from-ponente { background: rgba(0,209,178,0.2); margin-left: 20px; }
.conf-mesa-ponente-root .chat-message .sender { font-weight: 600; font-size: 11px; margin-bottom: 2px; }
.conf-mesa-ponente-root .chat-message.from-moderador .sender { color: #fd7e14; }
.conf-mesa-ponente-root .chat-message.from-ponente .sender { color: #00d1b2; }
.conf-mesa-ponente-root .chat-input-container { display: flex; gap: 8px; padding: 12px; border-top: 1px solid rgba(255,255,255,0.1); }
.conf-mesa-ponente-root .chat-input { flex: 1; padding: 10px 14px; border: none; border-radius: 8px; background: rgba(255,255,255,0.1); color: white; font-size: 14px; }
.conf-mesa-ponente-root .chat-input::placeholder { color: rgba(255,255,255,0.4); }
.conf-mesa-ponente-root .chat-input:focus { outline: none; background: rgba(255,255,255,0.15); }
.conf-mesa-ponente-root .btn-send { padding: 10px 14px; background: #00d1b2; color: #1a1d24; border: none; border-radius: 8px; cursor: pointer; font-weight: 600; }
.conf-mesa-ponente-root .btn-send:hover { background: #00c4a7; }
.conf-mesa-ponente-root .chat-empty { text-align: center; color: rgba(255,255,255,0.4); padding: 30px 20px; font-size: 13px; }
.conf-mesa-ponente-root .chat-badge { background: #dc3545; color: white; font-size: 11px; padding: 2px 6px; border-radius: 10px; margin-left: 8px; display: none; }
.conf-mesa-ponente-root .notification { position: fixed; top: 20px; right: 20px; background: #28a745; color: white; padding: 16px 24px; border-radius: 12px; display: none; z-index: 1000; animation: mod-slideIn 0.3s; }
.conf-moderador-root .volume-control .btn-volume { background: transparent; border: none; color: white; font-size: 16px; cursor: pointer; padding: 4px 6px; border-radius: 4px; transition: background 0.2s; }
.conf-moderador-root .volume-control .btn-volume:hover { background: rgba(255,255,255,0.1); }
.conf-moderador-root .volume-control input[type="range"] { flex: 1; height: 5px; -webkit-appearance: none; appearance: none; background: rgba(255,255,255,0.2); border-radius: 3px; outline: none; min-width: 60px; }
.conf-moderador-root .volume-control input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 14px; height: 14px; background: #28a745; border-radius: 50%; cursor: pointer; }
.conf-moderador-root .volume-control input[type="range"]::-moz-range-thumb { width: 14px; height: 14px; background: #28a745; border-radius: 50%; cursor: pointer; border: none; }
.conf-moderador-root .volume-control #lblVolumen { font-size: 12px; color: rgba(255,255,255,0.6); min-width: 35px; text-align: right; }
.hint-text-small { font-size: 12px; margin-top: 8px; }
.mod-btn-mt { margin-top: 12px; }
/* Guías Interactivas - Mesa Redonda Moderador */
.guia-pulso-mod { position: relative; z-index: 100; }
.guia-pulso-mod::before { content: ''; position: absolute; top: -6px; left: -6px; right: -6px; bottom: -6px; border: 3px solid #E36E00; border-radius: inherit; animation: guia-pulse-mod 1.5s ease-in-out infinite; pointer-events: none; }
@keyframes guia-pulse-mod { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.02); } }
.guia-tooltip-mod { position: fixed; background: linear-gradient(135deg, #E36E00 0%, #ff8533 100%); color: white; padding: 16px 20px; border-radius: 12px; font-size: 15px; font-weight: 500; max-width: 320px; z-index: 10001; box-shadow: 0 8px 32px rgba(227,110,0,0.4); animation: guia-fadeIn-mod 0.3s ease-out; }
@keyframes guia-fadeIn-mod { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.guia-cerrar-mod { position: absolute; top: 8px; right: 10px; background: rgba(255,255,255,0.2); border: none; color: white; width: 24px; height: 24px; border-radius: 50%; cursor: pointer; font-size: 14px; line-height: 1; transition: background 0.2s; }
.guia-cerrar-mod:hover { background: rgba(255,255,255,0.3); }
.guia-paso-mod { display: block; font-size: 11px; opacity: 0.8; margin-top: 8px; }

/* ============================================================
   MESA REDONDA PONENTE
   ============================================================ */
.conf-mesa-ponente-root *, .conf-mesa-ponente-root *::before, .conf-mesa-ponente-root *::after { box-sizing: border-box; font-family: 'Roboto', sans-serif; }
.conf-mesa-ponente-root body { background: linear-gradient(135deg, #1a1d24 0%, #2d3748 100%); color: white; min-height: 100vh; display: flex; flex-direction: column; }
.ponente-info-header { text-align: center; }
.ponente-info-header h1 { font-size: 18px; font-weight: 600; }
.ponente-info-header .sesion { font-size: 13px; color: rgba(255,255,255,0.6); }
.tu-nombre { padding: 8px 16px; background: rgba(0,209,178,0.2); border-radius: 20px; font-size: 14px; }
.btn-salir-mesa { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: white; padding: 8px 16px; border-radius: 6px; cursor: pointer; font-size: 14px; margin-left: 16px; transition: all 0.2s; }
.btn-salir-mesa:hover { background: #dc3545; border-color: #dc3545; }
.ponente-main { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px 20px; }
.estado-card { background: rgba(0,0,0,0.4); border-radius: 24px; padding: 50px; max-width: 500px; width: 100%; text-align: center; }
.estado-card.en-espera { border: 2px solid rgba(255,255,255,0.1); }
.estado-card.mano-levantada { border: 2px solid #ffc107; background: rgba(255,193,7,0.1); }
.estado-card.hablando { border: 2px solid #00d1b2; background: rgba(0,209,178,0.1); animation: mp-pulse-border 2s infinite; }
@keyframes mp-pulse-border { 0%, 100% { box-shadow: 0 0 20px rgba(0,209,178,0.3); } 50% { box-shadow: 0 0 40px rgba(0,209,178,0.5); } }
.estado-icono { width: 120px; height: 120px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 30px; font-size: 48px; }
.estado-icono.en-espera { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); }
.estado-icono.mano-levantada { background: #ffc107; color: #1a1d24; animation: mp-wave 1s ease-in-out infinite; }
@keyframes mp-wave { 0%, 100% { transform: rotate(0deg); } 25% { transform: rotate(15deg); } 75% { transform: rotate(-15deg); } }
.estado-icono.hablando { background: #00d1b2; color: #1a1d24; animation: mp-pulse-mic 1s infinite; }
@keyframes mp-pulse-mic { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
.estado-texto { font-size: 24px; font-weight: 600; margin-bottom: 10px; }
.estado-subtexto { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 30px; }
.posicion-cola { font-size: 18px; color: #ffc107; margin-bottom: 20px; }
.btn-accion { padding: 18px 40px; border: none; border-radius: 30px; font-size: 18px; font-weight: 600; cursor: pointer; transition: all 0.3s; display: inline-flex; align-items: center; gap: 12px; }
.btn-levantar-mano { background: #ffc107; color: #1a1d24; }
.btn-levantar-mano:hover { background: #e0a800; transform: scale(1.05); }
.btn-bajar-mano { background: rgba(255,255,255,0.2); color: white; }
.btn-bajar-mano:hover { background: rgba(255,255,255,0.3); }
.btn-terminar-turno { background: #28a745; color: white; }
.btn-terminar-turno:hover { background: #218838; }
.audio-visualizer { display: flex; align-items: center; justify-content: center; gap: 4px; height: 60px; margin: 20px 0; }
.audio-bar-mp { width: 8px; background: #00d1b2; border-radius: 4px; animation: mp-audio-wave 0.5s ease-in-out infinite; }
.audio-bar-mp:nth-child(1) { height: 20px; animation-delay: 0s; }
.audio-bar-mp:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.audio-bar-mp:nth-child(3) { height: 50px; animation-delay: 0.2s; }
.audio-bar-mp:nth-child(4) { height: 35px; animation-delay: 0.3s; }
.audio-bar-mp:nth-child(5) { height: 20px; animation-delay: 0.4s; }
@keyframes mp-audio-wave { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(1.5); } }
.info-hablante { background: rgba(0,0,0,0.3); border-radius: 16px; padding: 16px 24px; margin-top: 30px; display: flex; align-items: center; gap: 16px; }
.info-hablante i { font-size: 24px; color: #00d1b2; }
.info-hablante-text { text-align: left; }
.info-hablante-label { font-size: 12px; color: rgba(255,255,255,0.5); }
.info-hablante-nombre { font-weight: 600; }
.info-cola { margin-top: 20px; font-size: 14px; color: rgba(255,255,255,0.5); }
.monitor-traduccion { background: rgba(0,0,0,0.3); border-radius: 16px; padding: 20px; margin-top: 30px; max-width: 500px; width: 100%; text-align: left; }
.monitor-titulo { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.monitor-texto { font-size: 16px; line-height: 1.5; color: rgba(255,255,255,0.8); min-height: 50px; }
@keyframes mp-slideDown { from { transform: translateX(-50%) translateY(-20px); opacity: 0; } to { transform: translateX(-50%) translateY(0); opacity: 1; } }
.mp-info-hablante-mt { margin-top: 20px; }
.mp-chat-icon { font-size: 20px; display: block; margin-bottom: 8px; }

/* Control de volumen (mismo estilo que moderador, acento turquesa) */
.conf-mesa-ponente-root .volume-control { display: flex; align-items: center; gap: 8px; margin-top: 30px; padding: 14px 20px; background: rgba(0,0,0,0.3); border-radius: 12px; max-width: 500px; width: 100%; }
.conf-mesa-ponente-root .volume-control label { font-size: 13px; color: rgba(255,255,255,0.7); white-space: nowrap; display: flex; align-items: center; gap: 6px; margin: 0; }
.conf-mesa-ponente-root .volume-control label i { color: #00d1b2; }
.conf-mesa-ponente-root .volume-control .btn-volume { background: transparent; border: none; color: white; font-size: 16px; cursor: pointer; padding: 4px 6px; border-radius: 4px; transition: background 0.2s; }
.conf-mesa-ponente-root .volume-control .btn-volume:hover { background: rgba(255,255,255,0.1); }
.conf-mesa-ponente-root .volume-control input[type="range"] { flex: 1; height: 5px; -webkit-appearance: none; appearance: none; background: rgba(255,255,255,0.2); border-radius: 3px; outline: none; min-width: 60px; }
.conf-mesa-ponente-root .volume-control input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 14px; height: 14px; background: #00d1b2; border-radius: 50%; cursor: pointer; }
.conf-mesa-ponente-root .volume-control input[type="range"]::-moz-range-thumb { width: 14px; height: 14px; background: #00d1b2; border-radius: 50%; cursor: pointer; border: none; }
.conf-mesa-ponente-root .volume-control #lblVolumen { font-size: 12px; color: rgba(255,255,255,0.6); min-width: 35px; text-align: right; }

/* ============================================================
   CONFERENCIA OYENTE
   ============================================================ */
/* Language selector section (multi-idiom) */
.oyente-lang-select-row { display: flex; align-items: center; gap: 12px; width: 100%; }
.oyente-lang-select-label { font-size: 13px; color: rgba(255,255,255,0.7); white-space: nowrap; }
.oyente-lang-select { background: rgba(255,255,255,0.1); border: 1px solid rgba(0,209,178,0.4); color: white; padding: 6px 12px; border-radius: 6px; font-size: 14px; flex: 1; max-width: 250px; }
.oyente-lang-select option { background: #1a1d24; color: white; }
.volume-controls-mb { margin-bottom: 8px; }

/* ============================================================
   FACTURACIÓN — procesar_pago.html / checkout.html
   ============================================================ */
.precio-base-note { font-size: 0.6em; color: #666; margin-bottom: 5px; }
.exento-iva { color: #28a745; }
.price-usd-note { font-size: 0.65em; color: #888; margin-top: 4px; }
.btn-simulacion { background: #6c757d; color: white; margin-top: 1rem; }
.wise-modal-p { margin-bottom: 1rem; color: #666; }
.wise-ref-box { background: #e3f2fd; border: 2px solid #2196f3; }
.wise-ref-note { color: #1976d2; display: block; margin-top: 8px; }
.wise-bank-title { margin: 0 0 1rem 0; font-size: 0.95rem; color: #333; }
.wise-bank-title-icon { color: #9fe870; }
.wise-bank-address { font-family: inherit; font-size: 0.85rem; }
.wise-steps { margin: 0.5rem 0 0 1rem; padding: 0; }
.wise-warning-box { background: #fff3cd; border: 1px solid #ffc107; border-radius: 10px; padding: 1rem; margin-top: 1rem; }
.wise-warning-icon { color: #856404; }
.wise-locked-box { text-align: center; padding: 2rem; }
.wise-locked-icon { font-size: 2rem; color: #999; }
.wise-locked-p { margin-top: 0.5rem; color: #666; }

/* ============================================================
   PANTALLA GRANDE PANEL — pantalla_grande_panel.html
   ============================================================ */
.pantalla-panel-root { background: #edf4f4; color: #2d3436; font-family: 'Noto Sans', system-ui, sans-serif; min-height: 100vh; display: flex; flex-direction: column; }
.pantalla-panel-root * { box-sizing: border-box; margin: 0; padding: 0; }
.pantalla-panel-root .cabecera { background: #ffffff; border-bottom: 2px solid #00d1b2; padding: 10px 16px; display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-shrink: 0; position: sticky; top: 0; z-index: 100; }
.pantalla-panel-root .cabecera-izq { display: flex; align-items: center; gap: 12px; min-width: 0; }
.pantalla-panel-root .cabecera .logo { font-size: 11px; color: #00d1b2; font-weight: 700; letter-spacing: .05em; white-space: nowrap; flex-shrink: 0; }
.pantalla-panel-root .cabecera .titulo { font-size: 15px; font-weight: 600; color: #2d3436; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pantalla-panel-root .cabecera-der { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.pantalla-panel-root .indicador { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #636e72; }
.pantalla-panel-root .punto-vivo { width: 8px; height: 8px; border-radius: 50%; background: #00d1b2; animation: pulso-pantalla 1.5s infinite; flex-shrink: 0; }
@keyframes pulso-pantalla { 0%,100%{opacity:1} 50%{opacity:.3} }
.btn-compartir, .btn-pausa { background: none; border: 1px solid #b2bec3; color: #2d3436; border-radius: 6px; padding: 5px 10px; font-size: 12px; cursor: pointer; display: flex; align-items: center; gap: 5px; white-space: nowrap; transition: border-color .2s, background .2s; }
.btn-compartir:hover { border-color: #00d1b2; background: rgba(0,209,178,.08); }
.btn-pausa:hover { border-color: #007bff; background: rgba(0,123,255,.08); }
.btn-pausa.pausado { border-color: #007bff; background: rgba(0,123,255,.12); color: #007bff; }
.modal-compartir { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 500; align-items: center; justify-content: center; padding: 16px; }
.modal-compartir.visible { display: flex; }
.modal-caja { background: #ffffff; border: 1px solid #b2bec3; border-radius: 14px; padding: 24px; width: 100%; max-width: 420px; display: flex; flex-direction: column; gap: 16px; }
.modal-titulo { font-size: 16px; font-weight: 600; color: #2d3436; }
.modal-subtitulo { font-size: 13px; color: #636e72; margin-top: -8px; }
.modal-url { background: #edf4f4; border: 1px solid #b2bec3; border-radius: 8px; padding: 10px 12px; font-size: 12px; color: #636e72; word-break: break-all; line-height: 1.5; }
.modal-botones { display: flex; flex-direction: column; gap: 8px; }
.btn-accion { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 16px; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; border: none; transition: opacity .2s; text-decoration: none; }
.btn-accion:hover { opacity: .85; }
.btn-copiar { background: #edf4f4; color: #2d3436; border: 1px solid #b2bec3; }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-cerrar-modal { background: none; border: none; color: #636e72; font-size: 13px; cursor: pointer; align-self: center; }
.btn-cerrar-modal:hover { color: #2d3436; }
.pantalla-panel-root .toast { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%) translateY(20px); background: #00d1b2; color: #fff; padding: 8px 18px; border-radius: 20px; font-size: 13px; font-weight: 600; opacity: 0; transition: opacity .25s, transform .25s; z-index: 999; pointer-events: none; }
.pantalla-panel-root .toast.visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.grid-columnas { flex: 1; display: grid; gap: 10px; padding: 10px; overflow: hidden; height: calc(100vh - 49px); }
.grid-columnas.ncols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-columnas.ncols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-columnas.ncols-4 { grid-template-columns: repeat(4, 1fr); }
.columna { background: #ffffff; border: 2px solid #b2bec3; border-radius: 12px; display: flex; flex-direction: column; overflow: hidden; transition: border-color .3s, box-shadow .3s; min-height: 0; }
.columna.hablando { border-color: #00d1b2; box-shadow: 0 0 18px rgba(0,209,178,.25); }
.col-header { padding: 8px 12px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid #dfe6e9; background: #f7fbfb; flex-shrink: 0; }
.col-avatar { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; }
.col-info { flex: 1; min-width: 0; }
.col-nombre { font-weight: 600; font-size: 14px; color: #2d3436; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.col-idioma { font-size: 10px; color: #636e72; margin-top: 1px; }
.col-microfono { font-size: 14px; color: #b2bec3; flex-shrink: 0; }
.col-microfono.activo { color: #00d1b2; }
.col-video-wrap { flex-shrink: 0; background: #dfe6e9; position: relative; overflow: hidden; }
.ncols-2 .col-video-wrap { height: 320px; }
.ncols-3 .col-video-wrap { height: 260px; }
.ncols-4 .col-video-wrap { height: 200px; }
.col-video-wrap video { width: 100%; height: 100%; object-fit: cover; }
.col-video-avatar { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3rem; font-weight: 700; }
.col-subtitulos { flex: 1; padding: 8px 12px; display: flex; flex-direction: column; gap: 4px; overflow: hidden; min-height: 0; background: #ffffff; }
.historial { flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 3px; min-height: 0; }
.frase-hist { font-family: 'Noto Sans', sans-serif; font-size: 16px; color: #636e72; line-height: 1.5; border-left: 2px solid #dfe6e9; padding-left: 7px; }
.frase-hist-quien { font-size: 10px; color: #b2bec3; margin-bottom: 1px; }
.frase-actual { font-family: 'Roboto', sans-serif; font-size: 20px; font-weight: 500; line-height: 1.6; min-height: 32px; padding-top: 5px; border-top: 1px solid #dfe6e9; color: #2d3436; flex-shrink: 0; }
.frase-parcial { font-style: italic; color: #636e72; }
.c0 { background: #e3f0ff; color: #007bff; }
.c1 { background: #e0faf6; color: #00a896; }
.c2 { background: #fff0e0; color: #e07800; }
.c3 { background: #f0e0ff; color: #7b00d1; }
.text-c0 { color: #007bff; }
.text-c1 { color: #00a896; }
.text-c2 { color: #e07800; }
.text-c3 { color: #7b00d1; }
@media (max-width: 767px) { .pantalla-panel-root { overflow-y: auto; } .pantalla-panel-root .cabecera { padding: 8px 12px; } .pantalla-panel-root .cabecera .titulo { font-size: 13px; } .pantalla-panel-root .cabecera .logo { font-size: 10px; } .pantalla-panel-root #estadoTexto { display: none; } .grid-columnas { grid-template-columns: 1fr !important; height: auto; overflow: visible; padding: 8px; gap: 8px; } .col-video-wrap { height: 180px !important; } .frase-actual { font-size: 19px; } .frase-hist { font-size: 15px; } .historial { max-height: 80px; } .btn-compartir span, .btn-pausa span { display: none; } }
@media (min-width: 768px) and (max-width: 1023px) { .grid-columnas { grid-template-columns: repeat(2, 1fr) !important; height: auto; overflow: visible; } .pantalla-panel-root { overflow-y: auto; } .ncols-2 .col-video-wrap { height: 260px; } .ncols-3 .col-video-wrap, .ncols-4 .col-video-wrap { height: 220px; } }

/* ============================================================
   PANEL MULTILINGÜE PONENTE — panel_multilingue_ponente.html
   ============================================================ */
.panel-ml-root * { box-sizing: border-box; margin: 0; padding: 0; }
.panel-ml-root { background: #0d1117; color: #e6edf3; font-family: system-ui, -apple-system, sans-serif; height: 100vh; display: flex; flex-direction: column; overflow: hidden; }
.cabecera { background: #161b22; border-bottom: 2px solid #00d1b2; padding: 8px 16px; display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.cab-evento { font-size: 14px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.cab-badge { background: #00d1b2; color: #0d1117; padding: 2px 10px; border-radius: 20px; font-size: 12px; font-weight: 700; white-space: nowrap; flex-shrink: 0; margin: 0 10px; }
.indicador { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #7d8590; flex-shrink: 0; }
.punto-vivo { width: 8px; height: 8px; border-radius: 50%; background: #3fb950; animation: pulso-panel 1.5s infinite; }
@keyframes pulso-panel { 0%,100%{opacity:1} 50%{opacity:.3} }
.fila-remotos { display: flex; gap: 8px; padding: 8px 8px 0 8px; flex-shrink: 0; justify-content: center; }
.bloque-remoto { width: 160px; background: #161b22; border: 2px solid #30363d; border-radius: 8px; overflow: hidden; transition: border-color .2s, box-shadow .2s; flex-shrink: 0; }
.bloque-remoto.hablando { border-color: #00d1b2; box-shadow: 0 0 12px rgba(0,209,178,.4); }
.bloque-remoto video { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: #0d1117; display: none; }
.bloque-remoto .avatar { width: 100%; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 700; }
.bloque-remoto .pie { padding: 3px 6px; font-size: 11px; display: flex; justify-content: space-between; align-items: center; }
.idioma-tag { font-size: 10px; background: #21262d; padding: 1px 5px; border-radius: 3px; color: #7d8590; }
.av0 { background: #1a2a3a; color: #58a6ff; }
.av1 { background: #1a2e1a; color: #3fb950; }
.av2 { background: #2e1a1a; color: #f78166; }
.tev-panel-yo { color: #7d8590; }
.zona-stt { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 16px 24px; min-height: 0; }
.stt-etiqueta { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: #484f58; margin-bottom: 12px; }
.stt-texto { font-size: 22px; font-weight: 500; line-height: 1.5; color: #9198a1; font-style: italic; text-align: center; min-height: 36px; max-width: 700px; width: 100%; }
.stt-texto.confirmado { color: #e6edf3; font-style: normal; }
.stt-nombre { color: #00d1b2; font-weight: 700; font-style: normal; }
.footer-controles { background: #161b22; border-top: 1px solid #30363d; padding: 10px 16px; display: flex; align-items: center; justify-content: center; gap: 12px; flex-shrink: 0; }
.btn-ctrl { display: flex; align-items: center; gap: 8px; padding: 9px 22px; border-radius: 22px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: background .2s, transform .1s; }
.btn-ctrl:active { transform: scale(.97); }
.btn-mic.activo { background: #3fb950; color: #0d1117; }
.btn-mic.muteado { background: #da3633; color: #fff; }
.btn-cam { background: #21262d; color: #e6edf3; }
.btn-cam.activa { background: #1f6feb; color: #fff; }
.btn-salir { background: #21262d; color: #e6edf3; }
.nivel-audio { display: flex; align-items: center; gap: 3px; height: 18px; }
.barra { width: 3px; background: #30363d; border-radius: 2px; transition: height .1s; }
.barra-h4 { height: 4px; }
.barra-h8 { height: 8px; }
.barra-h12 { height: 12px; }
.barra-h16 { height: 16px; }
.barra-h20 { height: 20px; }
.banner-audio { display: none; position: fixed; top: 52px; left: 0; right: 0; z-index: 100; background: #e36e00; color: #fff; padding: 10px 16px; justify-content: center; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; cursor: pointer; }
.banner-audio:hover { background: #c45e00; }
@media (max-width: 600px) { .stt-texto { font-size: 17px; } .btn-ctrl { padding: 8px 14px; font-size: 13px; } .bloque-remoto { width: 120px; } }

/* ============================================================
   CONFERENCIA ESPERA — conferencia_espera.html
   ============================================================ */
.conferencia-espera-container { min-height: 100vh; background: linear-gradient(135deg, #1a1d24 0%, #2d3748 100%); display: flex; align-items: center; justify-content: center; padding: 20px; }
.espera-card { background: rgba(255, 255, 255, 0.05); border-radius: 24px; padding: 40px; max-width: 500px; width: 100%; text-align: center; backdrop-filter: blur(10px); border: 1px solid rgba(0, 209, 178, 0.2); }
.espera-header { margin-bottom: 30px; }
.espera-logo { height: 40px; opacity: 0.9; }
.evento-info { margin-bottom: 40px; }
.evento-nombre { font-size: 28px; font-weight: 700; color: white; margin-bottom: 8px; }
.sesion-nombre { font-size: 18px; font-weight: 400; color: rgba(255, 255, 255, 0.7); }
.espera-animacion { position: relative; width: 120px; height: 120px; margin: 0 auto 30px; }
.pulse-circle { position: absolute; width: 100%; height: 100%; border-radius: 50%; background: rgba(0, 209, 178, 0.2); animation: pulse-espera 2s ease-in-out infinite; }
.espera-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 40px; color: #00d1b2; }
@keyframes pulse-espera { 0%, 100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.2); opacity: 0.2; } }
.espera-mensaje h3 { font-size: 22px; font-weight: 600; color: white; margin-bottom: 10px; }
.espera-mensaje p { color: rgba(255, 255, 255, 0.6); font-size: 14px; }
.fecha-programada { margin: 30px 0; padding: 12px 20px; background: rgba(0, 123, 255, 0.1); border-radius: 12px; display: inline-flex; align-items: center; gap: 10px; color: #007bff; }
.idiomas-info { display: flex; align-items: center; justify-content: center; gap: 15px; margin-top: 30px; }
.idioma-badge { display: flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 20px; font-size: 13px; font-weight: 500; }
.idioma-badge.origen { background: rgba(0, 209, 178, 0.2); color: #00d1b2; }
.idioma-badge.destino { background: rgba(0, 123, 255, 0.2); color: #007bff; }
.idiomas-info > .bi-arrow-right { color: rgba(255, 255, 255, 0.4); }
.espera-footer { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.powered-by { font-size: 12px; color: rgba(255, 255, 255, 0.4); }
.powered-by a { color: #00d1b2; text-decoration: none; }
.powered-by a:hover { text-decoration: underline; }

/* ============================================================
   MIS CONFERENCIAS — mis_conferencias.html
   ============================================================ */
.tev-accordion-btn-sm { font-size: 1rem; background: #f8f9fa; }
.tev-discurso-result { max-height: 160px; overflow-y: auto; background: #f8f9fa; font-size: 0.82rem; line-height: 1.5; }
.tev-keyword-chip { background: #e8f5e9; color: #2e7d32; font-size: 0.78rem; font-weight: 500; }
.tev-icon-empty { font-size: 64px; color: #ccc; }
.tev-icon-success { font-size: 64px; }
.mis-conf-card { border-radius: 12px; border: none; }
.mis-conf-card .card-header { border-radius: 12px 12px 0 0; }
.mis-conf-badge { font-weight: 500; }
.discurso-optimizado-result p { margin-bottom: 0.6rem; color: #212529; }
.discurso-optimizado-result p:last-child { margin-bottom: 0; }
.mis-conf-table th { border-top: none; font-weight: 600; color: #666; }

/* ============================================================
   COMPRA EXITOSA — compra_exitosa.html
   ============================================================ */
.success-container { max-width: 600px; margin: 0 auto; padding: 3rem 2rem; text-align: center; }
.success-icon { width: 100px; height: 100px; background: linear-gradient(135deg, #00d1b2 0%, #00a896 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; animation: pulse-success 2s ease-in-out; }
@keyframes pulse-success { 0% { transform: scale(0); opacity: 0; } 50% { transform: scale(1.1); } 100% { transform: scale(1); opacity: 1; } }
.success-icon i { font-size: 3rem; color: white; }
.success-title { color: #00d1b2; font-weight: 700; font-size: 2rem; margin-bottom: 1rem; }
.success-message { color: #555; font-size: 1.1rem; margin-bottom: 2rem; }
.purchase-details { background: #edf4f4; border-radius: 12px; padding: 1.5rem; margin-bottom: 2rem; text-align: left; }
.purchase-details h5 { color: #007bff; margin-bottom: 1rem; }
.detail-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.08); }
.detail-row:last-child { border-bottom: none; font-weight: 600; color: #00d1b2; }
.next-steps { background: white; border: 2px solid #007bff; border-radius: 12px; padding: 1.5rem; margin-bottom: 2rem; }
.next-steps h5 { color: #007bff; margin-bottom: 1rem; }
.next-steps ul { text-align: left; padding-left: 1.5rem; }
.next-steps li { margin-bottom: 0.5rem; }
.btn-dashboard { background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); color: white; padding: 14px 40px; font-size: 1.1rem; font-weight: 600; border: none; border-radius: 10px; transition: all 0.3s ease; }
.btn-dashboard:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,123,255,0.4); color: white; }

/* ============================================================
   PROCESAR PAGO — procesar_pago.html
   ============================================================ */
.pago-container { max-width: 600px; margin: 0 auto; padding: 2rem; background: white; border-radius: 10px; box-shadow: 0 2px 15px rgba(0,0,0,0.1); }
.paquete-info { background: #edf4f4; padding: 1.5rem; border-radius: 8px; margin-bottom: 2rem; border-left: 4px solid #007bff; }
.precio-total { font-size: 1.8rem; font-weight: 700; color: #007bff; text-align: center; margin: 1rem 0; }
.consentimiento-box { background: #fff3cd; border: 1px solid #ffeaa7; border-radius: 8px; padding: 1.5rem; margin: 2rem 0; }
.consentimiento-item { display: flex; align-items: flex-start; margin-bottom: 1rem; }
.checkbox-custom { width: 20px; height: 20px; margin-right: 12px; margin-top: 2px; cursor: pointer; }
.aviso-pago { background: #e7f3ff; border: 1px solid #bee5eb; color: #0c5460; padding: 1rem; border-radius: 6px; margin: 1.5rem 0; text-align: center; font-weight: 500; }
.btn-pago { width: 100%; padding: 15px; font-size: 1.1rem; font-weight: 600; border: none; border-radius: 8px; cursor: pointer; transition: all 0.3s ease; }
.btn-stripe { background: #635bff; color: white; margin-bottom: 1rem; }
.btn-stripe:hover:not(:disabled) { background: #5144ff; transform: translateY(-2px); }
.btn-paypal { background: #ffc439; color: #2c2e2f; }
.btn-paypal:hover:not(:disabled) { background: #ffb700; transform: translateY(-2px); }
.btn-pago:disabled { opacity: 0.5; cursor: not-allowed; }
.terminos-link { color: #007bff; text-decoration: none; }
.error-msg { color: #dc3545; font-size: 0.9rem; margin-top: 0.5rem; display: none; }
.btn-more-options { width: 100%; padding: 12px; border: 2px dashed #ccc; border-radius: 8px; background: transparent; color: #666; font-size: 0.95rem; cursor: pointer; transition: all 0.3s ease; margin-top: 1rem; }
.btn-more-options:hover { border-color: #007bff; color: #007bff; }
.wise-modal-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.7); z-index: 9999; align-items: center; justify-content: center; }
.wise-modal-overlay.show { display: flex; }
.wise-modal { background: white; border-radius: 16px; max-width: 550px; width: 90%; max-height: 90vh; overflow-y: auto; box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
.wise-modal-header { background: linear-gradient(135deg, #9fe870 0%, #37d39a 100%); color: #163300; padding: 1.5rem; border-radius: 16px 16px 0 0; display: flex; align-items: center; justify-content: space-between; }
.wise-modal-header h3 { margin: 0; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.wise-modal-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #163300; opacity: 0.7; }
.wise-modal-close:hover { opacity: 1; }
.wise-modal-body { padding: 1.5rem; }
.wise-info-box { background: #f8f9fa; border-radius: 10px; padding: 1rem; margin-bottom: 1rem; }
.wise-info-row { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; border-bottom: 1px solid #eee; flex-wrap: wrap; gap: 5px; }
.wise-info-row:last-child { border-bottom: none; }
.wise-info-label { color: #666; font-size: 0.85rem; }
.wise-info-value { font-weight: 600; color: #333; font-family: monospace; font-size: 0.95rem; }
.wise-info-value.highlight { color: #007bff; font-size: 1.1rem; }
.wise-copy-btn { background: #007bff; color: white; border: none; padding: 4px 10px; border-radius: 4px; font-size: 0.75rem; cursor: pointer; margin-left: 8px; }
.wise-copy-btn:hover { background: #0056b3; }
.wise-warning { background: #fff3cd; border: 1px solid #ffc107; border-radius: 10px; padding: 1rem; margin-top: 1rem; font-size: 0.9rem; }
.wise-amount-box { background: linear-gradient(135deg, #007bff 0%, #00d1b2 100%); color: white; border-radius: 10px; padding: 1.25rem; text-align: center; margin-bottom: 1rem; }
.wise-amount-box .amount { font-size: 2rem; font-weight: 700; }
.wise-amount-box .label { font-size: 0.85rem; opacity: 0.9; }

/* ============================================================
   LOGIN / REGISTRO — login.html
   ============================================================ */
.auth-container { transition: all 0.3s ease; }
.form-toggle { cursor: pointer; color: var(--turquoise); text-decoration: underline; }
.form-toggle:hover { color: var(--primary-blue); }
.registro-form { display: none; }
.registro-form.active { display: block; }
.login-form.hidden { display: none; }
.form-subtitle-hidden { display: none; }

/* ============================================================
   PÁGINAS LEGALES — terminos_condiciones.html / politica_privacidad.html
   ============================================================ */
.card-body h2 {
    color: #007bff;
    border-bottom: 2px solid #00d1b2;
    padding-bottom: 10px;
    margin-top: 30px;
}
.card-body h3 { color: #2c3e50; margin-top: 20px; }
.card-body section { line-height: 1.8; }
.card-body ul { line-height: 1.8; }
.card-body code {
    background-color: #f8f9fa;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: #e83e8c;
}

/* ========== CONFERENCIA OYENTE ==========
 * Migrado de conferencia_oyente.html <style> block
 * Scoped bajo .conf-oyente-root para no afectar otras páginas
 * ========================================= */
.conf-oyente-root {
    --tev-turquoise: #00d1b2;
    --tev-dark: #1a1d24;
    --tev-gray: #2d3748;
}

.conf-oyente-root, .conf-oyente-root * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

.conf-oyente-root body {
    background: linear-gradient(135deg, var(--tev-dark) 0%, var(--tev-gray) 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.conf-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 209, 178, 0.2);
}

.conf-branding {
    display: flex;
    align-items: center;
    gap: 12px;
}

.conf-branding img {
    height: 28px;
}

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

.conf-info h1 {
    font-size: 18px;
    font-weight: 600;
}

.conf-info .sesion {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.conf-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 209, 178, 0.2);
    border-radius: 20px;
    font-size: 13px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00d1b2;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Main content */
.conf-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* Audio visualizer */
.audio-visualizer {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(0, 209, 178, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
}

.audio-visualizer::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(0, 209, 178, 0.3);
    animation: ripple 2s ease-out infinite;
}

.audio-visualizer::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(0, 209, 178, 0.3);
    animation: ripple 2s ease-out infinite 1s;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.audio-visualizer i {
    font-size: 60px;
    color: var(--tev-turquoise);
}

.audio-visualizer.speaking i {
    animation: speak-pulse 0.5s ease-in-out infinite;
}

@keyframes speak-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Subtitles area */
.subtitles-container {
    width: 100%;
    max-width: 800px;
    min-height: 200px;
    max-height: 400px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

/* Scroll area for subtitle history */
.subtitles-scroll-area {
    flex: 1;
    overflow-y: auto;
    padding-right: 8px;
    scroll-behavior: smooth;
}

.subtitles-scroll-area::-webkit-scrollbar {
    width: 6px;
}

.subtitles-scroll-area::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.subtitles-scroll-area::-webkit-scrollbar-thumb {
    background: rgba(0, 209, 178, 0.5);
    border-radius: 3px;
}

.subtitles-scroll-area::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 209, 178, 0.7);
}

/* Individual subtitle entry */
.subtitle-entry {
    padding: 12px 16px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 3px solid var(--tev-turquoise);
    animation: fadeInSubtitle 0.3s ease-out;
}

.subtitle-entry:last-child {
    margin-bottom: 0;
}

.subtitle-entry.interruption {
    opacity: 0.7;
    border-left-color: rgba(255, 255, 255, 0.4);
}

/* Subtítulos parciales (en tiempo real mientras habla) */
.subtitle-entry.partial {
    opacity: 0.8;
    border-left-color: rgba(0, 209, 178, 0.5);
    background: rgba(0, 209, 178, 0.1);
    animation: none;  /* Sin animación de entrada */
}

.subtitle-entry.partial .subtitle-entry-translated {
    color: rgba(255, 255, 255, 0.9);
}

.subtitle-entry.partial .partial-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--tev-turquoise);
    border-radius: 50%;
    margin-left: 8px;
    animation: partial-pulse 1s infinite;
}

@keyframes partial-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

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

.subtitle-entry-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.subtitle-entry-speaker {
    color: var(--tev-turquoise);
    font-weight: 500;
}

.subtitle-entry-time {
    margin-left: auto;
}

.subtitle-entry-translated {
    font-size: 18px;
    line-height: 1.4;
    color: white;
    margin-bottom: 4px;
}

.subtitle-entry-original {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* Empty state */
.subtitles-empty {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    padding: 40px 20px;
    font-size: 16px;
}

.subtitles-empty i {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
    color: rgba(0, 209, 178, 0.5);
}

.subtitles-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.subtitles-header i {
    color: var(--tev-turquoise);
}

.subtitles-header span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    flex: 1;
}

.btn-toggle-subtitles {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

.btn-toggle-subtitles:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-toggle-subtitles.active {
    background: rgba(0, 209, 178, 0.3);
    color: var(--tev-turquoise);
}

.subtitles-hidden .subtitles-scroll-area {
    display: none;
}

/* Overlay de desconexión */
.disconnected-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.disconnected-overlay i {
    font-size: 80px;
    color: #ffc107;
    margin-bottom: 30px;
}

.disconnected-overlay h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: white;
}

.disconnected-overlay p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    text-align: center;
    max-width: 400px;
}

.disconnected-overlay .btn-back {
    background: var(--tev-turquoise);
    color: var(--tev-dark);
    border: none;
    padding: 14px 32px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.disconnected-overlay .btn-back:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 209, 178, 0.4);
}

/* Language info */
.language-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.lang-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    font-size: 14px;
}

.lang-badge.listening {
    background: rgba(0, 209, 178, 0.2);
    color: var(--tev-turquoise);
}

/* Footer */
.conf-footer {
    padding: 16px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.conf-footer a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 12px;
}

/* Volume controls - dual sliders */
.volume-controls-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
    padding: 20px 24px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    min-width: 280px;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 12px;
}

.volume-control-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    min-width: 80px;
    text-align: right;
}

.volume-control-label.original {
    color: rgba(255, 193, 7, 0.9);
}

.volume-control-label.traduccion {
    color: var(--tev-turquoise);
}

.volume-control i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    min-width: 20px;
    text-align: center;
}

.volume-control i:hover {
    color: white;
}

.volume-control i.muted {
    color: #dc3545;
}

.volume-slider {
    width: 120px;
    height: 4px;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: var(--tev-turquoise);
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider.original::-webkit-slider-thumb {
    background: #ffc107;
}

.volume-slider.traduccion::-webkit-slider-thumb {
    background: var(--tev-turquoise);
}

/* Firefox */
.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--tev-turquoise);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.volume-slider.original::-moz-range-thumb {
    background: #ffc107;
}

.volume-value {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    min-width: 32px;
    text-align: right;
}

/* Connection status */
.connection-status {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    font-size: 13px;
    display: none;
}

.connection-status.connecting {
    display: block;
    color: #ffc107;
}

.connection-status.error {
    display: block;
    color: #dc3545;
}

/* Exit button */
.btn-exit {
    position: fixed;
    top: auto !important;
    bottom: 20px !important;
    right: 20px;
    background: rgba(220, 53, 69, 0.8);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 100;
    transition: all 0.3s;
}

.btn-exit:hover {
    background: #dc3545;
    transform: scale(1.05);
}

/* Debug Panel */
.debug-panel {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid var(--tev-turquoise);
    border-radius: 12px;
    padding: 16px;
    font-size: 12px;
    max-width: 350px;
    z-index: 1000;
    font-family: monospace;
}

.debug-panel h4 {
    color: var(--tev-turquoise);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.debug-panel .close-debug {
    cursor: pointer;
    opacity: 0.6;
}

.debug-panel .close-debug:hover {
    opacity: 1;
}

.debug-item {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.debug-item:last-child {
    border-bottom: none;
}

.debug-label {
    color: rgba(255,255,255,0.6);
}

.debug-value {
    color: white;
    font-weight: bold;
}

.debug-value.ok { color: #28a745; }
.debug-value.error { color: #dc3545; }
.debug-value.warning { color: #ffc107; }

.debug-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--tev-turquoise);
    color: var(--tev-dark);
    border: none;
    padding: 10px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    z-index: 999;
}

.audio-meter {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    margin-top: 8px;
    overflow: hidden;
}

.audio-meter-fill {
    height: 100%;
    background: linear-gradient(90deg, #28a745, #ffc107, #dc3545);
    width: 0%;
    transition: width 0.1s;
}

/* Enable audio button (for autoplay restrictions) */
.enable-audio-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.enable-audio-btn {
    background: var(--tev-turquoise);
    color: var(--tev-dark);
    border: none;
    padding: 20px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: pulse-btn 2s infinite;
}

.enable-audio-btn:hover {
    transform: scale(1.05);
}

.enable-audio-btn i {
    font-size: 24px;
}

@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 209, 178, 0.7); }
    50% { box-shadow: 0 0 0 20px rgba(0, 209, 178, 0); }
}

.enable-audio-text {
    color: white;
    margin-bottom: 20px;
    font-size: 16px;
    text-align: center;
}

/* Panel de ponente activo (mesa redonda) */
.ponente-activo-panel {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 209, 178, 0.2);
    border: 1px solid var(--tev-turquoise);
    border-radius: 25px;
    padding: 10px 24px;
    display: none;
    align-items: center;
    gap: 12px;
    z-index: 100;
    animation: fadeInDown 0.3s ease-out;
}

.ponente-activo-panel.visible {
    display: flex;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.ponente-activo-avatar {
    width: 36px;
    height: 36px;
    background: var(--tev-turquoise);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tev-dark);
    font-size: 16px;
    animation: pulse-avatar 1.5s infinite;
}

@keyframes pulse-avatar {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.ponente-activo-info {
    text-align: left;
}

.ponente-activo-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ponente-activo-nombre {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

/* ──────────────────────────────────────────
   TARJETAS REDONDEADAS — sala_llena, error_acceso, conferencia_llena
   (templates que extienden base.html)
   ────────────────────────────────────────── */

.tev-rounded-card {
    border-radius: 15px;
}

.tev-rounded-card .card-header {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

/* ──────────────────────────────────────────
   ICONOS INLINE — reemplazo de style= en templates de error/llena
   ────────────────────────────────────────── */

.tev-icon-80-warning {
    font-size: 80px;
    color: #ffc107;
}

.tev-icon-80-danger {
    font-size: 80px;
    color: #dc3545;
}

.tev-icon-40-primary {
    font-size: 40px;
    color: #007bff;
}

.tev-icon-40-success {
    font-size: 40px;
    color: #28a745;
}

/* ──────────────────────────────────────────
   CONFERENCIA FINALIZADA — standalone template
   ────────────────────────────────────────── */

.page-conferencia-finalizada * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.page-conferencia-finalizada {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 20px;
}

.page-conferencia-finalizada .container {
    text-align: center;
    max-width: 500px;
}

.page-conferencia-finalizada .icon {
    font-size: 80px;
    color: #6c757d;
    margin-bottom: 24px;
}

.page-conferencia-finalizada h1 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #fff;
}

.page-conferencia-finalizada .event-name {
    font-size: 20px;
    color: #007bff;
    margin-bottom: 8px;
}

.page-conferencia-finalizada .session-name {
    font-size: 16px;
    color: #aaa;
    margin-bottom: 24px;
}

.page-conferencia-finalizada .message {
    font-size: 16px;
    color: #888;
    margin-bottom: 32px;
    line-height: 1.6;
}

.page-conferencia-finalizada .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.page-conferencia-finalizada .btn-primary {
    background: #007bff;
    color: white;
}

.page-conferencia-finalizada .btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.page-conferencia-finalizada .btn-secondary {
    background: transparent;
    color: #aaa;
    border: 1px solid #444;
    margin-top: 16px;
}

.page-conferencia-finalizada .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}

.page-conferencia-finalizada .pdf-link {
    margin-top: 24px;
}

.page-conferencia-finalizada .pdf-link a {
    color: #28a745;
    text-decoration: none;
    font-size: 14px;
}

.page-conferencia-finalizada .pdf-link a:hover {
    text-decoration: underline;
}

/* ──────────────────────────────────────────
   INVITADO ENTRADA — standalone template
   ────────────────────────────────────────── */

.page-invitado-entrada {
    --primary-blue: #007bff;
    --turquoise: #00d1b2;
    --bg-pale-teal: #edf4f4;
    --dark-text: #2c3e50;
}

.page-invitado-entrada * {
    font-family: 'Roboto', sans-serif;
}

.page-invitado-entrada {
    background: linear-gradient(135deg, var(--bg-pale-teal) 0%, #d4e9e9 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.page-invitado-entrada .entrada-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    padding: 40px;
    text-align: center;
}

.page-invitado-entrada .logo-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--turquoise));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.page-invitado-entrada .logo-icon i {
    font-size: 40px;
    color: white;
}

.page-invitado-entrada h1 {
    color: var(--dark-text);
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 10px;
}

.page-invitado-entrada .subtitle {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 30px;
}

.page-invitado-entrada .sala-info {
    background: var(--bg-pale-teal);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid var(--turquoise);
}

.page-invitado-entrada .sala-info h2 {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.page-invitado-entrada .sala-info .creador {
    font-size: 14px;
    color: #6c757d;
}

.page-invitado-entrada .form-label {
    text-align: left;
    font-weight: 500;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.page-invitado-entrada .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s;
}

.page-invitado-entrada .form-control:focus {
    border-color: var(--turquoise);
    box-shadow: 0 0 0 0.2rem rgba(0, 209, 178, 0.25);
}

.page-invitado-entrada .btn-entrar {
    background: linear-gradient(135deg, var(--primary-blue), var(--turquoise));
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    transition: all 0.3s;
    margin-top: 20px;
}

.page-invitado-entrada .btn-entrar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.page-invitado-entrada .info-note {
    margin-top: 20px;
    padding: 12px;
    background: #fff3cd;
    border-radius: 8px;
    font-size: 13px;
    color: #856404;
    border-left: 4px solid #ffc107;
}

@media (max-width: 576px) {
    .page-invitado-entrada .entrada-container {
        padding: 30px 20px;
    }

    .page-invitado-entrada h1 {
        font-size: 20px;
    }
}

