/* Estilos para el formulario de registro */
.kumano-registro-container {
    max-width: 600px;
    margin: 0 auto;
}
.kumano-registro-titulo {
    text-align: center;
    color: #000144;
    margin-bottom: 30px;
    font-weight: 600;
}
.kumano-registro-subtitulo {
    font-size: 14px;
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}
/* Campo selector tipo persona */
.kumano-campo-selector {
    position: relative;
    margin-bottom: 15px;
}
.kumano-tipo-persona {
    background: white;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.kumano-arrow-down {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #000144;
}
.kumano-select-hidden {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
}
/* Campos de texto */
.kumano-campo {
    position: relative;
    margin-bottom: 15px;
}
.kumano-campo-row {
    display: flex;
    gap: 20px;
}
.kumano-campo-row .kumano-campo {
    flex: 1;
}
.kumano-campo input[type="text"],
.kumano-campo input[type="email"] {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    outline: none;
}
.kumano-check-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #000144;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.kumano-check-icon:after {
    content: "";
    display: block;
    width: 8px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 3px;
}
/* Campo de archivo */
.kumano-file-wrapper {
    position: relative;
}
.kumano-file-input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}
.kumano-file-custom {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.kumano-file-text {
    color: #999;
}
/* Texto de campos obligatorios */
.kumano-obligatorio {
    font-size: 12px;
    color: #000144;
    margin-top: 5px;
    margin-bottom: 20px;
}
/* Campo de textarea */
.kumano-campo-textarea {
    margin-bottom: 25px;
}
.kumano-campo-textarea textarea {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    min-height: 100px;
    resize: vertical;
    outline: none;
}
/* Checkboxes */
.kumano-checkboxes {
    margin-bottom: 30px;
}
.kumano-checkbox-wrap {
    display: flex;
    margin-bottom: 15px;
    position: relative;
}
.kumano-checkbox-wrap input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid #000144;
    background-color: white;
    cursor: pointer;
    position: relative;
    outline: none;
}
.kumano-checkbox-wrap input[type="checkbox"]:checked:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: #000144;
    border-radius: 50%;
}
.kumano-checkbox-wrap label {
    font-size: 12px;
    line-height: 1.4;
    color: #666;
    flex: 1;
}
/* Botón de envío */
.kumano-registro-submit {
    text-align: center;
}
.kumano-btn-registrar {
    background-color: #000144;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    min-width: 250px;
}
.kumano-btn-registrar:hover {
    background-color: #e57f42;
}
/* Mensajes de formulario */
.kumano-formulario-messages {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    display: none;
}
.kumano-mensaje-success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}
.kumano-mensaje-error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}
/* Estilos para campos con error */
.kumano-campo.error input[type="text"],
.kumano-campo.error input[type="email"],
.kumano-campo.error input[type="password"],
.kumano-campo.error input[type="tel"],
.kumano-campo.error input[type="file"],
.kumano-campo.error select,
.kumano-campo.error textarea {
    border-color: #ff0000 !important;
    background-color: #ffeeee !important;
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.3) !important;
    outline: 2px solid #ff0000 !important;
}
.kumano-campo.error input:focus,
.kumano-campo.error select:focus,
.kumano-campo.error textarea:focus {
    border-color: #ff0000 !important;
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.5) !important;
    outline: 2px solid #ff0000 !important;
}
.kumano-checkbox-wrap.error {
    border: 2px solid #ff0000 !important;
    background-color: #ffeeee !important;
    border-radius: 6px !important;
    padding: 10px !important;
    margin: 5px 0 !important;
    box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.2) !important;
}
.kumano-checkbox-wrap.error label {
    color: #ff0000 !important;
    font-weight: bold !important;
}
/* Estilos para preguntas de perfil de inversión con error */
.kumano-pregunta.error {
    border: 2px solid #ff0000 !important;
    background-color: #ffeeee !important;
    border-radius: 10px !important;
    padding: 15px !important;
    margin: 10px 0 !important;
    box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.2) !important;
}
.kumano-pregunta.error .kumano-label {
    color: #ff0000 !important;
    font-weight: bold !important;
}
.kumano-pregunta.error .kumano-opciones {
    border-left: 4px solid #ff0000 !important;
    padding-left: 15px !important;
    margin-top: 10px !important;
}
/* Estilos para las tarjetas de inversiones */
.kumano-cards-container {
    display: grid;
    grid-gap: 25px;
    margin-bottom: 30px;
    width: 100%;
}
.kumano-inversiones-2-cols {
    grid-template-columns: repeat(2, 1fr);
}
.kumano-inversiones-3-cols {
    grid-template-columns: repeat(3, 1fr);
}
.kumano-inversiones-4-cols {
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 992px) {
    .kumano-inversiones-3-cols,
    .kumano-inversiones-4-cols {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media (max-width: 576px) {
    .kumano-cards-container {
        grid-template-columns: 1fr;
    }
}
.kumano-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.kumano-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.kumano-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
}
.kumano-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #000144;
    border-radius: 5px;
    padding: 5px 10px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}
