/* main.css - Estilos para la interfaz de workflow modular - TONO NOCTURNO */

:root {
    --closed-width: 60px;
    --transition-speed: 0.3s;
    --night-bg: #0f172a;
    --night-card: #1e293b;
    --night-text: #e2e8f0;
    --night-border: #334155;
    --night-accent: #475569;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    min-height: 100vh;
    padding: 20px;
    color: var(--night-text);
}

.workflow-container {
    display: flex;
    height: calc(100vh - 40px);
    gap: 10px;
    position: relative;
}

.workflow-section {
    background: var(--night-card);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--night-border);
    /* Mejorar calidad del texto durante transformaciones */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Estados de las secciones */
.section-closed {
    width: var(--closed-width);
    min-width: var(--closed-width);
    max-width: var(--closed-width);
}

.section-half-open {
    flex: 1;
    min-width: 0;
}

.section-full-open {
    flex: 4;
    min-width: 0;
}

/* Botón de estado */
.section-toggle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all var(--transition-speed);
    z-index: 10;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-closed .section-toggle {
    height: 100%;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    justify-content: center;
    padding: 20px 0;
}

.section-half-open .section-toggle,
.section-full-open .section-toggle {
    height: 60px;
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
    justify-content: flex-start;
    padding-left: 70px;
}

.section-toggle:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: scale(1.02);
}

.section-closed .section-toggle:hover {
    transform: scale(1.02) rotate(180deg);
}

/* Icono del botón */
.toggle-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    transition: transform var(--transition-speed);
    color: white;
}

.section-closed .toggle-icon {
    left: 50%;
    top: 20px;
    transform: translateX(-50%) rotate(90deg);
}

.section-half-open .toggle-icon {
    transform: translateY(-50%) rotate(0deg);
}

.section-full-open .toggle-icon {
    transform: translateY(-50%) rotate(180deg);
}

/* Contenido de la sección */
.section-content {
    flex: 1;
    padding: 80px 20px 20px 20px;
    overflow-y: auto;
    opacity: 0;
    transition: opacity var(--transition-speed) 0.1s;
    background: var(--night-card);
    display: flex;
    flex-direction: column;
}

/* Contenido específico para la sección 2 (CV) */
.section-2 .section-content {
    padding: 60px 0 0 0; /* Menos padding superior para dar más espacio al iframe */
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Cabecera de la sección 2 */
.section-2 .section-header {
    padding: 0 20px 15px 20px;
    border-bottom: 2px solid var(--night-border);
    margin-bottom: 15px;
    flex-shrink: 0; /* No se reduce */
}

/* Iframe del CV en sección 2 */
.section-2 iframe {
    flex: 1;
    min-height: 0; /* Permite que se reduzca */
    border: none;
    background: white;
}

.section-half-open .section-content,
.section-full-open .section-content {
    opacity: 1;
}

.section-closed .section-content {
    display: none;
}

/* Colores de las secciones - Tono nocturno */
.section-1 {
    border-top: 4px solid #3b82f6;
}

.section-2 {
    border-top: 4px solid #10b981;
}

.section-3 {
    border-top: 4px solid #f59e0b;
}

.section-1 .section-toggle {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.section-2 .section-toggle {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.section-3 .section-toggle {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

/* Contenido específico de cada sección */
.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--night-border);
}

.section-subtitle {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Estados de la aplicación */
.status-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.status-ready {
    background-color: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.status-processing {
    background-color: #f59e0b;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.status-completed {
    background-color: #3b82f6;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.status-error {
    background-color: #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1;
        box-shadow: 0 0 15px rgba(245, 158, 11, 0.7);
    }
    50% { 
        opacity: 0.7;
        box-shadow: 0 0 5px rgba(245, 158, 11, 0.3);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .workflow-container {
        flex-direction: column;
        height: auto;
    }
    
    .section-closed {
        width: 100%;
        height: 60px;
        min-width: 100%;
        max-width: 100%;
    }
    
    .section-closed .section-toggle {
        height: 60px;
        writing-mode: horizontal-tb;
        transform: rotate(0deg);
        padding-left: 70px;
    }
    
    .section-closed .toggle-icon {
        left: 20px;
        top: 50%;
        transform: translateY(-50%) rotate(0deg);
    }
}

/* Controles de sección */
.section-controls {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.btn-secondary {
    background: var(--night-accent);
    color: #cbd5e1;
    border: 1px solid var(--night-border);
}

.btn-secondary:hover {
    background: #4b5563;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(75, 85, 99, 0.4);
}

.btn-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #0da271 0%, #047857 100%);
}



/* Área de texto */
.text-area {
    width: 100%;
    min-height: 200px;
    padding: 16px;
    border: 2px solid var(--night-border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
    resize: vertical;
    transition: all 0.2s;
    background: rgba(15, 23, 42, 0.7);
    color: var(--night-text);
}

.text-area:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    background: rgba(15, 23, 42, 0.9);
}

.text-area::placeholder {
    color: #64748b;
}

/* Estilos especiales para el editor de campos HTML */
#field-editor {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', monospace;
    font-size: 13px;
    line-height: 2.7; /* Aumentado 50% más (de 1.8 a 2.7) */
    tab-size: 2;
    white-space: pre-wrap;
    word-break: break-word;
    background: rgba(15, 23, 42, 0.95);
    border: 2px solid var(--night-border);
    color: #e2e8f0;
    padding: 20px;
    letter-spacing: 0.3px; /* Mejor espaciado entre letras */
}

/* Mejor visualización de saltos de línea */
#field-editor br {
    display: block;
    margin-bottom: 8px; /* Espacio visible después de <br> */
    content: "";
}

/* Mejor visualización de listas en el editor */
#field-editor li {
    margin-left: 20px;
    position: relative;
}

#field-editor li::before {
    content: "•";
    color: #60a5fa;
    position: absolute;
    left: -15px;
}

