@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

.contenedor div ul li {
    list-style-type: square;
}

.lista-links {
    display: none;
    list-style-type: none;
    justify-content: center;
    align-items: center;
    padding: 0;
    flex-direction: column;
    margin-top: 0;
    width: 80%;
    margin-top: 8px;
    margin-bottom: 8px;
    gap: 5px;
    transition: max-height 0.4s ease-out;
}

.lista-links.fade-in {
    display: flex;
    animation: slideDown 0.5s ease-in-out forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-45%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lista-links a {
    display: flex;
    height: 65px;
    width: 100%;
    justify-content: flex-start;
}

.lista-links a p {
    margin: 0 0 0 35px;
    font-size: 18px;
    color: #ffffff;
    font-weight: 400;
}

.lista-links a img {
    margin-left: 20px;
    width: 25px;
    height: auto;
    filter: saturate(0%) brightness(1000%) contrast(100%);
}

.lista-links a:hover img {
    filter: none;
}

.btn-download {
    display: flex;
    align-items: center;
    height: 70px;
    width: 80%;
    font-weight: 500;
    border: 1px solid #000000;
    border-bottom: 0;
    background-color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    position: relative;
    padding-left: 45px;
}

.btn-download:hover,
.btn-download:focus {
    color: #04AF00;
    border: 1px solid #04AF00;
    border-bottom: 0;
    transition: all 0.7s ease-out !important;
}

.btn-download:active,
.btn-download.active {
    border: 1px solid #04af00;
}

.border-ult:hover {
    border: 1px solid #04AF00;
}

.btn-download:hover .flecha-img,
.btn-download:focus .flecha-img,
.btn-download:active .flecha-img {
    filter: invert(35%) sepia(76%) saturate(4063%) hue-rotate(100deg) brightness(92%) contrast(94%);
}

.border-ult {
    border-bottom: 1px solid #000000;
}

.columndes {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flecha-img {
    width: 25px;
    height: 12px;
    position: absolute;
    right: 45px;
    transition: transform 0.22s;
}

.rotate180 {
    transform: rotate(180deg);
}

.contenedor-mother {
    display: flex;
    width: 100%;
    flex-direction: column;
    margin-bottom: 50px;
}

.contenedor-mother p {
    color: #04AF00;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 50px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
}

.txt-title p {
    margin-top: 200px;
    font-size: 48px;
    margin-bottom: 50px;
}

.button_slide {
    border: 1px solid #04AF00;
    border-radius: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    background-color: #04AF00;
    cursor: pointer;
    box-shadow: inset 0 0 0 0 #04AF00;
    -webkit-transition: ease-out 0.5s;
    -moz-transition: ease-out 0.5s;
    transition: ease-out 0.5s;
}

.slide_right:hover {
    color: #04AF00;
    box-shadow: inset 2000px 0 0 0 white;
}

.slide_right:hover p {
    color: #04AF00;
}

@media (min-width: 320px) and (max-width: 664px) {
    .contenedor {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
    }

    .lista-links {
        position: relative;
        left: 0% !important;
        box-shadow: none;
        height: auto;
        top: 0;
    }

    .contenedor-mother p {
        width: 90%;
    }

    .lista-links {
        width: 87%;
    }

    .lista-links a {
        font-size: 14px;
    }

    .lista-links a p {
        font-size: 13px;
    }

    .btn-download {
        width: 94%;
        font-size: 14px;
        padding-left: 0px;
    }

    .flecha-img {
        width: 20px;
        height: 11px;
        margin-left: 25px;
        position: absolute;
        right: 10px;
        transition: transform 0.3s;
    }

    .contenedor-mother p {
        font-size: 26px;
    }

    .txt-title p {
        font-size: 38px;
        margin-bottom: 50px;
    }
}

@media (min-width: 665px) and (max-width: 1359px) {
    .lista-links {
        position: relative;
        left: 0% !important;
        box-shadow: none;
        height: auto;
        top: 0;
    }

    .btn-download {
        width: 84%;
    }

    .contenedor-mother p {
        width: 84%;
    }
}

.button-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}