/* ESTILOS GENERALES */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



:root{
    --primary: #e5872f;
    --secondary: #87a34c;
    --comlementary: #0056de;

    /* Dark */
    --background-dark: #161718;
    --widget-dark: #232426;
    --line_dark: #302f2f;
    --scroll-dark: #504e4e;

    /* Light */
    --background--light: #e8e8e9;
    --widget-light: #f5f5f5;
    --scroll-light: #dbdbdb;
    --line_light: #c5c5c5;
    

    /* Text */
    --text-white: #fff;
    --text-black: #000;
    --text-gray1: #888888;
}

body{
    font-family: 'Satoshi-variable';
    background: var(--background--light);
    color: #1b1b1b;
}

.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: var(--primary);
    display: block;
    text-align: center;
}

.no-full{
    width: auto !important;
}

.btn i{
    margin-right: 6px;
    font-size: 1.02em;
}

.btn.btn-blue{
    background: var(--primary);
}

.btn.btn-wsp{
    background: #3ed572;
}

/* SEPARADOR */
.line{
    width: 100%;
    height: 10px;
    margin: 16px 0;
    background: var(--line_light);
    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: #FD7D6D;
    background: linear-gradient(135deg, #FD7D6D, #FEDE50); */ /*default*/
    
    
    background: #E58830;
    background: linear-gradient(135deg, #E58830, #0057DC);
}

.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: 400;
    margin-bottom: 20px;
    color: #2b2b2b;
}

.profile_icons{
    display: grid;
    grid-template-columns: 40px 40px 40px 40px;
    gap: 13px;
    justify-content: center;
    margin-bottom: 30px;
}

.profile_icons a{
    color: #fff;
    font-size: 38px;
}

/* ----------------- */

.fa-square-facebook{
    color: #0866ff;
}

.fa-square-whatsapp{
    color: #25d366;
}

.fa-linkedin{
    color: #0a66c2;
}

.fa-qrcode{
    color: #424242;
}

/* ------------------ */

.profile_buttons{
    display: flex;
    justify-content: center;
    /* grid-template-columns: auto auto; */
    gap: 12px;
}

/* ============================================ */
/* WIDGETS  */
/* ============================================ */
main{
    margin-top: -90px !important; /* -60px default*/
}


/* 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;
    display: block;
    box-shadow: 0px 2px 4px 0px rgba(187, 187, 187, 0.57);
    margin-bottom: 8px; /* Exclusivo modo light*/
/* -webkit-box-shadow: 0px 3px 5px -2px rgba(0,0,0,0.57);
-moz-box-shadow: 0px 3px 5px -2px rgba(0,0,0,0.57); */
    
}

/* WIDGETS GENERALS*/

.db-widget{
    margin: 15px 0;
    border-radius: 10px;
}

/* WIDGET BOX */

.db-wg--full{
    width: 100%;
}

.db-wg--box{
    background: var(--widget-light);
    padding: 12px;
    border: 1px solid #dadada; /* Exlusivo para light*/
}


.db-wg--box h3{
    font-size: 1.25em;
    font-weight: 500;
}

.db-wg--box .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: 15px;
}

.db-widget-boxes--scroll::-webkit-scrollbar{
    height: 8px;
    background: none;
}

.db-widget-boxes--scroll::-webkit-scrollbar-thumb{
    background: var(--scroll-light);
    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: auto auto;
    gap: 15px;
    align-items: start;
}

.db-card{
    background: var(--widget-light);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.db-card img{
    width: 100%;
    height: 120px;
    object-fit: cover;
    object-position:  50% 80%;
    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: 15px;
}

.db-wg-cards--scroll::-webkit-scrollbar{
    height: 8px;
    background: none;
}

.db-wg-cards--scroll::-webkit-scrollbar-thumb{
    background: #504e4e;
    border-radius: 20px;
}

.db-wg-cards--scroll .db-card{
    flex: 1 0 auto;
    width: 160px;
}

/* GALERY */
.db-gallery--lg{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.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/4;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.db-gallery_img img{
    border: 1px solid #e0e0e0;
}


@media only screen and (max-width: 410px){
    .btn, a.btn{
        width: 95%;
        padding: 11px;
    }

    .profile_buttons{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
}