/* Resaltado de sintaxis HTML (simulado con spans) */
.html-tag {
    color: #60a5fa; /* Azul para etiquetas HTML */
}

.html-attribute {
    color: #34d399; /* Verde para atributos */
}

.html-value {
    color: #fbbf24; /* Amarillo para valores */
}

.html-comment {
    color: #94a3b8; /* Gris para comentarios */
}

.html-text {
    color: #cbd5e1; /* Gris claro para texto normal */
}





/* Mensajes de estado */
.status-message {
    padding: 12px 16px;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid var(--night-border);
    font-size: 14px;
    display: flex;
    align-items: center;
    color: #cbd5e1;
}



/* Efectos especiales para el tema nocturno */
.workflow-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

/* Scrollbar personalizado para el tema nocturno */
.section-content::-webkit-scrollbar {
    width: 8px;
}

.section-content::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 4px;
}

.section-content::-webkit-scrollbar-thumb {
    background: var(--night-accent);
    border-radius: 4px;
}

.section-content::-webkit-scrollbar-thumb:hover {
    background: #4b5563;
}

/* Efectos de brillo en los bordes */
.section-1 {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

.section-2 {
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
}

.section-3 {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.1);
}

/* Animación sutil para las secciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.workflow-section {
    animation: fadeIn 0.5s ease-out;
}

/* Estrellas de fondo (efecto decorativo) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 160px 20px, rgba(255, 255, 255, 0.3), transparent);
    background-repeat: repeat;
    z-index: -1;
    opacity: 0.3;
}

/* Efecto de neón para los títulos */
.section-title {
    text-shadow: 0 0 10px rgba(241, 245, 249, 0.3);
}

/* Transiciones suaves para todos los elementos interactivos */
.btn, .section-toggle {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Efecto de profundidad - MODIFICADO para evitar texto borroso */
.workflow-container {
    /* perspective: 1000px; */ /* Eliminado para evitar distorsión */
}

.workflow-section {
    /* transform-style: preserve-3d; */ /* Eliminado para evitar distorsión */
    /* transform: translateZ(0); */ /* Eliminado para evitar distorsión */
}

.workflow-section:hover {
    /* transform: translateZ(10px); */ /* Eliminado para evitar texto borroso */
    transform: scale(1.02); /* Solo escala, sin efectos 3D que causen borrosidad */
}



/* Ajustes para mejor legibilidad en modo nocturno */
.section-content h2, 
.section-content h3, 
.section-content h4 {
    color: #f1f5f9;
}

.section-content p, 
.section-content li, 
.section-content span {
    color: #cbd5e1;
}



/* Ajuste para el contenedor principal en móviles */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .workflow-container {
        gap: 8px;
    }
    
    .section-content {
        padding: 70px 15px 15px 15px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}



/* Mejora para el textarea en modo oscuro */
.text-area::-webkit-scrollbar {
    width: 6px;
}

.text-area::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.3);
    border-radius: 3px;
}

.text-area::-webkit-scrollbar-thumb {
    background: var(--night-accent);
    border-radius: 3px;
}

/* Estilos para el selector de CVs */
select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--night-border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
    transition: all 0.2s;
    background: rgba(15, 23, 42, 0.9);
    color: var(--night-text);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    cursor: pointer;
}

select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    background: rgba(15, 23, 42, 1);
}

select:hover {
    border-color: #475569;
    background: rgba(15, 23, 42, 1);
}

/* Estilos para las opciones del desplegable */
select option {
    background: var(--night-card);
    color: var(--night-text);
    padding: 12px;
    font-size: 14px;
    border: none;
}

select option:hover {
    background: rgba(59, 130, 246, 0.2);
}

select option:checked {
    background: rgba(59, 130, 246, 0.3);
    color: white;
    font-weight: 600;
}

select option:disabled {
    color: #64748b;
    background: var(--night-card);
}

