@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
/* css imports */
@import url('base.css');
@import url('header.css');
@import url('rodape.css');
@import url('banner.css');
@import url('carrossel.css');
@import url('sobre.css');



/* POSTS INSTAGRAM ; SOCIAL BALOOM */

@keyframes GlowUp {
    0% {
        transform: scale(1) translateY(-10px);

        filter: blur(1px);
        opacity: .8;
    }
    100% {
        transform: scale(1.04);
        filter: blur(1.5px);
        opacity: .6;
        transform: scale(1) translateY(0);
    }
}
.social-container {
    padding: 100px 0 0;
    position: relative;
    
}
.social-container .container{
    position: relative;
    z-index: 10 ;
}

.social-title {
    color: #fe0096;
    font-size: 2rem;
}

.social-at {
    color: #001f7f;
    font-size: 1.6rem;
}

.social-icons svg {
fill: #001f7f;
width: 80%;
}
.social-container .social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.social-container .social-link{
    border: 1px solid #001f7f;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .social-title{
        font-size: 30px;
    }
    .social-at{
        font-size: 25px;
    }
}


/* NOTÍCIAS */
.sec-news__wrapper {
    background: #001952;
    background: linear-gradient(12deg,rgba(0, 25, 82, 1) 0%, rgba(91, 144, 251, 1) 39%, rgba(77, 153, 241, 1) 53%, rgba(23, 102, 206, 1) 100%);
    padding: 1.5rem;
    border-radius: 1rem;
    color: #fff;
}

.sec-news header {
    text-align: center;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 900;
} 
.sec-news .title {
    color: var(--brand-pink);
    text-transform: uppercase;
    border-bottom: 1px solid var(--brand-pink);
    padding-bottom: .25rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.news-card {
    margin-bottom: 2rem;
}
.news-card__img {
    border-radius: 12px; 
    overflow: hidden;
    margin-bottom: .5rem;
    position: relative;
    height: 0;
    width: 100%;
    padding-top: 62.5%;
}
.news-card__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
 
.card-news__title {
    font-size: .85rem;
    font-weight: 400;
    line-height: 1.2;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    padding: 1rem;
    margin: 0;
    background: rgba(0, 0, 0, .7);
}

@media (min-width: 768px) {
    .news-card {
        max-width: calc(100% / 3);
    }
}