/*
=========================================================
360 REVIEW BAR
NET360
=========================================================
*/

.net360-review-bar{

    display:flex;
    align-items:center;
    justify-content:space-between;

    width:100%;



    padding:26px 35px;

 

    gap:0;

}

/*-------------------------------------------------------
Título
-------------------------------------------------------*/

.net360-review-title{

    flex:0 0 260px;

    font-size:18px;

    font-weight:600;

    color:#3d3d3d;

    line-height:1.4;

}

/*-------------------------------------------------------
Cada plataforma
-------------------------------------------------------*/

.net360-review-platform{

    flex:1;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:18px;

    text-decoration:none;

    color:#222;

    padding:0 25px;

    transition:.30s;

}

.net360-review-platform:hover{

    transform:translateY(-3px);

}

.net360-review-platform:not(:last-child){

    border-right:1px solid #ececec;

}

/*-------------------------------------------------------
Logo
-------------------------------------------------------*/

.net360-review-logo{

    width:120px;

    min-width:120px;

    display:flex;

    justify-content:center;

    align-items:center;

}

.net360-review-logo img{

    display:block;

    width:auto;

    max-width:120px;

    max-height:42px;

    height:auto;

    object-fit:contain;

}

/*-------------------------------------------------------
Contenido
-------------------------------------------------------*/

.net360-review-content{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    justify-content:center;

}

/*-------------------------------------------------------
Score
-------------------------------------------------------*/

.net360-review-score{

    font-size:24px;

    font-weight:700;

    color:#303030;

    line-height:1.1;

}

/*-------------------------------------------------------
Reviews
-------------------------------------------------------*/

.net360-review-count{

    margin-top:4px;

    font-size:14px;

    color:#7d7d7d;

    line-height:1.2;

}

/*-------------------------------------------------------
Hover Logo
-------------------------------------------------------*/

.net360-review-logo img{

    transition:.30s;

}

.net360-review-platform:hover img{

    transform:scale(1.05);

}


/*=========================================================
TABLET
=========================================================*/

@media (max-width:1024px){

    .net360-review-bar{

        display:grid;

        grid-template-columns:1fr 1fr;

        gap:20px;

        padding:25px;

    }

    .net360-review-title{

        grid-column:1 / -1;

        text-align:center;

        margin-bottom:10px;

    }

    .net360-review-platform{

        border-right:none !important;

        justify-content:flex-start;

        border:1px solid #efefef;

        border-radius:12px;

        padding:18px;

    }

}
/*=========================================================
MOBILE
=========================================================*/

@media (max-width:767px){

.net360-review-wrapper{

    overflow-x:auto;

    overflow-y:hidden;

    scroll-snap-type:x mandatory;

    -webkit-overflow-scrolling:touch;

    scrollbar-width:none;

}

.net360-review-wrapper::-webkit-scrollbar{

    display:none;

}

.net360-review-bar{

    display:flex;

    flex-wrap:nowrap;

    width:max-content;

    gap:15px;

    padding:10px;

}

.net360-review-title{

    display:none;

}

.net360-review-platform{

    min-width:250px;

    max-width:250px;

    border:none !important;

    border-radius:16px;

    box-shadow:0 4px 18px rgba(0,0,0,.08);

    padding:20px;

    scroll-snap-align:start;

    background:#fff;

}

.net360-review-logo{

    width:90px;

    min-width:90px;

}

.net360-review-logo img{

    max-width:90px;

    max-height:34px;

}

.net360-review-score{

    font-size:22px;

}

.net360-review-count{

    font-size:13px;

}

}