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

/* NAVBAR */
/* .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 18px 0;
    background: transparent;
    transition: .3s;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
} */

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 18px 0;
    background: transparent;
    transition: .3s;
}

/* Navbar ao rolar */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

/* Logos */
.logo-white,
.logo-color {
    height: 42px;
    transition: .3s;
}

/* Inicialmente mostra somente o branco */
.logo-color {
    display: none;
}

/* Quando rolar, troca os logos */
.navbar.scrolled .logo-white {
    display: none;
}

.navbar.scrolled .logo-color {
    display: block;
}

.nav-link {
    color: #fff;
    margin: 0 12px;
    font-size: 13px;
}

.nav-link:hover {
    color: #f5a623; /* cor do link ativo */
    font-weight:600;
}

.navbar.scrolled .nav-link {
    color: #222;
}

.btn {
    border-radius:80px;
    font-size:13px;
}

.btn-help {
    background: #f5a623;
    border-radius: 20px;
    padding: 6px 15px;
    color: #fff;
    font-size:13px;
}
.btn-help:hover {
    border:1px solid #f5a623;
    color: #fff;
}

/* HAMBURGER */
.navbar-toggler {
    border: none;
}

.hamburger {
    width: 25px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: .3s;
}

.navbar.scrolled .hamburger span {
    background: #000;
}

/* OFFCANVAS */
.offcanvas {
    width: 280px;
}

.menu-mobile {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.menu-mobile li {
    margin-bottom: 20px;
}

.menu-mobile a {
    font-size: 18px;
    text-decoration: none;
    color: #222;
}

/* HERO */
.carousel-item {
    height: 90vh;
    position: relative;
    margin-left:0;
    background:  url(../images/banner-hero.png) center;
}

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

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .7), rgba(0, 0, 0, .2));
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
}

.carousel-caption .container {
    max-width: 1140px;
}

.carousel-caption h1 {
    font-size: 40px;
    font-weight: 800;
}

.carousel-caption span {
    color: #f5a623;
}

/* NÚCLEOS */
.nucleos {
    background: #f4f6f9;
}

.nucleos small {
    color: #6cbf43;
    font-weight: 600;
    letter-spacing: .5px;
}

.nucleos h2 {
    font-weight: 700;
}

/* CARD */
.nucleo-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: .3s;
}

.nucleo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.nucleo-card i {
    font-size: 36px;
    margin-bottom: 10px;
}

.nucleo-card h6 {
    font-weight: 600;
    margin-bottom: 8px;
}

.nucleo-card p {
    font-size: 13px;
    color: #666;
}

/* cores dos ícones */
.icon-green {
    color: #4caf50;
}

.icon-blue {
    color: #0d6efd;
}

.icon-yellow {
    color: #f5a623;
}

.icon-purple {
    color: #6f42c1;
}

.icon-teal {
    color: #20c997;
}

.icon-red {
    color: #dc3545;
}

/* IMPACTO */
.impacto {
    position: relative;
    background: url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac') center/cover;
    padding: 60px 0;
    color: #fff;
}

.impacto::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(7, 28, 51, 0.92);
}

.impacto .container {
    position: relative;
    z-index: 2;
}

.impacto small {
    color: #8bd450;
    font-weight: 600;
}

.impacto h2 {
    font-weight: 700;
    margin: 10px 0 40px;
}

/* ITENS */
.impacto-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.impacto-item i {
    font-size: 36px;
}

.impacto-item h3 {
    margin: 0;
    font-weight: 700;
}

.impacto-item span {
    font-size: 13px;
    color: #ddd;
}

/* cores dos ícones */
.icon-yellow {
    color: #f5a623;
}

.icon-green {
    color: #7ed957;
}

.icon-blue {
    color: #4da3ff;
}

.icon-red {
    color: #ff5c7a;
}

/* NOTÍCIA DESTAQUE */
.noticia-destaque {
    background: #fff;
    padding: 60px 0;
}

.noticia-destaque .box {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
}

.noticia-destaque img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.noticia-destaque .conteudo {
    padding: 10px 20px;
}

.noticia-destaque small {
    color: #6cbf43;
    font-weight: 600;
    letter-spacing: .5px;
}

.noticia-destaque h3 {
    font-weight: 700;
    margin: 10px 0;
}

.noticia-destaque p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.noticia-destaque a {
    text-decoration: none;
    font-weight: 600;
    color: #0d6efd;
}

.noticia-destaque a i {
    margin-left: 5px;
    transition: .3s;
}

.noticia-destaque a:hover i {
    transform: translateX(5px);
}

/* NOTÍCIAS E AÇÕES */
.noticias {
    background: #f4f6f9;
}

.noticias small {
    color: #6cbf43;
    font-weight: 600;
}

.noticias h2 {
    font-weight: 700;
}

.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: .3s;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.news-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.news-body {
    padding: 16px;
}

.news-body h6 {
    font-weight: 600;
    margin: 10px 0 8px;
}

.news-body p {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.news-date {
    font-size: 12px;
    color: #999;
}

/* TAGS */
.tag {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 6px;
    color: #fff;
    display: inline-block;
}

.tag.green {
    background: #28a745;
}

.tag.blue {
    background: #0d6efd;
}

.tag.purple {
    background: #6f42c1;
}

.tag.orange {
    background: #fd7e14;
}

/* CTA */
.cta-section {
    background: #0b2c4d;
    padding: 30px 0;
    color: #fff;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-icon {
    font-size: 40px;
    color: #f5a623;
}

.cta-text h5 {
    margin: 0;
    font-weight: 700;
}

.cta-text p {
    margin: 0;
    font-size: 14px;
    color: #cfd8e3;
}

/* BOTÕES */
.cta-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #f5a623;
    border: none;
    color: #000;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 80px;
}
.btn-whatsapp:hover {
    border:1px solid #f5a623;
    color: #fff;
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 18px;
    border-radius: 80px;
}
.btn-outline:hover {
    border: 1px solid #f5a623;
}

/* RESPONSIVO */
@media(max-width:768px) {
    .cta-box {
        flex-direction: column;
        text-align: center;
    }
    .paddingMobile {
        padding:0 30px;
    }
}

/* FOOTER */
.footer {
    background: #071c33;
    color: #cfd8e3;
    padding: 60px 0 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo-text p {
    color: #cfd8e3;
    font-size: 12px !important;
}

.footer p {
    font-size: 10px;
    line-height: 1.6;
}

.footer h6 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 8px;
    font-size: 13px;
}

.footer ul li a {
    color: #cfd8e3;
    text-decoration: none;
    transition: .3s;
}

.footer ul li a:hover {
    color: #fff;
}

/* CONTATO */
.footer .contato i {
    margin-right: 5px;
}

/* SOCIAL */
.footer-social {
    margin-top: 15px;
}

.footer-social i {
    font-size: 18px;
    margin-right: 10px;
    cursor: pointer;
    transition: .3s;
}

.footer-social i:hover {
    color: #fff;
}

/* COPYRIGHT */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 15px;
    text-align: center;
    font-size: 13px;
}

/* melhorar grid em 5 colunas */
@media(min-width:992px) {
    .footer .col-lg-custom {
        width: 20%;
    }
}

/* WHATS */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
}