h1 {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    color:#fff;
    font-size: 70px;
    font-weight: bolder;
}

.description-top{
    color:#fff;
    font-size: 14px;
}

.description-bot{
    color:#fff;
    font-size: 14px;
}







.resplandor-btn {
    position: relative;
    background-color: #373e4a;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    overflow: hidden;
}

.resplandor-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: left 0.7s ease-out, opacity 0.7s ease-out;
}

.resplandor-btn:hover::before {
    left: 100%;
    opacity: 1;
}






.shine_control {
    background: -webkit-linear-gradient(225deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0)) 0% 0% / 300% 300%;
    background-size: 500% auto;
    animation: gradient_move 2s ease forwards 1;
}

@keyframes gradient_move {
    0%{background-position: 0% 92%}
    50%{background-position: 100% 9%}
    100%{background-position: 0% 92%; }
}

