/* ESTILOS GENERALES */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Satoshi-variable';
    background: #161718;
    color: #fff;
}


.content{
    width: 98.5%;
    max-width: 430px;
    margin: auto;
    padding: 0 10px;
}

footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 50px !important;
    margin-bottom: 150px !important;
}

footer p{
    font-size: 10px;
    color: #888888;
}

footer img{
    width: 60px;
}

/* BOX MODEL */

.mt-1{
    margin-top: 15px !important;
}

.mb-1{
    margin-bottom: 15px !important;
}

.mt-2{
    margin-top: 25px !important;
}

.mb-2{
    margin-bottom: 25px !important;
}

.mt-3{
    margin-top: 35px !important;
}

.mb-3{
    margin-bottom: 35px !important;
}

.text-center{
    text-align: center;
}

.radious-1{
    border-radius: 8px !important;
}

.radious-2{
    border-radius: 10px !important;
}

/* BOTONES */

.btn, a.btn{
    color: #fff;
    text-decoration: none;
    padding: 15px;
    font-weight: 500;
    border-radius: 10px;
    background: #3d98ec;
    display: block;
    text-align: center;
}

.no-full{
    width: auto !important;
}

.btn i{
    margin-right: 6px;
    font-size: 1.02em;
}

.btn.btn-blue{
    background: #3d98ec;
}

.btn.btn-wsp{
    background: #25d366;
}

/* SEPARADOR */
.line{
    width: 100%;
    height: 14px;
    margin: 12px 0;
    background: #302f2f;
    border-radius: 10px;
}

/* =========================================== */
/* PERFIL HEADER */
/* =========================================== */

.banner{
    width: 95.5%;
    border-radius: 15px 15px 0px 0px;
    max-width: 420px;
    margin: auto;
    margin-top: 18px;
    height: 130px;
    background-image: linear-gradient(to right top, #553d96, #4960b7, #3880d3, #2da1e9, #3ac0fa);
}

.profile{
    position: relative;
    top: -90px;
}

.profile_image{
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.profile_image img{
    max-width: 160px;
    border-radius: 50%;
    position: relative;
}

.profile_data{
    text-align: center;
}

.profile_name{
    font-size: 1.8em;
}

.profile_title{
    font-weight: 300;
    font-size: 1.25em;
    margin-bottom: 20px;
}

.profile_description{
    font-weight: 100;
    margin-bottom: 20px;
    font-weight: 400;
}

.profile_icons{
    display: grid;
    grid-template-columns: 40px 40px 40px 40px;
    gap: 16px;
    justify-content: center;
    margin-bottom: 30px;
}

.profile_icons a{
    color: #fff;
    font-size: 32px;
}

.profile_buttons{
    display: flex;
    justify-content: center;
    /* grid-template-columns: auto auto; */
    gap: 12px;
}

/* ============================================ */
/* WIDGETS  */
/* ============================================ */
main{
    margin-top: -60px !important;
}


/* SECTIONS */

.db-section{
    margin: 40px 0;
}

.db-section p{
    font-size: 14px;
}

.db-title{
    margin-bottom: 15px;
}

.db-img-md{
    width: 100%;
}

.db-img-md img{
    width: 100%;
}

.db-img-md img{
    object-fit: cover;
    aspect-ratio: 4/4;
}

/* WIDGETS GENERALS*/

.db-widget{
    margin: 15px 0;
    border-radius: 10px;
}

/* WIDGET BOX */

.db-wg--full{
    width: 100%;
}

.db-wg--box{
    background: #232426;
    padding: 11px;
    border: 1px solid #2c2c2c;
}

.db-wg--box h3{
    font-size: 1.25em;
    font-weight: 500;
}

.text h3{
    font-size: 1.25em;
    margin-bottom: 8px;
}



/* BOXES */
.db-widget-boxes{
    display: grid;
    grid-template-columns: auto auto;
    gap: 15px;
}

.db-widget-boxes--scroll{
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: scroll;
    gap: 12px;
}

.db-widget-boxes--scroll::-webkit-scrollbar{
    height: 8px;
    background: none;
}

.db-widget-boxes--scroll::-webkit-scrollbar-thumb{
    background: #504e4e;
    border-radius: 20px;
}

.db-widget-boxes--scroll .db-wg--box{
    flex: 1 0 auto;
    width: 160px;
}



/* WIDGET BOX HORIZONTAL */
.db-wg--box-horizontal{
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    align-items: center;
    gap: 20px;
}

/*  WIDGET BOX FULL*/
.db-wg--box-full{
    width: 100%;
    padding: 30px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
}

.db-wg--box-full h3{
    text-align: center;
    font-size: 1.25em;
}

.db-wg--box-full p{
    text-align: center;
    font-weight: 200;
}

.db-wg--box-full .btn{
    padding: 8px 20px;
}


/* WIDGET VIDEO */
.db-wg-video iframe{
    border-radius: 10px;
}

/* WIDGET CIRCLES */
.db-wg-circles{
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 40px;
}

.db-circle{
    aspect-ratio: 4/4;
    border-radius: 50%;
    background: #d9d9d9;
}

/* WIDGET-CARDS */
.db-wg-cards{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: start;
}



.db-card{
    background: #232426;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    border: 1px solid #2c2c2c;
}

.db-card img{
    width: 100%;
    height: 120px;
    object-fit: cover;
    object-position: 50% 58%;
    border-radius: 10px 10px 0 0;
}

.db-card_content{
    padding: 16px;
    text-align: center;
}

.db-card_content{
    font-weight: 100;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.db-card_content .btn{
    padding: 5px 30px;
    margin-bottom: 8px;
}

/* CARDS SCROLL */

.db-wg-cards--scroll{
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: scroll;
    gap: 12px;
}

.db-wg-cards--scroll h3{
    font-size: 1.1em;
}

.db-wg-cards--scroll .db-card_content{
    padding: 10px 14px !important;
}

.db-wg-cards--scroll::-webkit-scrollbar{
    height: 8px;
    background: none;
}

.db-wg-cards--scroll::-webkit-scrollbar-thumb{
    background: #202020;
    border-radius: 20px;
}

.db-wg-cards--scroll .db-card{
    flex: 1 0 auto;
    width: 165px;
}

/* GALERY */
.db-gallery--lg{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.db-gallery--md{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12.5px;
}

.db-gallery--sm{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
}

.db-gallery_img, .db-gallery_img img{
    width: 100%;
    /* aspect-ratio: 4/5; */
    object-fit: cover;
    border-radius: 10px;
}

/* .db-gallery_img img{
    border: 1px solid #242424;
} */

@media (width < 410px){
    .btn, a.btn{
        width: 93%;
        padding: 10px;
    }

    .profile_buttons{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
}