/* Estilos del acordeón para Gestión Ambiental y Social */

.toggle-text {
    cursor: pointer;
    color: #ffffff;
    font-weight: bold;
    user-select: none;
    display: inline-block;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-top: -25px;
}

.toggle-text:hover {
    color: #ffffff;
}

.accordion-content {
    background-color: transparent;
    border-radius: 5px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
}

.accordion-content.expanded {
    max-height: 300px;
}

.arrow {
    transition: transform 0.3s;
    display: inline-block;
    margin-left: 10px;
}

.arrow.rotated {
    transform: rotate(180deg);
}

/* Estilos para el contenido */
.text-white {
    color: white !important;
}

.list-unstyled {
    list-style: none;
    padding-left: 0;
}

.text-sm {
    font-size: 0.875rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.pt-1 {
    padding-top: 0.25rem;
}

.ps-2 {
    padding-left: 0.5rem;
}

.text-decoration-none {
    text-decoration: none;
}

.footer__icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.accordion-content a:hover {
    text-decoration: underline !important;
}
