.documentacion {
    margin: 20px auto;
    text-align: left;
}

.seccion {
    margin-bottom: 30px;
}

.seccion h2 {
    font-size: 1.6rem;
    color: #2d6a4f;
    margin-bottom: 10px;
    font-weight: bold;
}

.enlace-documentacion {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.enlace-documentacion li {
    margin: 10px 0;
}

.enlace-documentacion a {
    color: #2d6a4f;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 10px 20px;
    display: inline-block;
    position: relative;
    border-radius: 5px;
    background-color: rgba(64, 145, 108, 0.1);
    transition: all 0.3s ease;
}

.enlace-documentacion a::before {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #40916c;
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
}

.enlace-documentacion a:hover {
    background-color: #40916c;
    color: white;
}

.enlace-documentacion a:hover::before {
    width: 100%;
}