:root {
    --blue-primary: rgb(0, 81, 215);
    --blue-secundary: rgb(0, 128, 242);
    --yellow: rgb(255, 168, 61);
    --white: #F2F2F2;
    --black: #000000;
    --gray: #4a4a4a;

    --bg-gradiend: linear-gradient(270deg, rgb(0, 128, 242) 95%, rgb(255, 168, 61) 5%);
}

/* * {
    font-family: 'Neometric Regular', sans-serif;
} */

header {
    box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.1);
}

header:has(~ .breadcrumb-full) {
    box-shadow: none;
}

.text-blue-primary {
    color: var(--blue-primary);
}
.text-blue-secundary {
    color: var(--blue-secundary);
}
.text-yellow {
    color: var(--yellow);
}
.text-white {
    color: var(--white);
}
.text-black {
    color: var(--black);
}
.text-gray {
    color: var(--gray);
}

.bg-blue-primary {
    background-color: var(--blue-primary);
}
.bg-blue-secundary {
    background-color: var(--blue-secundary);
}
.bg-yellow {
    background-color: var(--yellow);
}
.bg-white {
    background-color: var(--white);
}
.bg-black {
    background-color: var(--black);
}
.bg-gray {
    background-color: var(--gray);
}

.button {
    cursor: pointer;
    border: none;
    border-radius: 5px;
    color: var(--white);
    background: var(--bg-gradiend);

    transition: all .3s ease-out;
}

.button:hover {
    color: var(--white);
    opacity: 0.8;
}

.navbar {
    z-index: 1;
}

.navbar-brand {
    margin-right: 3rem;
}

.navbar-brand img {
    height: 5rem;
}

.navbar-nav .nav-link {
    color: var(--blue-primary);
    opacity: 0.8;
}

.navbar-nav .nav-link:hover {
    opacity: 1;
}

.navbar-nav .nav-link.active {
    font-family: 'Neometric Medium', sans-serif;
    color: var(--blue-primary);
}

.navbar-nav .nav-link.active {
    opacity: 1;
}

.navbar-nav .nav-link.show {
    color: var(--blue-primary);
}

.breadcrumb-item a {
    color: var(--blue-primary);
    opacity: 0.7;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    opacity: 1;
}

.hero-section {
    background-color: var(--blue-primary);
    border-radius: 0 0 1rem 1rem;
    /* height: 50vh; */
}

.hero-image {
    z-index: 0;
    margin-top: 0;
    border-radius: 1rem;
}

.hero-image img {
    border-radius: 1rem;
}

.cta-home {
    display: flex;
    flex-direction: column;
    justify-items: start;
    padding: 2rem 1rem;
    gap: 1rem;
}

.cta-home h1 {
    font-family: 'Neometric Medium Italic', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
}

.atividades-destaque {
    /* max-width: 80%; */
    background-color: var(--yellow);
    display: flex;  
    margin: 4rem auto;
    border-radius: 1rem
}

.atividades-icon {
    width: 100%;
}

.atividades-carrossel {
    width: 100%;
    border-radius: 1rem;
    background-color: var(--white);
}

.atividades-carousel-item {
    padding: 2rem;
}

.atividades-carrossel h4 {
    color: var(--blue-primary);
    font-size: 1rem;
}

.atividades-carrossel p {
    color: var(--black);
}

/* .noticias-destaques {
    background-color: var(--blue-primary);
} */

/* .noticias-destaques .card {
    background: var(--blue-primary);
    color: var(--white);
} */

.card-noticias figure{
    height: 270px;
    overflow: hidden;
    position: relative;
}

.card-noticias img {
    height: 270px;
    object-fit: cover;

    transition: transform .8s ease;
}

.card-noticias img:hover {
    transform: scale(1.1)
}

.card-noticias a {
    /* color: var(--white); */
    text-decoration: none;
}

/* .noticias-destaques h3 {
    font-weight: 500;
    color: var(--white);
    padding: 3rem 0 2rem 0;
    margin: 0;
} */

.noticias-destaques h2 {
    font-size: 1.3rem;
    font-weight: 500;

    transition: opacity .5s ease;
}

.card-noticias h2:hover {
    opacity: 0.8;
}

.noticias-destaques p {
    /* color: var(--color-tertiary); */
    line-height: 1.2rem;
    margin: .5em 0;
}

.galeria-card .card-cover {
    background-repeat: no-repeat;
    background-size: cover;
    border: none;
    height: 300px
}

.galeria-card .card-cover:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(12,35,56,0) 0%, rgba(13,32,48,1) 100%);
}

footer {
    background-color: var(--blue-primary);
    color: var(--white);
    border-radius: 4rem 4rem 0;
}

footer .container-fluid {
    background-color: var(--blue-secundary);
}

footer .container-fluid span a {
    color: var(--yellow);
    text-decoration: none;
}

footer .social-icons {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
}

footer .social-icons a {
    background-color: var(--white);
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

footer ul {
    font-weight: bold;
    margin: 0;
    padding: 0;
}

footer li {
    list-style: none;
    font-weight: 300
}


@media (min-width: 992px) {
    .hero-image {
        margin-top: -7rem;
    }

    .cta-home h1 {
        font-size: 3rem
    }

    .atividades-destaque {
        max-width: 80%;
    }
}

@media (min-width: 768px) {
    .cta-home {
        display: flex;
        flex-direction: column;
        justify-items: center;
        padding-left: 2rem;
        gap: 1rem;
        justify-content: center;
        align-items: flex-start;
    }

    .atividades-icon {
        width: 25%;
    }
    .atividades-carousel {
        width: 75%;
    }

    .atividades-carrossel h4 {
        font-size: 1.5rem;
    }
 }

/* Privacidade */

#privacidade section {
    padding: 0 3rem;
}

#privacidade h1 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    border-bottom: 3px solid #3498db;
    padding-bottom: 15px;
}
 
#privacidade h2 {
    font-size: 1.2rem;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 4px solid #3498db;
    padding-left: 15px;
}

#privacidade h3 {
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 10px;
}

#privacidade .definition-list {
    background: #ecf0f1;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}

#privacidade .definition-term {
    font-weight: bold;
    color: #2c3e50;
    margin-top: 15px;
    margin-bottom: 5px;
}

#privacidade .contact-info {
    background: #e8f4f8;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #3498db;
}

#privacidade .rights-list {
    background: #f0f8f0;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #27ae60;
}

#privacidade .legal-info {
    background: #fff3cd;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #ffc107;
    margin-top: 30px;
}

#privacidade .signature {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #f2f2f9;
    color: #000;
    border-radius: 5px;
}

#privacidade address {
    font-style: normal;
    line-height: 1.4;
}