.kumano-card-rentabilidad {
    font-size: 16px;
}
.kumano-card-rentabilidad-text {
    font-size: 12px;
    font-weight: normal;
}
.kumano-card-lock {
    position: absolute;
    top: 75px;
	left: 20px;
    right: auto;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.kumano-card-estado {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    color: white;
}
.kumano-estado-abierto {
    background-color: #4CAF50; /* Verde */
}
.kumano-estado-completado {
    background-color: #9E9E9E; /* Gris */
}
.kumano-estado-en_progreso {
    background-color: #2196F3; /* Azul */
}
.kumano-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.kumano-card-title {
    color: #333;
    font-size: 22px;
    margin: 0 0 15px;
}
.kumano-card-text {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}
.kumano-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #eee;
}
.kumano-card-price {
    font-weight: bold;
    color: #000144;
    font-size: 16px;
}
.kumano-card-link {
    display: flex;
    align-items: center;
    color: #000144;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}
.kumano-card-link svg {
    margin-left: 5px;
    transition: transform 0.3s ease;
}
.kumano-card-link:hover {
    color: #e57f42;
}
.kumano-card-link:hover svg {
    transform: translateX(3px);
}
.kumano-inversiones-empty {
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    color: #666;
}
/* Versión más parecida a la imagen */
.kumano-card-title {
    color: #fff;
    font-size: 26px;
    margin: -60px 0 15px;
    position: relative;
    z-index: 2;
}
.kumano-card-text {
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}
.kumano-card-image {
    position: relative;
    height: 450px; /* Más alto para que quepa más contenido */
    background-size: cover;
    background-position: center;
}
.kumano-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
}
.kumano-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2;
    color: white;
    background: transparent;
}
.kumano-card-footer {
    border-top: none;
    padding-top: 15px;
}
.kumano-card-price {
    color: #fff;
    font-size: 16px;
}
.kumano-card-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}
.kumano-card-link svg {
    margin-left: 5px;
    transition: transform 0.3s ease;
}
.kumano-card-link:hover {
    color: #000144;
}
/**
 * Kumano Inversiones Archive CSS - Versión Actualizada
 */
