/* =========================================
   MODAL DE EXPORTACIÓN - DISEÑO PREMIUM
   =========================================
   Diseño coherente con off-canvas menu y logo
*/

/* Variables del modal (heredadas del menu off-canvas) */
:root {
    --export-primary: #0D009E;
    --export-primary-dark: #07004F;
    --export-accent: #4263eb;
    --export-accent-light: rgba(66, 99, 235, 0.1);
    --export-gradient: linear-gradient(135deg, #0D009E 0%, #07004F 100%);
    --export-bg: linear-gradient(180deg, #ffffff 0%, #f8faff 50%, #f0f4ff 100%);
    --export-glass: rgba(255, 255, 255, 0.95);
    --export-text: #1a1a2e;
    --export-text-light: #6c7a94;
    --export-border: rgba(13, 0, 158, 0.1);
    --export-shadow: 0 20px 60px rgba(7, 0, 79, 0.25);
    --export-disabled-bg: #f0f0f4;
    --export-disabled-text: #9ca3af;
}

/* Overlay del modal */
.export-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 0, 79, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.export-modal-overlay.active {
    display: flex;
    opacity: 1;
    animation: fadeInOverlay 0.35s ease forwards;
}

@keyframes fadeInOverlay {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Panel del modal */
.export-modal {
    background: var(--export-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    width: 100%;
    max-width: 540px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: var(--export-shadow);
    border: 1px solid var(--export-border);
    display: flex;
    flex-direction: column;
    transform: translateY(30px) scale(0.95);
    animation: slideInModal 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    position: relative;
}

@keyframes slideInModal {
    to {
        transform: translateY(0) scale(1);
    }
}

/* Header del modal */
.export-modal-header {
    background: var(--export-gradient);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

/* Efecto de brillo en header */
.export-modal-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.export-modal-title {
    font-family: 'Outfit', 'Segoe UI', system-ui, sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.export-modal-title::before {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'%3E%3C/path%3E%3Cpolyline points='17 8 12 3 7 8'%3E%3C/polyline%3E%3Cline x1='12' y1='3' x2='12' y2='15'%3E%3C/line%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Contenido del modal */
.export-modal-content {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    background: var(--export-bg);
}

/* Sección de formatos */
.export-format-section {
    margin-bottom: 24px;
}

.export-section-title {
    font-family: 'Outfit', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--export-primary);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.export-section-title::before {
    content: '';
    width: 3px;
    height: 16px;
    background: var(--export-gradient);
    border-radius: 2px;
}

/* Grid de formatos - MEJORADO */
.export-format-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.export-format-option {
    background: #ffffff;
    border: 2px solid var(--export-border);
    border-radius: 14px;
    padding: 16px 10px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

/* Efecto shimmer en hover */
.export-format-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(66, 99, 235, 0.05) 50%, transparent 100%);
    transition: left 0.5s ease;
    pointer-events: none;
}

.export-format-option:hover::before {
    left: 100%;
}

.export-format-option:hover {
    border-color: var(--export-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13, 0, 158, 0.12);
}

.export-format-option.selected {
    background: linear-gradient(135deg, rgba(13, 0, 158, 0.06) 0%, rgba(66, 99, 235, 0.1) 100%);
    border-color: var(--export-primary);
    box-shadow: 0 6px 20px rgba(13, 0, 158, 0.15), inset 0 0 0 1px rgba(13, 0, 158, 0.1);
    transform: translateY(-2px);
}

.export-format-option.selected .export-format-icon {
    transform: scale(1.15);
}

/* Iconos SVG mejorados */
.export-format-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: transform 0.3s ease;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(13, 0, 158, 0.08) 0%, rgba(66, 99, 235, 0.12) 100%);
}

/* Iconos SVG personalizados para cada formato */
.export-format-option[data-format="png"] .export-format-icon {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #2e7d32;
}

.export-format-option[data-format="png"] .export-format-icon::before {
    content: '';
    width: 26px;
    height: 26px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232e7d32' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'%3E%3C/circle%3E%3Cpolyline points='21 15 16 10 5 21'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.export-format-option[data-format="jpg"] .export-format-icon {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #ef6c00;
}

.export-format-option[data-format="jpg"] .export-format-icon::before {
    content: '';
    width: 26px;
    height: 26px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ef6c00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'%3E%3C/circle%3E%3Cpath d='M21 15l-5-5L5 21'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.export-format-option[data-format="pdf"] .export-format-icon {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: #c62828;
}

.export-format-option[data-format="pdf"] .export-format-icon::before {
    content: '';
    width: 26px;
    height: 26px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23c62828' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cline x1='16' y1='13' x2='8' y2='13'%3E%3C/line%3E%3Cline x1='16' y1='17' x2='8' y2='17'%3E%3C/line%3E%3Cpolyline points='10 9 9 9 8 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* SVG - Estado DESHABILITADO / Próximamente */
.export-format-option[data-format="svg"] {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
    background: var(--export-disabled-bg);
    border-color: #d1d5db;
    order: 4;
    /* Mover al final */
}

.export-format-option[data-format="svg"] .export-format-icon {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    color: #9ca3af;
}

.export-format-option[data-format="svg"] .export-format-icon::before {
    content: '';
    width: 26px;
    height: 26px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='12 2 2 7 12 12 22 7 12 2'%3E%3C/polygon%3E%3Cpolyline points='2 17 12 22 22 17'%3E%3C/polyline%3E%3Cpolyline points='2 12 12 17 22 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
}

.export-format-option[data-format="svg"] .export-format-label {
    color: var(--export-disabled-text);
}

.export-format-option[data-format="svg"] .export-format-desc {
    font-size: 0.68rem !important;
    color: #9ca3af !important;
    font-weight: 500;
}

.export-format-label {
    font-family: 'Outfit', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--export-text);
    letter-spacing: 0.3px;
}

.export-format-desc {
    font-family: 'Outfit', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.72rem;
    color: var(--export-text-light);
    font-weight: 400;
    line-height: 1.3;
}

/* ======================================
   CONTROL DE CALIDAD - SLIDER MEJORADO
   ====================================== */
.export-quality-control {
    margin-bottom: 24px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(13, 0, 158, 0.03) 0%, rgba(66, 99, 235, 0.06) 100%);
    border-radius: 14px;
    border: 1px solid var(--export-border);
}

.quality-slider-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.quality-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(90deg, #e0e7ff 0%, #c7d2fe 25%, #a5b4fc 50%, #818cf8 75%, var(--export-primary) 100%);
    outline: none;
    cursor: pointer;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.quality-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid var(--export-primary);
    box-shadow: 0 3px 10px rgba(13, 0, 158, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
}

.quality-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 14px rgba(13, 0, 158, 0.4);
}

.quality-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid var(--export-primary);
    box-shadow: 0 3px 10px rgba(13, 0, 158, 0.3);
    cursor: pointer;
}

.quality-labels {
    display: flex;
    justify-content: space-between;
    font-family: 'Outfit', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.72rem;
    color: var(--export-text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quality-value-display {
    text-align: center;
    font-family: 'Outfit', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--export-primary);
    padding: 10px 16px;
    background: linear-gradient(135deg, rgba(13, 0, 158, 0.08) 0%, rgba(66, 99, 235, 0.12) 100%);
    border-radius: 10px;
    border: 1px solid rgba(13, 0, 158, 0.1);
}

/* ======================================
   NOMBRE DE ARCHIVO
   ====================================== */
.export-filename-group {
    margin-bottom: 24px;
}

.export-filename-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--export-border);
    border-radius: 12px;
    font-family: 'Outfit', 'Segoe UI', system-ui, sans-serif;
    font-size: 1rem;
    color: var(--export-text);
    background: #ffffff;
    transition: all 0.25s ease;
}

.export-filename-input:focus {
    outline: none;
    border-color: var(--export-primary);
    box-shadow: 0 0 0 4px rgba(13, 0, 158, 0.1);
}

.export-filename-hint {
    font-family: 'Outfit', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.78rem;
    color: var(--export-text-light);
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.export-filename-hint::before {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236c7a94' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='2' x2='12' y2='6'%3E%3C/line%3E%3Cline x1='12' y1='18' x2='12' y2='22'%3E%3C/line%3E%3Cline x1='4.93' y1='4.93' x2='7.76' y2='7.76'%3E%3C/line%3E%3Cline x1='16.24' y1='16.24' x2='19.07' y2='19.07'%3E%3C/line%3E%3Cline x1='2' y1='12' x2='6' y2='12'%3E%3C/line%3E%3Cline x1='18' y1='12' x2='22' y2='12'%3E%3C/line%3E%3Cline x1='4.93' y1='19.07' x2='7.76' y2='16.24'%3E%3C/line%3E%3Cline x1='16.24' y1='7.76' x2='19.07' y2='4.93'%3E%3C/line%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
}

/* ======================================
   VISTA PREVIA
   ====================================== */
.export-preview-section {
    margin-bottom: 8px;
}

.export-preview-container {
    background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
    border: 2px dashed var(--export-border);
    border-radius: 14px;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.export-preview-image {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.export-preview-placeholder {
    font-family: 'Outfit', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.9rem;
    color: var(--export-text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.export-preview-placeholder::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid var(--export-accent);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ======================================
   BOTONES DE ACCIÓN
   ====================================== */
.export-modal-actions {
    display: flex;
    gap: 12px;
    padding: 20px 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(248, 250, 255, 1) 100%);
    border-top: 1px solid var(--export-border);
}

.export-btn {
    flex: 1;
    padding: 14px 24px;
    border-radius: 12px;
    font-family: 'Outfit', 'Segoe UI', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.export-btn-cancel {
    background: #ffffff;
    border: 2px solid var(--export-border);
    color: var(--export-text-light);
}

.export-btn-cancel:hover {
    background: #f8f9fa;
    border-color: #ced4da;
    color: var(--export-text);
}

.export-btn-primary {
    background: var(--export-gradient);
    border: none;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(13, 0, 158, 0.3);
    position: relative;
    overflow: hidden;
}

/* Efecto shimmer en botón principal */
.export-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transition: left 0.5s ease;
}

.export-btn-primary:hover::before {
    left: 100%;
}

.export-btn-primary:hover {
    box-shadow: 0 6px 24px rgba(13, 0, 158, 0.4);
    transform: translateY(-2px);
}

.export-btn-primary:active {
    transform: translateY(0) scale(0.98);
}

/* ======================================
   LOADING OVERLAY
   ====================================== */
.export-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    z-index: 10;
}

.export-loading-overlay.active {
    display: flex;
}

.export-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(13, 0, 158, 0.15);
    border-top-color: var(--export-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.export-loading-text {
    font-family: 'Outfit', 'Segoe UI', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--export-primary);
}

/* ======================================
   NOTIFICACIONES
   ====================================== */
.export-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #ffffff;
    border-radius: 12px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 4000;
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(13, 0, 158, 0.1);
}

.export-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.export-notification.success {
    border-left: 4px solid #10b981;
}

.export-notification.error {
    border-left: 4px solid #ef4444;
}

.export-notification-icon {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.export-notification.success .export-notification-icon {
    color: #10b981;
}

.export-notification.error .export-notification-icon {
    color: #ef4444;
}

.export-notification-message {
    font-family: 'Outfit', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--export-text);
}

/* ======================================
   RESPONSIVE
   ====================================== */
@media (max-width: 768px) {
    .export-modal-overlay {
        padding: 16px;
    }

    .export-modal {
        max-width: 90vw;
        max-height: 90vh;
        border-radius: 18px;
    }

    .export-modal-header {
        padding: 20px;
    }

    .export-modal-title {
        font-size: 1.2rem;
    }

    .export-modal-close {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

    .export-modal-content {
        padding: 20px;
    }

    .export-format-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .export-format-option {
        padding: 16px 10px;
        border-radius: 12px;
    }

    .export-format-icon {
        width: 44px;
        height: 44px;
    }

    .export-format-icon::before {
        width: 24px !important;
        height: 24px !important;
    }

    .export-format-label {
        font-size: 0.9rem;
    }

    .export-quality-control {
        padding: 16px;
    }

    .export-quality-label {
        font-size: 0.9rem;
    }

    .export-modal-actions {
        padding: 16px 20px;
        gap: 10px;
    }

    .export-btn {
        padding: 11px 18px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .export-modal-overlay {
        padding: 12px;
    }

    .export-modal {
        max-width: 95vw;
        max-height: 95vh;
        border-radius: 16px;
    }

    .export-modal-header {
        padding: 16px 18px;
    }

    .export-modal-title {
        font-size: 1.05rem;
    }

    .export-modal-close {
        width: 32px;
        height: 32px;
        font-size: 20px;
    }

    .export-modal-content {
        padding: 16px;
    }

    .export-format-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .export-format-option {
        padding: 12px 8px;
        border-radius: 10px;
    }

    .export-format-icon {
        width: 36px;
        height: 36px;
    }

    .export-format-icon::before {
        width: 20px !important;
        height: 20px !important;
    }

    .export-format-label {
        font-size: 0.8rem;
    }

    .export-quality-control {
        padding: 14px;
    }

    .export-quality-label {
        font-size: 0.8rem;
    }

    .export-quality-options {
        gap: 8px;
    }

    .export-quality-option {
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .export-modal-actions {
        padding: 12px 16px;
        gap: 8px;
        flex-direction: column-reverse;
    }

    .export-btn {
        width: 100%;
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .export-modal-info {
        font-size: 0.75rem;
        padding: 12px;
    }
}

/* Animación de aparición para las opciones de formato */
.export-format-option {
    animation: fadeInUp 0.4s ease forwards;
    opacity: 0;
}

.export-format-option:nth-child(1) {
    animation-delay: 0.1s;
}

.export-format-option:nth-child(2) {
    animation-delay: 0.15s;
}

.export-format-option:nth-child(3) {
    animation-delay: 0.2s;
}

.export-format-option:nth-child(4) {
    animation-delay: 0.25s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SVG mantiene opacidad reducida después de animación */
.export-format-option[data-format="svg"] {
    animation: fadeInUpDisabled 0.4s ease forwards;
    animation-delay: 0.25s;
}

@keyframes fadeInUpDisabled {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 0.55;
        transform: translateY(0);
    }
}