.container-information {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 100px 20px;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    position: relative;
}

.section {
    flex: 1 1 45%;
    padding: 20px;
    background: linear-gradient(145deg, var(--background_card), var(--background_sidebar));
    border-radius: 15px;
    box-shadow: 0 10px 20px var(--shadow_default);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.3s ease,transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, var(--background_sidebar), var(--background_footer));
    clip-path: circle(0% at 50% 50%);
    transition: clip-path 0.5s ease, transform 0.5s ease;
    transform: translate(-50%, -50%) rotate(0deg);
    z-index: 5;
}

.section.active {
    opacity: 1;
    transform: translateY(0);
}

.section.active:hover::before {
    clip-path: circle(100% at 50% 50%);
    transform: translate(-50%, -50%) rotate(360deg);
}

.section.active:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px var(--shadow_default);
    background: linear-gradient(145deg, var(--background_card), var(--background_sidebar));
}

.section .content {
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section.active .content {
    opacity: 1;
    transform: translateY(0);
}

.section .content h2 {
    font-size: 2rem;
    color: var(--text_accent);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--text_accent);
    padding-bottom: 10px;
    position: relative;
}

.section.active:hover h2 {
    color: var(--text_inverse);
    border-bottom: 2px solid var(--text_inverse);
}

.section .content h2::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--text_accent);
    left: 0;
    bottom: -2px;
    transition: width 0.4s ease;
}

.section.active .content h2:hover::after {
    width: 100%;
}

.section .content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text_inverse);
    text-align: justify;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 10px;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section.active .content p {
    opacity: 1;
    transform: translateY(0);
}

.section .content p::-webkit-scrollbar {
    width: 8px;
}

.section .content p::-webkit-scrollbar-thumb {
    background-color: var(--background_hover);
    border-radius: 4px;
}

.section .content p::-webkit-scrollbar-thumb:hover {
    background-color: var(--background_footer);
}

/* Estilos para dispositivos móviles */
@media (max-width: 768px) {
    .container-information {
        padding: 20px 10px;
        gap: 15px;
    }

    .section {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }

    .section .content h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }

    .section .content p {
        font-size: 1rem;
        line-height: 1.6;
        max-height: 200px;
        overflow-y: auto;
        padding-right: 10px;
    }

    .section .content p::-webkit-scrollbar {
        width: 6px;
    }
}