/* Contenedor principal */
.kumano-archive-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 50px 15px;
}
.kumano-archive-title {
    text-align: center;
    font-size: 32px;
    color: #111;
    margin-bottom: 40px;
}
/* Barra de filtros */
.kumano-filters-bar {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.kumano-filter-item {
    flex: 1;
    min-width: 250px;
    position: relative;
}
.kumano-filter-item.tipologia input,
.kumano-filter-item.search input {
    width: 100%;
    padding: 12px 35px 12px 15px;
    border: 1px solid #000144;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    background-color: white;
}
.kumano-filter-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid #666;
    pointer-events: none;
}
.kumano-filter-icon:after {
    content: none;
}
/* Botón de búsqueda */
.kumano-filter-item.search {
    position: relative;
}
#search-button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #000144;
    cursor: pointer;
    padding: 5px;
}
/* Dropdown de ordenar */
.kumano-ordenar-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border: 1px solid #000144;
    border-radius: 25px;
    cursor: pointer;
    background-color: white;
}
.kumano-ordenar-trigger span:first-child {
    color: #777;
}
.kumano-arrow-down {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #000144;
}
/* Dropdowns */
.kumano-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 100;
    margin-top: 5px;
    display: none;
}
.kumano-dropdown.show {
    display: block;
}
.kumano-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.kumano-dropdown li {
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}
.kumano-dropdown li:hover {
    background-color: #f9f9f9;
    color: #000144;
}
/* Contenido principal */
.kumano-main-content {
    width: 100%;
}
/* No hay resultados */
.kumano-no-results {
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    text-align: center;
    color: #666;
    width: 100%;
    margin-top: 20px;
}
/* Paginación */
.kumano-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.kumano-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border-radius: 50%;
    text-decoration: none;
    color: #666;
    transition: background-color 0.3s;
}
.kumano-pagination .page-numbers:hover {
    background-color: #f9f9f9;
}
.kumano-pagination .current {
    background-color: #000144;
    color: white;
}
.kumano-pagination .prev,
.kumano-pagination .next {
    background-color: #f9f9f9;
}
/* Estilos específicos para tarjetas con plantilla moderna */
.kumano-card-estado {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    z-index: 10;
}
.kumano-estado-abierto {
    background-color: #4CAF50;
}
.kumano-estado-completado {
    background-color: #9E9E9E;
}
.kumano-estado-en_progreso {
    background-color: #2196F3;
}
/* Media queries */
@media (max-width: 992px) {
    .kumano-cards-container.kumano-inversiones-3-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .kumano-cards-container.kumano-inversiones-3-cols {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media (max-width: 576px) {
    .kumano-filters-bar {
        flex-direction: column;
    }
    .kumano-filter-item {
        width: 100%;
    }
}
/* Estilos actualizados para el formulario de login */
.kumano-login-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: transparent;
    box-shadow: none;
}
.kumano-login-titulo {
    text-align: center;
    color: #000144;
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 600;
    text-transform: uppercase;
}
.kumano-formulario-login {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.kumano-campo {
    position: relative;
}
.kumano-campo input {
    width: 100%;
    padding: 15px!important;
    border: 1px solid #eee!important;
    border-radius: 25px!important;
    font-size: 16px!important;
    transition: border-color 0.3s;
    background-color: white!important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05)!important;
}
.kumano-campo input::placeholder {
    color: #999;
}
.kumano-campo input:focus {
    border-color: #000144;
    outline: none;
}
.kumano-check-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: block;
    background-color: #000144;
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>');
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>');
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.kumano-campo input:valid ~ .kumano-check-icon {
    opacity: 1;
}
.kumano-remember-field {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 0;
    margin-left: 5px;
}
.kumano-remember-field input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid #000144;
    border-radius: 50%;
    position: relative;
    top: 2px;
}
.kumano-remember-field input[type="checkbox"]:checked {
    background-color: #000144;
    border-color: #000144;
}
.kumano-remember-field input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: white;
}
.kumano-remember-field label {
    font-size: 14px;
    color: #666;
    cursor: pointer;
    line-height: 1.4;
}
.kumano-obligatorio {
    color: #000144;
    font-size: 13px;
    margin-top: -10px;
    margin-bottom: 0;
    margin-left: 5px;
}
.kumano-login-submit {
    margin-top: 15px;
    text-align: center;
}
.kumano-btn-login {
    width: auto;
    padding: 12px 30px!important;
    background-color: #000144;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: none;
    margin: 0 auto;
    display: inline-block;
    box-shadow: 0 3px 10px rgba(0, 1, 68, 0.3);
}
.kumano-btn-login:hover {
    background-color: #e57f42;
}
.kumano-login-links {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    font-size: 14px;
}
.kumano-lost-password-link,
.kumano-register-link {
    color: #000144;
    text-decoration: none;
    transition: opacity 0.3s;
}
.kumano-lost-password-link:hover,
.kumano-register-link:hover {
    text-decoration: underline;
    opacity: 0.8;
}
/* Estilos para usuarios logueados */
.kumano-logged-in {
    text-align: center;
}
.kumano-login-message {
    margin-bottom: 30px;
    color: #666;
    font-size: 16px;
}
.kumano-login-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.kumano-btn-logout,
.kumano-btn-continuar {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.kumano-btn-logout {
    background-color: #f1f1f1;
    color: #333;
}
.kumano-btn-continuar {
    background-color: #000144;
    color: white;
    box-shadow: 0 3px 10px rgba(0, 1, 68, 0.3);
}
.kumano-btn-logout:hover,
.kumano-btn-continuar:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color:#fff;
}
/* Mensajes de formulario */
.kumano-formulario-messages {
    margin-top: 20px;
    padding: 15px;
    border-radius: 25px;
    display: none;
    text-align: center;
}
.kumano-mensaje-success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}
.kumano-mensaje-error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}
/* Campos agrupados en fila, similar al registro */
.kumano-campo-row {
    display: flex;
    gap: 20px;
    width: 100%;
}
.kumano-campo-row .kumano-campo {
    flex: 1;
}
/* Responsividad */
@media (max-width: 768px) {
    .kumano-campo-row {
        flex-direction: column;
    }
    .kumano-login-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}
