:root {
    --fc-azul: #0A3663;
    --fc-azul-hover: #062343;
    --fc-borde: #dbe0ea;
}

.fcc-container {
    width: 100%;
    margin: 30px 0;
}

/* Grillas principales */
.fcc-marcas-grid, .fcc-categorias-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    justify-content: center;
}

/* Cajas de Logos */
.fcc-marca-card {
    background: #fff;
    border: 2px solid var(--fc-borde);
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 120px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.fcc-marca-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fcc-marca-card:hover {
    border-color: var(--fc-azul);
    box-shadow: 0 8px 24px rgba(10, 54, 99, 0.12);
    transform: translateY(-2px);
}

/* Botones de Categorías creadas en el Panel */
.fcc-categoria-card {
    background: #fff;
    border: 1px solid var(--fc-borde);
    border-radius: 10px;
    width: 220px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    font-size: 16px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.fcc-categoria-card:hover {
    background-color: var(--fc-azul);
    color: #fff;
    border-color: var(--fc-azul);
    transform: translateY(-2px);
}

/* Botones de retorno */
.fcc-btn-volver {
    background: #e2e8f0;
    color: #475569 !important;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 30px;
    display: inline-block;
    transition: background 0.2s;
}

.fcc-btn-volver:hover {
    background: #cbd5e1;
}

/* Grilla de manuales PDFs */
.fcc-manuales-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.fcc-manual-card {
    background: #fff;
    border: 1px solid var(--fc-borde);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0,0,0,0.01);
}

.fcc-manual-card h3 {
    font-size: 18px;
    color: #222;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.fcc-btn-descarga {
    background: var(--fc-azul);
    color: #fff !important;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    display: block;
}

.fcc-btn-descarga:hover {
    background: var(--fc-azul-hover);
}

.fcc-indicador-texto, .fcc-no-results {
    text-align: center;
    color: #666;
    padding: 30px;
    font-size: 15px;
}

.fcc-no-results.fcc-proximamente {
    font-size: 24px;
    font-weight: bold;
    color: #a4b0c6;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 60px 20px;
}