@font-face {
    font-family: 'Anek Latin';
    src: url('../fonts/AnekLatin-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    /* Faixa de peso variável */
    font-style: normal;
}


@media (max-width:425px) {
    .bg-wblue {
        position: relative;
        background-image: url("../img/wblue.png");
        background-repeat: no-repeat;
        background-size: 140%;
        background-position: 129px -48px;
    }
    
}

@media (min-width: 576px) {
   
    .bg-wblue {
        position: relative;
        background-image: url("../img/wblue.png");
        background-repeat: no-repeat;
        background-size: 51%;
        background-position: 720px -110px;
    }
    
}

@media (min-width: 768px) {
    .bg-wblue {
        position: relative;
        background-image: url("../img/wblue.png");
        background-repeat: no-repeat;
        background-size: 80%;
        background-position: 251px -78px;
    }
    

}

@media (min-width: 992px) {

    .bg-wblue {
        position: relative;
        background-image: url("../img/wblue.png");
        background-repeat: no-repeat;
        background-size: 51%;
        background-position: 549px -56px;
    }
    
}

@media (min-width: 1440px) {
   
    .bg-wblue {
        position: relative;
        background-image: url("../img/wblue.png");
        background-repeat: no-repeat;
        background-size: 51%;
        background-position: 720px -110px;
    }
    

}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Anek Latin', sans-serif;
}

header {
    width: 100%;
}

.w-stylized img {
    width: auto;
    /* Ajuste conforme necessário */
    height: 1em;
    /* Mantém a altura semelhante ao texto */
    vertical-align: middle;
    /* Alinha com o texto */
}

.carousel-item img {
    width: 100%; /* Mantém a largura total do carrossel */
    max-height: 400px; /* Limita a altura */
    object-fit: contain; /* Evita cortes e preserva a proporção */
    margin: auto; /* Centraliza */
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1); /* Troca de branco para preto */
}

.event-box {
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
}

section {
    padding-top: 70px;
}

.oceanblue {
    color: #96A8FE;
}

.lightblue {
    color: #AFE5ED;
}

.lightgreen {
    color: #D9F855;
}

.strongred {
    color: #FF4F00;
}

.beige {
    color: #F9D1BB;
}

.bg-lightgreen {
    background-color: #D9F855;
}

.bg-oceanblue {
    background-color: #96A8FE;
}

.bg-strongred {
    background-color: #FF4F00;
}

.bg-lightblue{
    background-color: #AFE5ED;
}

.border-lightgreen {
    border-color: #D9F855 !important;
}

.border-strongred {
    border-color: #FF4F00 !important;
}

.border-oceanblue {
    border-color: #96A8FE !important;
}

.border-lightblue {
    border-color: #AFE5ED !important;
}

.card-containerprof {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.cardprof {
    position: relative;
    width: 250px;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;

}

.cardprof img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-titleprof {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #FF4F00;
    color: white;
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .card-container {
        flex-direction: column;
        align-items: center;
        /* Centraliza os cards */
    }
}