.documentation-container {
    padding: 2rem 0;
}

.subcategory-title {
    font-size: 1.4rem;
    color: #34495e;
    margin-bottom: 0.5rem;
}

.subcategory-description {
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: transform 0.2s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-title {
    font-size: 1.2rem;
    color: var(--eset-link);
    margin-bottom: 1rem;
    font-weight: 400;
}

.manuals-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.manual-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ecf0f1;
}

.manuals-list .bn.green {
    padding: 0.3rem 0.8rem;
    font-size: 0.9rem;
    border: none;
    text-transform: uppercase;
}

.manual-name {
    flex: 1;
    color: #2c3e50;
}

.manual-size {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0 1rem;
}

.download-btn {
    background: #3498db;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s;
}

.download-btn:hover {
    background: #2980b9;
}

.icon-download {
    margin-right: 0.3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .manual-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .manual-size {
        margin: 0;
    }
}

/* Estilos para el acordeón */
.subcategory {
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.subcategory-title {
    padding: 1rem 1.5rem;
    margin: 0;
    background-color: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    color: #2c3e50;
    transition: background-color 0.3s ease;
}

.subcategory-title:hover {
    background-color: #e9ecef;
}

.first-subcategory {
    margin-top: 1.5rem;
}

.products-grid {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    transition: all 0.3s ease;
}

/* Estilos para las animaciones de las tarjetas */
.product-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.product-card.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Estilos base para las tarjetas de producto (asegúrate de que no sobrescriban los hover) */
.product-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: transform 0.2s;
}

.product-card:hover {
    transform: translateY(-5px);
}

/* Estilos para las secciones colapsables */
.documentation-section {
    margin-bottom: 2rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.section-title {
    padding: 1rem 0;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    color: #2c3e50;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #e0e0e0
}

.section-title .accordion-icon {
    font-weight: bold;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.documentation-section.collapsed .products-grid,
.documentation-section.collapsed .subcategory {
    display: none;
}

.documentation-section.collapsed .section-title .accordion-icon {
    transform: rotate(0deg);
}

.documentation-section:not(.collapsed) .section-title .accordion-icon {
    transform: rotate(135deg);
}

.documentation-section .bi-plus-circle::before {
    font-size: inherit;
}