@font-face {
    font-family: 'Aribau Grotesk Regular TRIAL';
    src: url('./AribauGrotesk-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Aribau Grotesk Bold TRIAL';
    src: url('./AribauGrotesk-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Aribau Grotesk Light TRIAL';
    src: url('./AribauGrotesk-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}


body{
    background-color: #f2f5fc !important;
    font-family: 'Aribau Grotesk Regular TRIAL', sans-serif;
    text-decoration: none !important;
}

a{
    text-decoration: none !important;
    color: unset !important;
}
.banner {
    background: rgb(130, 147, 220);
    height: 250px;
    width: 100%;
    position: relative;
   
}
.banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background-image: url('../images/EsquinaBannerColor.svg');
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: contain;
}



.card {
    background-color: #ffffff !important;
    padding: 20px;
    cursor: pointer;
    transition: all 0.8s ease;
    box-shadow: 0 0 0 0 rgba(22, 30, 63, 0);
    border-radius: 20px
}

.card:hover {
    box-shadow: 0 0 30px 20px rgba(22, 30, 63, 0.12);
    transform: scale(1.02);
}

.card:hover .imageCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.7));
}

.card .titleCard{
    font-family: 'Aribau Grotesk Bold TRIAL', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #000000;
    margin-bottom: 27px;
    text-align: center;
}

.card .subtitleCard{
    font-family: 'Aribau Grotesk Light TRIAL', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #7e7e7e;
    line-height: 1.5;
    text-align: center;
    max-width: 250px;
}

.card .imageCard{
    width: 100%;
    height: 200px;
    position: relative;
}

.card .umasImage{
    background-image: url('../images/U+_MOBILE.jpg') !important;
    background-size:cover;
    background-position: top center;
    width: 100%;
    height: 200px;
}

.card .sigeImage{
    background-image: url('../images/SIGE_WEB_MOBILE.jpg') !important;
    background-size:cover;
    background-position: bottom center;
    width: 100%;
    height: 200px;
}

.titleBanner{
    font-family: 'Aribau Grotesk Bold TRIAL', sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: #ffffff;
}
.subtitleBanner{
    font-family: 'Aribau Grotesk Light TRIAL', sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.menuSuperior{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.menuItem{
    height: 100%;
    font-size: 14px;
    font-family: 'Aribau Grotesk Bold TRIAL', sans-serif;
    line-height: normal;
    color: #87919e !important;
    text-decoration: none;
    border-left: 2px solid rgba(197, 210, 226, 0.5);
    justify-content: center;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

/*
Responsive
*/

@media (min-width: 768px) {
    .banner{
        background-image: url('../images/flechasCetmin.png');
        background-position: 90% 10px;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .titleBanner{
        font-size: 50px;
    }
    .subtitleBanner{
        font-size: 16px;
    }

    .card .umasImage{
        height: 250px;
        background-image: url('../images/U+_DESKTOP.jpg') !important;
        background-size: cover;
    }
    .card .sigeImage{
        height: 250px;
        background-image: url('../images/SIGE_WEB_DESKTOP.jpg') !important;
        background-size: cover;
    }
}