
/* Container principal del acordeón */
.accordion-custom {
    width: 768px;
    max-width: 100%;
    margin: 0 auto;
}

/* Elemento individual del acordeón */
.accordion-item-custom {
    background-color: var(--Gray-00);
    border: 1px solid var(--Primary-50);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.accordion-item-custom:last-child {
    margin-bottom: 0;
}

/* Header del acordeón */
.accordion-header-custom {
    margin: 0;
    background-color: var(--Gray-05);
    border-bottom: 1px solid var(--Gray-35);
}

.accordion-button-custom {
    width: 100%;
    height: 80px;
    padding: 0 1.5rem;
    font-size: 1.1rem;
    color: var(--Primary-100);
    background-color: transparent;
    border: none;
    border-radius: 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.2s ease;
}

/* Contenedor del icono del acordeón */
.accordion-icon-container {
    width: 32px;
    height: 32px;
    background-color: var(--Gray-20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    flex-shrink: 0;
}

/* Icono chevron dentro del contenedor */
.accordion-icon-chevron {
    width: 16px;
    height: 16px;
    color: var(--Primary-100);
    transition: transform 0.2s ease;
}

/* Rotación cuando el acordeón se abre */
.accordion-button-custom:not(.collapsed) .accordion-icon-chevron {
    transform: rotate(180deg);
}

.accordion-body-custom {
    padding: 0.5rem 1.5rem 1rem 1.5rem;
    color: var(--Gray-90);
    font-size: 17px;
    font-weight: 400;
    line-height: 125%;
}

/* Animación suave para el colapso */
.accordion-collapse-custom {
    transition: height 0.35s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .accordion-custom {
        width: 100%;
    }
    
    .accordion-button-custom {
        height: 60px;
        padding: 0 1rem;
        font-size: 1rem;
    }
    
    .accordion-body-custom {
        padding: 0.5rem 1rem 0.875rem 1rem;
    }
}
