.servicios {
    /* background: linear-gradient(180deg,
            #0d0f0f,
            #0c1112); */
    border: 1px solid rgba(0, 255, 255, .25);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .03), 0 0 30px rgb(218 218 218 / 8%);
}

#servicios {
    position: fixed;
    left: 0%;
    display: flex;
    right: 0%;
    margin: 0 auto;
    width: 60%;
    height: 154px;
    border: solid 1px #444444;
    border-top: none;
    border-radius: 0px 0px 10px 10px;
    background-color: #0d0f0f;
    z-index: 999999;
    overflow: hidden;
    justify-content: center;
}

.menu-servicios {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}
.item {
    position: relative;
    top:0px;
    cursor: pointer;
    padding: 7%;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, .08);
    transition: all 0.5s ease;
}

.item:hover {
    /* background-color: #0c1011; */
    top:5px;
    transition: all 0.5s ease;
    scale: 0.98;
    box-shadow: inset 0 -71px 23px #11111287;
}
.item:last-child {
    border-right: none;
}

.icono {
    color: #00d7ff;
    font-size: 14px;
    margin-bottom: 1%;
    gap: 14px;
}

.item h3 {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 5px;
}

.item p {
    font-size: 12px;
    color: #8f98a2;
    margin-bottom: 2px;
}

.item a {
    text-decoration: none;
    color: #00d7ff;
    font-size: 28px;
    transition: .25s;
}

.item:hover a {
    transform: translateX(8px);
}

.btn-contenedor {
    display: flex;
    justify-content: center;
    /* margin-top: 25px; */
}

.btn-servicios {
    position: absolute;
    top: 110px;
    width: auto;
    /* height: 56px; */
    border-radius: 28px;
    border: 1px solid rgb(115 115 115 / 25%);
    background: #0d0d0e57;
    color: #d8d8d8;
    font-size: 14px;
    cursor: pointer;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 14px 3px 25px;
}

.btn-servicios span {
    color: #00d7ff;
    margin-left: 12px;
    font-size: 22px;
}

.btn-servicios:hover {
    background: #3e3f411c;
    border-color: #48484821;
}