/* Para navegadores WebKit (Chrome, Safari) */
select::-webkit-scrollbar {
    width: 8px;
}

select::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 4px;
}

select::-webkit-scrollbar-thumb {
    background: var(--night-accent);
    border-radius: 4px;
}

select::-webkit-scrollbar-thumb:hover {
    background: #4b5563;
}

/* Para Firefox */
select {
    scrollbar-width: thin;
    scrollbar-color: var(--night-accent) rgba(15, 23, 42, 0.5);
}

/* Contenedor para CVs guardados */
.cv-selector-container {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--night-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Cabecera del selector de CVs */
.cv-selector-container > .flex {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--night-border);
    margin-bottom: 1rem;
}

.cv-selector-title {
    font-size: 16px;
    font-weight: 600;
    color: #f1f5f9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cv-selector-label {
    display: block;
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

/* Selector específico dentro del contenedor de CVs */
.cv-selector-container select {
    background: rgba(15, 23, 42, 1);
    border: 2px solid var(--night-border);
    color: var(--night-text);
    font-size: 14px;
    padding: 14px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cv-selector-container select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2), inset 0 2px 4px rgba(0, 0, 0, 0.2);
    background: rgba(15, 23, 42, 1);
}

.cv-selector-container select:hover {
    border-color: #475569;
    background: rgba(15, 23, 42, 1);
}

.cv-selector-container select option {
    background: var(--night-card);
    color: var(--night-text);
    padding: 12px 16px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cv-selector-container select option:hover {
    background: rgba(59, 130, 246, 0.2);
}

.cv-selector-container select option:checked {
    background: rgba(59, 130, 246, 0.3);
    color: white;
    font-weight: 600;
}

/* Botón de abrir CV */
.btn-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #0da271 0%, #047857 100%);
}

/* Estado del stream */
.stream-progress {
    font-size: 14px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stream-progress::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1;
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.7);
    }
    50% { 
        opacity: 0.7;
        box-shadow: 0 0 5px rgba(16, 185, 129, 0.3);
    }
}

/* Modal de impresión */
.fixed {
    position: fixed;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.bg-black {
    background-color: #000;
}

.bg-opacity-50 {
    --tw-bg-opacity: 0.5;
}

.flex {
    display: flex;
}

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

.justify-center {
    justify-content: center;
}

.z-50 {
    z-index: 50;
}

.hidden {
    display: none;
}

.max-w-md {
    max-width: 28rem;
}

.w-full {
    width: 100%;
}

.mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.pt-4 {
    padding-top: 1rem;
}

.border-t {
    border-top-width: 1px;
}

/* Estilos para checkboxes y radios en modo nocturno */
input[type="checkbox"],
input[type="radio"] {
    accent-color: #3b82f6;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

input[type="checkbox"]:checked,
input[type="radio"]:checked {
    background-color: #3b82f6;
}

/* Utilidades de Tailwind que necesitamos */
.mb-4 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.text-lg {
    font-size: 1.125rem;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

.text-gray-400 {
    color: #9ca3af;
}

.text-gray-300 {
    color: #d1d5db;
}

.hover\:text-white:hover {
    color: #fff;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

/* Ajuste final para asegurar consistencia */
*:focus {
    outline: 2px solid rgba(59, 130, 246, 0.5);
    outline-offset: 2px;
}

/* =========================================
   TOGGLE SWITCH GRANDE CON LABELS A LOS LADOS
   ========================================= */
.toggle-switch-large {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

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

.slider-large {
    position: relative;
    display: inline-block;
    width: 70px;  /* Más grande */
    height: 34px; /* Más grande */
    background: linear-gradient(135deg, #475569 0%, #334155 100%);
    border: 2px solid var(--night-border);
    border-radius: 34px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slider-large:before {
    position: absolute;
    content: "";
    height: 26px;  /* Más grande */
    width: 26px;   /* Más grande */
    left: 4px;
    top: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.toggle-switch-large input:checked + .slider-large {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-color: #3b82f6;
}

.toggle-switch-large input:checked + .slider-large:before {
    transform: translateX(36px); /* Ajustado para tamaño mayor */
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

/* Efecto hover */
.toggle-switch-large:hover .slider-large {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

/* Labels a los lados (fuera del HTML del toggle) */
/* Los labels están como elementos hermanos separados */

/* Estilos para las etiquetas de los toggles */
.text-blue-400 {
    color: #60a5fa;
    transition: opacity 0.3s ease;
}

.text-green-400 {
    color: #34d399;
    transition: opacity 0.3s ease;
}

.text-gray-400 {
    color: #9ca3af;
    transition: opacity 0.3s ease;
}

.text-purple-400 {
    color: #a78bfa;
    transition: opacity 0.3s ease;
}

/* Separador entre toggles */
.h-6 {
    height: 1.5rem;
}

.w-px {
    width: 1px;
}

.bg-gray-700 {
    background-color: #374151;
}

/* Animación suave */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

