/* ==========================================================================
   COMPONENTE: Summary - Evidencias (Estilo Panel Espacial Minimalista)
   ========================================================================== */

/* Contenedor principal con la altura fija solicitada */
.space-panel-container {
    box-sizing: border-box;
    height: 347px;
    padding: 24px;
    background: var(--obsidiana);
    color: #e2e8f0;
    font-family: system-ui, -apple-system, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #1e293b;
    border-radius: 11px;
    position: relative;
    overflow: hidden;
}

/* Header de la sección (Título y Subtítulo) */
.cta-header {
    margin-bottom: 16px;
}

.section-sub {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
}

/* Distribución de los 3 botones en columnas */
.iconos-horizontales {
    display: flex;
    gap: 12px;
    height: 100%;
    max-height: 93%;
}

/* El Botón / Tarjeta Individual (Ocupa igual espacio cada uno) */
.icon-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px 12px;
    background: rgba(30, 41, 59, 0.3); /* Transparencia tecnológica */
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    color: #94a3b8;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    
    /* Detalle sutil de nave: puntas ligeramente biseladas */
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}

/* Texto debajo del ícono */
.icon-item span {
    font-size: 0.75rem;
    line-height: 1.4;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Contenedor de íconos para gestionar el cambio posicional */
.icon-wrapper {
    font-size: 1.5rem;
    margin-bottom: 14px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* ==========================================================================
   CONTROL DE VISIBILIDAD DE ÍCONOS (Estado por defecto - No Hover)
   ========================================================================== */
.icon-wrapper .icon-default {
    width: 3rem;
    display: inline-block !important; /* Se muestra el original */
}

.icon-wrapper .icon-hover {
    width: 3.3rem;
    display: none !important; /* Se oculta estrictamente el de reemplazo */
}

/* ==========================================================================
   EFECTOS HOVER (Interfaz de Usuario Activa)
   ========================================================================== */

.icon-item:hover {
    background: rgba(56, 189, 248, 0.06); /* Destello cian de fondo */
    border-color: rgba(56, 189, 248, 0.4);
    color: #ffffff;
    /* Resplandor sutil de cabina */
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.15);
    transform: translateY(-2px);
}

/* Al pasar el cursor, ocultamos el ícono por defecto... */
.icon-item:hover .icon-default {
    display: none !important;
}

/* ... y mostramos el ícono de hover con el estilo tecnológico */
.icon-item:hover .icon-hover {
    display: inline-block !important;
    color: #38bdf8; 
    filter: drop-shadow(0 0 4px rgba(56, 189, 248, 0.6));
}

.icon-item:hover span {
    color: #ffffff;
}