/* Tabla de Mis Activos - CSS mejorado */
.kumano-assets-table {
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: white;
}
.kumano-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.kumano-table th {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #495057;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 12px;
    text-align: left;
    border: none;
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 10;
}
.kumano-table th:first-child {
    padding-left: 20px;
}
.kumano-table th:last-child {
    padding-right: 20px;
}
.kumano-table td {
    padding: 16px 12px;
    border: none;
    border-bottom: 1px solid #f1f3f4;
    color: #333;
    font-size: 14px;
    vertical-align: middle;
    transition: background-color 0.2s ease;
}
.kumano-table td:first-child {
    padding-left: 20px;
    font-weight: 600;
    color: #000144;
}
.kumano-table td:last-child {
    padding-right: 20px;
}
.kumano-table tbody tr {
    transition: all 0.2s ease;
}
.kumano-table tbody tr:hover {
    background-color: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.kumano-table tbody tr:last-child td {
    border-bottom: none;
}
/* Status badges */
.kumano-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}
.kumano-status-abierto {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}
.kumano-status-completado {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(107, 114, 128, 0.3);
}
.kumano-status-en_progreso {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}
/* Positive amounts */
.kumano-positive {
    color: #10b981;
    font-weight: 600;
    position: relative;
}
.kumano-positive::before {
    content: '+';
    margin-right: 2px;
}
/* Links in table */
.kumano-table a {
    color: #000144;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}
.kumano-table a:hover {
    color: #e57f42;
    text-decoration: underline;
}
/* Total row */
.kumano-total-row {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    font-weight: 700 !important;
    border-top: 3px solid #000144 !important;
}
.kumano-total-row td {
    color: #333 !important;
    font-size: 15px !important;
    padding: 20px 12px !important;
}
.kumano-total-row td:first-child {
    padding-left: 20px !important;
}
.kumano-total-row td:last-child {
    padding-right: 20px !important;
}
/* No data state */
.kumano-no-data {
    text-align: center !important;
    padding: 60px 20px !important;
    color: #6b7280 !important;
    font-style: italic;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}
.kumano-no-data::before {
    content: '📊';
    display: block;
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}
/* Responsive design */
@media (max-width: 1200px) {
    .kumano-table th:nth-child(4),
    .kumano-table td:nth-child(4),
    .kumano-table th:nth-child(5),
    .kumano-table td:nth-child(5) {
        display: none;
    }
}
@media (max-width: 992px) {
    .kumano-table th:nth-child(3),
    .kumano-table td:nth-child(3),
    .kumano-table th:nth-child(9),
    .kumano-table td:nth-child(9) {
        /* display: none; */
    }
    .kumano-table th,
    .kumano-table td {
        padding: 12px 8px;
        font-size: 13px;
    }
    .kumano-table th:first-child,
    .kumano-table td:first-child {
        padding-left: 12px;
    }
    .kumano-table th:last-child,
    .kumano-table td:last-child {
        padding-right: 12px;
    }
}
@media (max-width: 768px) {
    .kumano-assets-table {
        margin: 20px -15px 0;
        border-radius: 0;
    }
    .kumano-table {
        border-radius: 0;
        font-size: 12px;
    }
    .kumano-table th:nth-child(6),
    .kumano-table td:nth-child(6),
    .kumano-table th:nth-child(7),
    .kumano-table td:nth-child(7) {
        /* display: none; */
    }
    .kumano-table th,
    .kumano-table td {
        padding: 10px 6px;
    }
    .kumano-status {
        font-size: 10px;
        padding: 3px 8px;
    }
}
/* Scroll hint for mobile */
@media (max-width: 768px) {
    .kumano-assets-table::after {
        content: '← Desliza para ver más →';
        display: block;
        text-align: center;
        font-size: 11px;
        color: #6b7280;
        padding: 8px;
        background: #f9fafb;
        font-style: italic;
    }
}
/* Loading state */
.kumano-table-loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}
.kumano-table-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    border: 3px solid #f3f4f6;
    border-top: 3px solid #000144;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
/* Enhanced hover effects */
.kumano-table tbody tr {
    cursor: pointer;
}
.kumano-table tbody tr:hover .kumano-positive {
    color: #059669;
    transform: scale(1.05);
}
.kumano-table tbody tr:hover .kumano-status {
    transform: scale(1.05);
}
/* Print styles */
@media print {
    .kumano-assets-table {
        box-shadow: none;
        border-radius: 0;
    }
    .kumano-table th,
    .kumano-table td {
        border: 1px solid #ddd !important;
        padding: 8px !important;
    }
    .kumano-table tbody tr:hover {
        background: transparent !important;
    }
}
/* === Estilos para el perfil de inversión en el registro === */
.kumano-pregunta {
  margin-bottom: 1.5em;
}
.kumano-opciones {
  display: flex;
  gap: 2em;
  margin-top: 0.5em;
  flex-wrap: wrap;
}
.kumano-radio {
  display: flex;
  align-items: center;
  font-size: 1.1em;
  gap: 0.4em;
  cursor: pointer;
}
.obligatorio {
  color: #d00;
  font-weight: bold;
}
/* Timeline Multimedia Styles */
.kumano-timeline-multimedia {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e1e1e1;
}
.kumano-timeline-multimedia h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}
.kumano-timeline-videos,
.kumano-timeline-photos {
    margin-bottom: 25px;
}
.kumano-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 15px;
}
.kumano-video-embed {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}
.kumano-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.kumano-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}
.kumano-photo-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.kumano-photo-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.kumano-photo-link {
    display: block;
    width: 100%;
    height: 100%;
}
.kumano-photo-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .kumano-videos-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .kumano-photos-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .kumano-photo-item img {
        height: 150px;
    }
}
@media (max-width: 480px) {
    .kumano-photos-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 8px;
    }
    
    .kumano-photo-item img {
        height: 120px;
    }
}
