/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.contenedor {
    max-width: 1400px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Encabezado del módulo */
.encabezado-modulo {
    color: white;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

/* Botón volver en el header */
.btn-volver-header {
    background: rgba(0, 0, 0, 0.3);
    color: white;
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
    margin-right: 0.8rem;
    vertical-align: middle;
}

.btn-volver-header:hover {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.encabezado-modulo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.encabezado-contenido {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.modulo-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.modulo-info h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1;
}

.modulo-descripcion {
    font-size: 0.7rem;
    opacity: 0.9;
    font-weight: 300;
    margin: 0;
    line-height: 1.2;
}

.controles-sesion {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.session-info {
    text-align: right;
}

.session-time {
    color: rgba(255,255,255,0.9);
    font-size: 0.7rem;
    font-weight: 500;
    background: rgba(255,255,255,0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.btn-cerrar-sesion, .btn-autenticar {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 0.8rem;
}

.btn-cerrar-sesion:hover, .btn-autenticar:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Estadísticas del módulo */
.estadisticas-modulo {
    display: flex;
    justify-content: space-around;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    box-shadow: 0 1px 5px rgba(0,0,0,0.1);
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
    padding: 0.4rem 0.5rem;
    border-radius: 6px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 2px solid #6c757d;
    transition: transform 0.3s ease;
    min-width: 60px;
    flex: 1;
}

.stat-card:hover {
    transform: translateY(-2px);
}

.stat-card.pendiente {
    border-left-color: #28a745;
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
}

.stat-card.completado {
    border-left-color: #dc3545;
    background: linear-gradient(135deg, #ffeaea 0%, #f8d7da 100%);
}

.stat-card.progreso {
    border-left-color: #007bff;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.stat-number {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.6rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Controles CRUD */
.controles-crud {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: white;
    border-bottom: 1px solid #e9ecef;
    flex-wrap: wrap;
    gap: 1rem;
}

.controles-adicionales {
    display: flex;
    gap: 0.5rem;
}

/* Botones */
.btn-crear, .btn-refresh, .btn-export {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-crear {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    box-shadow: 0 3px 10px rgba(40, 167, 69, 0.3);
}

.btn-crear:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.btn-refresh, .btn-export {
    background: #6c757d;
    color: white;
    padding: 0.75rem;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    justify-content: center;
}

.btn-refresh:hover, .btn-export:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.2rem;
}

/* Grid de tarjetas */
.grid-tarjetas {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    padding: 1rem;
}

.tarjeta-contenido {
    background: white;
    border-radius: 8px;
    padding: 0.8rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.tarjeta-contenido::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #6c757d;
    transition: all 0.3s ease;
}

/* El indicador circular se ha eliminado - el estado se muestra con el badge y la barra superior */

/* Barra de controles superior */
.tarjeta-controles-superior {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

.estado-badge {
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.estado-badge.pendiente {
    background: #28a745;
    color: white;
}

.estado-badge.completado {
    background: #dc3545;
    color: white;
}

.tarjeta-contenido:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Estados de las tarjetas */
.tarjeta-contenido.pendiente::before {
    background: linear-gradient(90deg, #28a745, #20c997);
}

.tarjeta-contenido.completado::before {
    background: linear-gradient(90deg, #dc3545, #e74c3c);
}

/* Los estilos del indicador circular se han eliminado */

.tarjeta-contenido.pendiente {
    background: linear-gradient(135deg, #f8fff8 0%, #f0f8f0 100%);
}

.tarjeta-contenido.completado {
    background: linear-gradient(135deg, #fff8f8 0%, #f8f0f0 100%);
}

/* Drag and Drop */
.tarjeta-contenido.arrastrable {
    cursor: move;
}

.tarjeta-contenido.arrastrando {
    opacity: 0.6;
    transform: rotate(3deg) scale(1.05);
    z-index: 1000;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.tarjeta-contenido.drag-over {
    border: 2px dashed #007bff;
    background: #f8f9ff;
    transform: scale(1.02);
}

/* Header de tarjeta */
.tarjeta-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.icono-tarjeta {
    font-size: 1.2rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.05);
    border-radius: 6px;
    flex-shrink: 0;
}

.tarjeta-header h3 {
    color: #333;
    font-size: 1rem;
    margin: 0;
    flex: 1;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.controles-tarjeta {
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tarjeta-contenido:hover .controles-tarjeta {
    opacity: 1;
}

.btn-editar-tarjeta, .btn-eliminar-tarjeta, .btn-cambiar-estado {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.btn-editar-tarjeta:hover {
    background: #e3f2fd;
    opacity: 1;
    transform: scale(1.1);
}

.btn-eliminar-tarjeta:hover {
    background: #ffebee;
    opacity: 1;
    transform: scale(1.1);
}

.btn-cambiar-estado:hover {
    background: #e8f5e8;
    opacity: 1;
    transform: scale(1.1);
}

/* Los estilos del estado-indicador se han movido a estado-badge */

/* Contenido de tarjeta */
.descripcion-tarjeta {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.contenido-preview {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    min-height: 80px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
    border-left: 3px solid #e9ecef;
}

.tarjeta-metadata {
    margin-bottom: 1rem;
}

.fecha-modificacion {
    color: #666;
    font-size: 0.8rem;
}

/* Acciones de tarjeta */
.tarjeta-acciones {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-ver, .btn-editar {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 100px;
}

.btn-ver {
    background: #17a2b8;
    color: white;
}

.btn-ver:hover {
    background: #138496;
    transform: translateY(-1px);
}

.btn-editar {
    background: #ffc107;
    color: #000;
}

.btn-editar:hover {
    background: #e0a800;
    transform: translateY(-1px);
}

/* Modales */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.modal-contenido {
    background-color: white;
    margin: 3% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideIn 0.3s ease-out;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-grande {
    max-width: 800px;
}

.modal-mediano {
    max-width: 500px;
}

.modal-pequeno {
    max-width: 400px;
}

.modal-carga {
    background: transparent;
    box-shadow: none;
    max-width: 300px;
}

/* Modal de login específico */
#modal-login .modal-contenido {
    max-width: 500px;
    width: 95%;
}

#modal-login .modal-body {
    padding: 2rem;
}

#modal-login input[type="password"] {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1rem;
}

#modal-login input[type="password"]:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

#modal-login .modal-botones {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

#modal-login .btn-principal,
#modal-login .btn-secundario {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

#modal-login .btn-principal {
    background: #007bff;
    color: white;
}

#modal-login .btn-principal:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

#modal-login .btn-secundario {
    background: #6c757d;
    color: white;
}

#modal-login .btn-secundario:hover {
    background: #545b62;
    transform: translateY(-1px);
}

/* Selector de iconos */
.icono-selector {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.icono-selector input {
    flex: 1;
}

.btn-selector-icono {
    background: #6c757d;
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}

.btn-selector-icono:hover {
    background: #545b62;
}

.iconos-sugeridos {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.icono-sugerido {
    display: inline-block;
    font-size: 1.5rem;
    padding: 0.3rem;
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.icono-sugerido:hover {
    border-color: #007bff;
    background: #e3f2fd;
    transform: scale(1.1);
}

.icono-sugerido:active {
    transform: scale(0.95);
}

/* Grid de iconos en el selector */
.iconos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
    gap: 0.5rem;
    max-height: 400px;
    overflow-y: auto;
    padding: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background: #f8f9fa;
}

.icono-opcion {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    padding: 0.5rem;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    min-height: 60px;
}

.icono-opcion:hover {
    border-color: #007bff;
    background: #e3f2fd;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.icono-opcion:active {
    transform: scale(0.95);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
}

.modal-header h2 {
    color: #333;
    margin: 0;
    font-size: 1.5rem;
}

.btn-cerrar {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.btn-cerrar:hover {
    background: #e9ecef;
    color: #333;
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

/* Formularios */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: #666;
    font-size: 0.8rem;
}

.form-botones {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Botones de formulario */
.btn-principal, .btn-secundario, .btn-exito, .btn-peligro {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-size: 0.9rem;
}

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

.btn-principal:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.btn-secundario {
    background: #6c757d;
    color: white;
}

.btn-secundario:hover {
    background: #545b62;
    transform: translateY(-2px);
}

.btn-exito {
    background: #28a745;
    color: white;
}

.btn-exito:hover {
    background: #1e7e34;
    transform: translateY(-2px);
}

.btn-peligro {
    background: #dc3545;
    color: white;
}

.btn-peligro:hover {
    background: #c82333;
    transform: translateY(-2px);
}

/* Vista de contenido */
.vista-contenido {
    line-height: 1.8;
    color: #333;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    min-height: 200px;
    border-left: 4px solid #007bff;
}

/* Editor de contenido */
.editor-contenido {
    padding: 0;
}

#textarea-contenido {
    width: 100%;
    min-height: 300px;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    resize: vertical;
    transition: border-color 0.3s ease;
}

#textarea-contenido:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.editor-botones {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: flex-end;
}

/* Mensajes de error */
.mensaje-error {
    color: #dc3545;
    text-align: center;
    margin-top: 1rem;
    font-weight: 500;
    padding: 0.75rem;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
}

/* Pie de página */
.pie-pagina {
    background: #333;
    color: white;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-volver {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.btn-volver:hover {
    color: #0056b3;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-info p:first-child {
    font-weight: 500;
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Spinner de carga */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.carga-contenido {
    text-align: center;
    color: white;
}

/* Toast notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2000;
}

.toast {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    margin-bottom: 0.5rem;
    border-left: 4px solid #007bff;
    animation: slideInRight 0.3s ease-out;
    max-width: 300px;
}

.toast.success {
    border-left-color: #28a745;
}

.toast.error {
    border-left-color: #dc3545;
}

.toast.warning {
    border-left-color: #ffc107;
}

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

/* Responsive */
@media (max-width: 768px) {
    .encabezado-contenido {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .modulo-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .modulo-info h1 {
        font-size: 1.2rem;
    }
    
    .modulo-descripcion {
        font-size: 0.6rem;
    }
    
    .controles-sesion {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .estadisticas-modulo {
        padding: 0.8rem 1rem;
        gap: 0.5rem;
    }
    
    .stat-card {
        padding: 0.6rem 0.8rem;
        min-width: 60px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .grid-tarjetas {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .controles-crud {
        flex-direction: column;
        align-items: stretch;
    }
    
    .modal-contenido {
        margin: 5% auto;
        width: 95%;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .form-botones {
        flex-direction: column;
    }
    
    .pie-pagina {
        flex-direction: column;
        text-align: center;
        padding: 0.5rem 1rem;
    }
    
    .footer-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .modulo-info h1 {
        font-size: 1rem;
    }
    
    .modulo-descripcion {
        font-size: 0.5rem;
    }
    
    .session-time {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
    }
    
    .btn-cerrar-sesion, .btn-autenticar {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .estadisticas-modulo {
        padding: 0.6rem 0.8rem;
        gap: 0.3rem;
    }
    
    .stat-card {
        padding: 0.3rem 0.4rem;
        min-width: 40px;
    }
    
    .stat-number {
        font-size: 0.8rem;
    }
    
    .stat-label {
        font-size: 0.5rem;
    }
    
    .tarjeta-contenido {
        padding: 0.6rem;
    }
    
    .icono-tarjeta {
        width: 25px;
        height: 25px;
        font-size: 1rem;
    }
}
