
                            
    .tabla-migracion {
        width: 100%;
        border-collapse: collapse;
        margin: 25px 0;
        font-family: sans-serif;
        min-width: 400px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }
    .tabla-migracion thead tr {
        background-color: #00447c;
        color: #ffffff;
        text-align: left;
    }
    .tabla-migracion th, .tabla-migracion td {
        padding: 12px 15px;
        border: 1px solid #dddddd;
    }
    .tabla-migracion tbody tr:nth-of-type(even) {
        background-color: #f3f3f3;
    }
    .tabla-migracion tbody tr:last-of-type {
        font-weight: bold;
        color: #00447c;
    }
                            
                            /* Estilo para el enlace específico */
.enlace-link {
    text-decoration: none; /* Quitamos el subrayado feo por defecto */
    color: #007bff; /* Color azul profesional */
    font-weight: bold;
    border-bottom: 2px solid #007bff; /* Subrayado personalizado */
    padding-bottom: 0.5px;
    transition: all 0.3s ease;
}

.enlace-link:hover {
    color: #0056b3;
    border-bottom-color: #ffa000; /* Cambia a naranja al pasar el mouse */
    background-color: rgba(0, 123, 255, 0.05); /* Un toque de fondo suave */
}

                            .faq-section {
                              max-width: 800px;
                              margin: 2rem auto;
                              font-family: Arial, sans-serif;
                            }
                            
                            .faq h2 {
                              text-align: center;
                              margin-bottom: 1.5rem;
                            }
                            
                            .faq {
                              border-bottom: 1px solid #ddd;
                              margin-bottom: 10px;
                            }
                            
                            .faq-question {
                              width: 100%;
                              padding: 1rem;
                              text-align: left;
                              border: none;
                              background: #f9f9f9;
                              font-size: 1rem;
                              cursor: pointer;
                              transition: background 0.3s ease;
                            }
                            
                            .faq-question:hover {
                              background: #eaeaea;
                            }
                            
                            .faq-answer {
                              max-height: 0;
                              overflow: hidden;
                              transition: max-height 0.4s ease, padding 0.4s ease;
                              padding: 0 1rem;
                            }
                            
                            .faq-answer p {
                              margin: 1rem 0;
                            }
                            
                            .faq.active .faq-answer {
                              max-height: 300px; /* suficiente para mostrar texto */
                              padding: 1rem;
                            }
                            