/* ***************************************** 
                Colores 
***************************************** */
:root{
    --black:        #000000;
    --white:        #FFFFFF;
    --purple-1:     #5F2167;
    --purple-2:     #4C1A52;
    --red-1:        #E11F2A;
    --red-2:        #DA291C;    
    --gray-1:       #FAFAFA;
    --gray-2:       #ECEFF6;
    --gray-3:       #E3E7F2;
    --gray-4:       #F6F7FB;
    --gray-5:       #FAFBFD;
    --gray-6:       #595E6D;
    --gray-7:       #474A56;
    --gray-8:       #373A43;
    --gray-9:       #31343C;
    --gray-10:      #2C2E35;
    --gray-11:      #1D1F24;
}

/* ***************************************** 
            Tipografías Colores 
***************************************** */
.fc-white{
    color: var(--white);
}
.fc-black{
    color: var(--black);
}
.fc-purple1{
    color: var(--purple-1);
}
.fc-gray1{
    color: var(--gray-1);
}
.fc-gray4{
    color: var(--gray-4);
}
.fc-gray5{
    color: var(--gray-5);
}
.fc-gray6{
    color: var(--gray-6);
}
.fc-gray7{
    color: var(--gray-7);
}
.fc-gray11{
    color: var(--gray-11);
}


/* ***************************************** 
            Tipografías Tamaños 
***************************************** */
.fs-12{
    font-size: 12px;
    line-height: 14px;
}
.fs-14{
    font-size: 14px;
    line-height: 16px;
}
.fs-16{
    font-size: 16px;
    line-height: 18px;
}
.fs-18{
    font-size: 18px;
    line-height: 20px;
}
.fs-24{
    font-size: 24px;
    line-height: 26px;
}
.fs-32{
    font-size: 32px;
    line-height: 34px;
}
.fs-40{
    font-size: 40px;
    line-height: 42px;
}

@media(max-width: 767px){
    .fs-32{
        font-size: 24px;
        line-height: 26px;
    }
    .fs-40{
        font-size: 32px;
        line-height: 34px;
    }
}


/* ***************************************** 
            Tipografías Weights 
***************************************** */
.fw-300{
    font-weight: 300;
}
.fw-600{
    font-weight: 600;
}
.fw-700{
    font-weight: 700;
}


/* ***************************************** 
                Backgrounds
***************************************** */
.purple-bg{
    background-color: var(--purple-1);
}
.white-bg{
    background-color: var(--white);
}
.gray1-bg{
    background-color: var(--gray-1);
}
.gray2-bg{
    background-color: var(--gray-2);
}
.gray4-bg{
    background-color: var(--gray-4);
}


/* ***************************************** 
                Radios
***************************************** */
.rad-840{
    border-top-left-radius: 8px;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 40px;
}


/* ***************************************** 
                Botones
***************************************** */
.purple-btn1{
    background-color: var(--purple-1);
    border: 1px solid var(--purple-1);
    color: var(--white)
}.purple-btn1:hover{
    background-color: var(--white);
    color: var(--purple-1)
}



/* ***************************************** 
                Globales 
***************************************** */
a{ 
    text-decoration: none !important; 
}
ul, ol{
    list-style-type: none;
}
.go-top{
    cursor: pointer;
}
body{
    font-family: 'Montserrat', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* ***************************************** 
                Header - Navbar
***************************************** */
#top-header{
    background-color: var(--gray-9);
}
#mainNavbar ul li:not(:last-child){
    border-right: 1px solid #D9D9D9;
}
#mainNavbar ul li a{
    padding: 5px 30px 5px 15px;
    color: var(--gray-11);
    font-weight: 500;
    font-size: 12px;
    transition: .3s ease all;
}
#mainNavbar ul li a:hover{
    color: var(--purple-1);
    font-weight: 600;
}
.dropdown-toggle::after {
    position: absolute;
    top: 8px;
    content: " ";
    margin-left: 5px;
    border: none;
    width: 12px;
    height: 12px;
    background-image: url("../images/icons/arrow-down.png");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}



/* ***************************************** 
                Breadcrumb 
***************************************** */
#breadcrumb{
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
#breadcrumb li:not(:last-child)::after{
    content: "/";
    margin: 0 7px;
    font-size: 12px;
}
#breadcrumb li:last-child a{
    color: var(--gray-11);
    font-weight: 700;
}
#breadcrumb li a{
    color: var(--gray-6);
    font-size: 12px;
}
#breadcrumb li a:hover{
    color: var(--gray-11);
}


