/* ============================================================
   SIMBOLOGÍA.CSS - Estandarizado a la alineación de Misión
   ============================================================ */

/* --- SEGUIMIENTO (BREADCRUMBS) SUTIL --- */
/* Copia exacta de mision.css */
.sb-breadcrumb-subtle {
    padding: 0 !important;
    margin-bottom: 20px !important;
}

.sb-breadcrumb-subtle a, 
.sb-breadcrumb-subtle span,
.sb-breadcrumb-subtle li {
    font-size: 14px !important; 
    color: #686868;
    text-decoration: none;
}

.sb-breadcrumb-subtle .current,
.sb-breadcrumb-subtle b {
    color: #000000 !important;
    font-weight: 600 !important;
}

/* --- TARJETAS PRINCIPALES --- */
.sb-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    padding: 35px;
    margin-bottom: 30px;
}

.sb-card__title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 25px;
}

.sb-card__text {
    font-size: 14px;
    color: #686868;
    margin-bottom: 25px;
}

/* --- FILAS DE SIMBOLOGÍA --- */
.sb-symbol-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sb-symbol-item {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.sb-symbol-img {
    background: #ffffff;
    width: 100px;
    height: 100px;
    min-width: 100px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid #eeeeee;
}

.sb-symbol-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.sb-symbol-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.sb-symbol-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
    text-align: justify;
}

/* --- GRID DE COLORES --- */
.sb-colors {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.sb-color-card {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.sb-color-card__swatch {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
}

.sb-color-card__hex {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #B80201;
    margin-bottom: 6px;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 850px) {
    .sb-colors { grid-template-columns: 1fr; }
    .sb-symbol-item { flex-direction: column; text-align: center; }
    .sb-symbol-img { margin: 0 auto; }
}