
@import url('https://fonts.googleapis.com/css2?family=Darker+Grotesque:wght@300..900&display=swap');

@font-face {
    font-family: 'Zodiak-Variable';
    src: url('/static/css/fonts/Zodiak-Variable.woff2') format('woff2');
    font-weight: 100 900;
    font-display: swap;
    font-style: normal;
}


/* ALL WEBSITE */
body{
    font-family: "Darker Grotesque", sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #25313CE5;
}

h1, h2, h3, h4, h5, h6{
    font-family: "Zodiak-Variable", sans-serif;
    font-weight: 540;
    margin: 35px 0px
}
h1{
    font-size: 32px;
}
h2{
    font-size: 28px;
}

h3, h4, h5, h6{
    margin: 0px
}



/* HEADER */

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
    color: #C9AE91;
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
    text-transform:uppercase;
    padding: 0 10px;
}

/* HOMEPAGE - banner */

.home-main-banner-background{
    height: 280px;
}
.home-main-banner-card{
    margin-top: -280px;
}

.home-main-card{
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    background-color: #fff;
}

.home-main-logos{
    text-align: center;
}

.stat-card {
    font-family: "Darker Grotesque", sans-serif;
    font-size: 16;
    font-weight: 500;
    color: #425166;
    display: flex;
    align-items: center;
    padding: 22px;
    background-color: #eaebed;
    border: 1px solid #eaebed;
    border-radius: 10px;
}
.stat-icon {
    background-color: #63A29B;
    border-radius: 50%;
    padding: 7px;
    margin-right: 14px;
    width: 45px;
    height: 45px;
    text-align: center;
    color: #fff;
    font-size: 20px;
}
.stat-text {
    font-size: 32px;
    line-height: 32px;
}
.chart{
    font-family: "Darker Grotesque", sans-serif;
    color: #151D48;
    height: 320px;
    font-weight: 600;
}

/* HOMEPAGE - casos */
.casos .card{
    border: none;
    padding: 10px;
}

.casos .card-body{
    padding: 0px;
}

.casos img{
    margin-bottom: 10px;
}

.casos small{
    font-family: "Darker Grotesque", sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 17px;
    font-weight: 500;
    color: #3a5453;
}

.casos p{
    font-family: "Darker Grotesque", sans-serif;
    font-size: 14px;
    line-height: 17px;
}

.casos .card-title{
    font-size: 22px;
    font-weight: 500;
    margin-top: 8px;
}

.text-highlight{
    color: #C9AE91;

}

/* FOOTER */

.footer-logos{
    text-align: right;
}

.footer-logos img{
    margin-left: 40px;
}

.footer-copyright{

    text-align: center;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    border-top: 1px solid #d2d2d21b;
}

/* PARTICIPANTES */
.custom-grid-5 {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
}

@media (max-width: 992px) {
    .custom-grid-5 {
    grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .custom-grid-5 {
    grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .custom-grid-5 {
    grid-template-columns: 1fr;
    }
}

.participantes img{
    border-radius: 20px;
}
.participantes .card{
    border: 0px;
}

.participantes .card-body{
    padding: 10px 0px;
}

.participantes .card-title{
    margin: 0px;
    font-size: 16px;
    color: #2F2F2F;
}

.participantes .card-text{
    text-transform: uppercase;
    color: #3A5453;
    font-size: 12px;

}