/* ***************************************** 
                Títulos Banner 
***************************************** */
.titulos-banner{
    background-color: var(--purple-2);
    background-image: url("../images/circle-bg.svg");
    background-size: 150px;
    background-position: right top;
    background-repeat: no-repeat;
    border-top-left-radius: 8px;
    border-top-right-radius: 56px;
    border-bottom-left-radius: 56px;
    border-bottom-right-radius: 8px;
}

@media(max-width: 767px){
    .titulos-banner{
        background-color: var(--purple-2);
        background-image: none;        
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
}


/* ***************************************** 
            Card y Textos laterales 
***************************************** */
.grow-title-hover{
    font-size: 24px;
    color: var(--gray-11);
    font-weight: 600;
    transition: .5s ease all;
}
.grow-title-hover:hover{
    font-size: 32px;
    color: var(--purple-1);
    cursor: context-menu;
}

@media(max-width: 767px){
    .grow-title-hover{
        font-size: 20px;
        color: var(--gray-11);
        font-weight: 600;
        transition: .5s ease all;
    }
    .grow-title-hover:hover{
        font-size: 24px;
        color: var(--purple-1);
        cursor: context-menu;
    }
}


/* ***************************************** 
            Counter - Squares 
***************************************** */
.counter-square{
    height: 242px;
    border-top-left-radius: 8px;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius:40px;
}
@media(max-width: 767px){
    .counter-square{
        height: 161px;
    }
}


/* ***************************************** 
                Beneficios
***************************************** */
.beneficios .purple-square{
    height: 200px;
    width: 238px;
    border-top-left-radius: 8px;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 40px;
}
@media(max-width: 767px){
    .beneficios .purple-square{
        width: 200px;
    }
    .beneficios .masonry-img{        
        border-top-left-radius: 8px;
        border-top-right-radius: 40px;
        border-bottom-right-radius: 8px;
        border-bottom-left-radius: 40px;
    }
    .beneficios .masonry-img.uno{
        width: 100px;
        height: 200px;
        object-fit: cover;
    }
    .beneficios .masonry-img.dos{
        width: 100px;
        height: 200px;
        object-fit: cover;
    }
    .beneficios .masonry-img.tres{
        width: 200px;
        height: 200px;
        object-fit: cover;
    }
}


/* ***************************************** 
                Nuestras Marcas
***************************************** */
.card-marcas{
    background-color: transparent;
}
.card-marcas .card-body{
    background-color: var(--gray-2);
    height: 220px;
    border: none;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 8px;
}
@media(max-width: 767px){
    .nuestras-marcas .titulo{
        font-size: 24px;
    }
    .card-marcas .card-body{
        height: auto;
    }
}


/* ***************************************** 
                Contacto
***************************************** */
.square-contact{
    height: 345px;
}
.cform-1 label{
    color: var(--gray-11);
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 5px;
}
.cform-1 .form-control{
    border: 1px solid var(--gray-3);
    background-color: var(--gray-1);
}
.cform-1 textarea{
    resize: none;
}
.cform-1 .input-group-text {
    color: var(--gray-8);
    font-weight: 500;
    font-size: 14px;
    padding: .375rem 0 .375rem .75rem;
    background-color: var(--gray-1);
    border: 1px solid var(--gray-3);
    border-right: none;
}
.cform-1 .celular{
    border-left: none;
}
@media(max-width: 767px){
    .send-form{
        width: 100%;
    }
}



/* ***************************************** 
                Footer 
***************************************** */
footer{
    background-color: var(--gray-8);
}
.ir-arriba{
    background-color: var(--gray-10);
}
.ir-arriba a:hover{
    color: var(--white);
}
footer .separador{
    border-top: 1px solid #808391;
}

.rowFooter{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.rowFooter .tit-menu-footer{
    font-size: 14px;
    font-weight: 700;
    font-weight: bold;
    color: var(--white);
}
.menu-footer li a{
    color: var(--white);
    font-size: 12px;
}

footer .list-terminos{
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .list-terminos li:not(:last-child)::after{
    content: "|";
    margin: 0 10px;
    color:var(--white);
}
footer .list-terminos a{
    color: var(--white);
    font-weight: 600;
    font-size: 12px;
}

@media(max-width: 767px){
    .rowFooter{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}