:root {
    --purple-primary: #4a148c; /* Morado base */
    --rose-primary: #e91e63; /* Rosa/Rojo base */
    --rose-light: #fce4ec;
}

/* =========================================
   1. ESTRUCTURA PRINCIPAL Y CUADRÍCULA
   ========================================= */
.hondu-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    font-family: inherit;
}

.hondu-hero {
    text-align: center;
    margin-bottom: 40px;
}

.hondu-dimensions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.hondu-dimension-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.hondu-dimension-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    border-color: var(--purple-primary);
}

.hondu-card-icon {
    font-size: 2.5em;
    color: var(--purple-primary);
    margin-bottom: 15px;
}

.hondu-badge-dim {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: bold;
    margin-top: 15px;
}

/* =========================================
   2. CATÁLOGO INTERACTIVO (JS)
   ========================================= */
.hondu-catalogo-section {
    display: none;
}

.hondu-catalogo-active {
    display: block !important;
    animation: fadeIn 0.5s ease;
}

.hondu-btn-back {
    background: none;
    border: none;
    color: var(--purple-primary);
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 25px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hondu-btn-back:hover {
    text-decoration: underline;
}

.hondu-soluciones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.hondu-solucion-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.hondu-indicador-nombre {
    font-size: 0.9em;
    font-weight: bold;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hondu-herramienta {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--purple-primary);
    margin-bottom: 10px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   3. BOTONES DESPLEGABLES DE PDF 
   (El código que tenías guardado)
   ========================================= */
.hondu-meta-container {
    margin-top: 15px;
    border-top: 1px dashed #e2e8f0;
    padding-top: 15px;
}

.hondu-dropdown-btn {
    background-color: var(--purple-primary);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    width: 100%;
    text-align: left;
    font-size: 0.9em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hondu-dropdown-btn:hover {
    background-color: #402e75;
}

.hondu-chevron {
    transition: transform 0.3s ease;
}

.hondu-pdf-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hondu-pdf-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: #ffffff;
    border: 1px solid var(--rose-primary);
    border-radius: 8px;
    color: var(--purple-primary);
    text-decoration: none;
    font-size: 0.85em;
    font-weight: 600;
    transition: all 0.2s ease;
}

.hondu-pdf-item:hover {
    background-color: #fff0f2;
    border-color: var(--rose-light);
    color: var(--rose-primary);
    transform: translateX(4px);
}

.hondu-pdf-icon {
    color: var(--rose-primary);
    margin-right: 10px;
    font-size: 1.2em;
}