/* Reset básico e fontes */
:root {
    --primary: rgb(177 146 56);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.mt-6 {
    margin-top: 10rem !important;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Navbar */
.navbar {
    background-color: #fff;
    color: white;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.logo img {
    height: auto;
    width: 200px;
    display: block;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    color: var(--primary);
    text-decoration: none;
    padding: 5px 0;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.nav-links a:hover {
    border-color: var(--primary);
    letter-spacing: 2px;
}

/* Botão WhatsApp */
.whatsapp-button {
    background-color: #00b050;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease;
    margin-left: 10px;
}

.whatsapp-button:hover {
    transform: scale(1.05);
    filter: brightness(0.9);
    color: #fff;
}


/* Botão Hambúrguer */
.hamburger-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.hamburger-button .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.hamburger-button .bar:last-child {
    margin-bottom: 0;
}

.hamburger-button.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-button.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-button.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {

    .hamburger-button {
        display: block;
        align-self: flex-end;
        margin-bottom: 10px;
    }

    .navbar-right {
        position: relative;
        display: flex;
        width: auto;
    }

    .navbar-right.active {
        flex-direction: column;
        align-items: flex-end;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        max-width: none;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        border-radius: 0 0 5px 5px;
        padding: 20px;
        box-sizing: border-box;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
    }

    .nav-links.active {
        display: flex;
        transform: translateX(0);
        width: 100px !important;
        height: auto;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .nav-links a {
        padding: 10px 0;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #eee;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .whatsapp-button {
        display: none;
    }

    .nav-links.active .whatsapp-button-mobile {
        display: flex;
        margin-top: 20px;
        justify-content: center;
    }
}

/* Carrossel */
.carousel-container {
    position: relative;
    width: 100%;
    height: 80vh;
    margin-top: 70px;
    overflow: hidden;
    background-color: #333;
}

.carousel-slides {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.7s ease-in-out;
}

.slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.slide-content {
    position: relative;
    color: white;
    z-index: 10;
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 5px 5px 8px rgb(177 146 56);
    border-bottom: 3px solid white;
    display: inline-block;
    padding-bottom: 10px;
    color: white;
}

.btn-saiba-mais {
    background-color: var(--primary);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    display: inline-block;
    margin-top: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;

    /* ANIMAÇÃO ADICIONADA */
    animation: pulse 1.5s infinite;
}

.btn-saiba-mais:hover {
    transform: translateY(-2px);
    filter: brightness(0.9);
    color: white;

    /* Pausa a animação no hover para um efeito mais suave */
    animation-play-state: paused;
}

/* KEYFRAMES PARA A ANIMAÇÃO DE PULSAR */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.carousel-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 15;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: white;
}

/* Produtos */
.product-details-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
    color: #f0f0f0;
}

.details-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.product-info {
    flex: 1;
    max-width: 50%;
}

.product-info h2 {
    font-size: 2.8rem;
    color: #000;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.product-info p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #000;
}

.btn-orcamento {
    background-color: var(--primary);
    color: white;
    padding: 14px 28px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-orcamento:hover {
    transform: translateY(-3px);
    filter: brightness(0.8);
    color: white;
}

.product-gallery {
    flex: 1;
    max-width: 50%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* CTA */
.cta-section {
    background-color: #1d1b1c;
    padding: 4rem 2rem;
}

.cta-card {
    background-color: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 10px 10px 10px rgb(255 255 255 / 36%);
}

.cta-card h2 {
    font-size: 2.2rem;
    color: #000;
    margin-bottom: 2rem;
}

.btn-cta-whatsapp {
    background-color: var(--primary);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-cta-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    filter: brightness(0.8);
    color: white;
}

@media (max-width: 900px) {
    .details-container {
        flex-direction: column;
        gap: 3rem;
    }

    .product-info,
    .product-gallery {
        max-width: 100%;
    }

    .product-info h2 {
        font-size: 2.2rem;
    }

    .cta-card h2 {
        font-size: 1.8rem;
    }
}

/* Galeria de Produtos */
#secao-produtos {
    background-color: #212529;
    padding: 60px 0;
}

.titulo-secao {
    color: #fff;
    margin-bottom: 40px;
    font-weight: 700;
}

.card-produto {
    background-color: #343a40;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-produto:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.card-produto img {
    border-radius: 5px;
    margin-bottom: 20px;
}

.card-produto .titulo-produto a {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.card-produto .titulo-produto a:hover {
    color: var(--primary);
}

.card-produto .btn-saiba-mais {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
    font-weight: bold;
    margin-top: 20px;
    padding: 10px 30px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.card-produto .btn-saiba-mais:hover {
    background-color: #157347;
    border-color: #146c43;
}

/* --- Estilos da Seção de Produtos (da etapa anterior) --- */
#secao-produtos {
    background-color: #ffffff;
    padding: 60px 0;
}

.titulo-secao {
    color: #fff;
    margin-bottom: 40px;
    font-weight: 700;
}

.card-produto {
    background-color: #ffffff;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);

}

.card-produto:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.card-produto img {
    border-radius: 5px;
    margin-bottom: 20px;
    width: 100%;
    height: auto;
}

.card-produto .titulo-produto a {
    color: #000;
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.card-produto .titulo-produto a:hover {
    color: var(--primary);
}

.card-produto .btn-saiba-mais {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
    font-weight: bold;
    margin-top: 20px;
    padding: 10px 30px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.card-produto .btn-saiba-mais:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Sobre Nós */
#secao-sobre-nos {
    background-color: #1d1b1c;
    padding: 60px 0;
}

.container-sobre-nos {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    color: #000;
}

.video-container {
    width: 100%;
    padding-top: 177.77%;
    position: relative;
    background-color: #212529;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;

}

.conteudo-sobre-nos {
    margin-bottom: 30px;
}

.conteudo-sobre-nos:last-child {
    margin-bottom: 0;
}

.titulo-sobre-nos {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.subtitulo-sobre-nos {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #444;
}

.texto-sobre-nos {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

.lista-diferenciais {
    list-style: none;
    padding-left: 0;
}

.lista-diferenciais li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
    display: flex;
    align-items: flex-start;
}

.lista-diferenciais li i {
    color: #28a745;
    margin-right: 10px;
    font-size: 1.2rem;
    flex-shrink: 0;
    padding-top: 0.2em;
}

@media (max-width: 991px) {

    .container-sobre-nos {
        padding: 25px;
    }

    .titulo-sobre-nos {
        font-size: 1.8rem;
        text-align: center;
    }

    .subtitulo-sobre-nos {
        font-size: 1.5rem;
        text-align: center;
        margin-top: 20px;
    }

    .texto-sobre-nos {
        font-size: 1rem;
        text-align: justify;
    }

    .lista-diferenciais li {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 15px;
        flex-wrap: wrap;
        align-items: center;
    }

    .lista-diferenciais li strong {
        display: block;
        width: 100%;
        margin-bottom: 5px;
        font-size: 1.05rem;
    }

    .lista-diferenciais li i {
        font-size: 1.1rem;
        margin-right: 8px;
        align-self: flex-start;
        padding-top: 0;
    }

    .lista-diferenciais li {
        padding-left: 0;
    }

    .col-lg-4.mb-4.mb-lg-0 {
        margin-bottom: 20px !important;
    }
}

@media (max-width: 576px) {

    .container-sobre-nos {
        padding: 15px;
    }

    .titulo-sobre-nos {
        font-size: 1.6rem;
    }

    .subtitulo-sobre-nos {
        font-size: 1.3rem;
    }

    .texto-sobre-nos {
        font-size: 0.95rem;
    }

    .lista-diferenciais li {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .lista-diferenciais li strong {
        font-size: 1rem;
    }
}

/* Redes Sociais */
#secao-sociais {
    padding: 60px 0;
    text-align: center;
    background-color: #1d1b1c;
}

.titulo-sociais {
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.lista-sociais {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
    list-style: none;
}

.link-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    color: #fff;
    font-size: 32px;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.link-social:hover {
    filter: brightness(0.8);
    color: #fff;
    transform: translateY(-5px);
}

/* Contatos */
#secao-contato {
    background-color: #fff;
    padding: 60px 0;
    color: #fff;
}

#secao-contato .row {
    align-items: stretch;
}

.mapa-container {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.mapa-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.info-container {
    background-color: #1d1b1c;
    padding: 40px;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.info-item p,
.info-item a {
    font-size: 1rem;
    margin: 0;
    color: #f8f9fa;
    text-decoration: none;
    line-height: 1.5;
}

.info-item a:hover {
    text-decoration: none;
    letter-spacing: 1px;
}

/* Btn WhatsApp */
#whatsapp .wtsapp:focus {
    border: 0;
    outline: 0;
}

#whatsapp .wtsapp {
    position: fixed;
    transition: all .5s ease;
    background: #25d366;
    display: block;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    border-radius: 50px;
    border-right: 0;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    border: 0;
    z-index: 999;
    width: 60px;
    height: 60px;
    line-height: 61px;
    left: 25px;
    bottom: 25px;
}

#whatsapp .wtsapp:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

/*** Footer ***/
.bg-footer {
    background-color: #707070 !important;
}

.bg-footer2 {
    background-color: #252525 !important;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #fff;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: #ffffff;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .mt-m-0 {
        margin-top: 0 !important;
    }
}

/* Páginas Internas */
body.pg-interna {
    font-family: 'Roboto', sans-serif;
    background-color: #212529;
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 15px 15px;
    color: #f8f9fa;
}

#pagina-produto {
    padding: 120px 0 60px 0;
}

.titulo-produto {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.descricao-produto {
    color: #ced4da;
    max-width: 800px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.img-principal-container {
    height: 100%;
}

#secao-video {
    padding: 60px 0;
    text-align: center;
    background-color: #212529;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.link-canal {
    display: inline-block;
    margin-top: 25px;
    color: #ced4da;
    font-size: 1.1rem;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.link-canal:hover {
    color: #ffffff;
    border-color: #ffffff;
}

.text-primary2 {
    color: var(--primary);
}

.btn2 {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: var(--primary);
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: #cec7c700;
    border: 1px solid var(--primary);
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: 0px;
}

.btn2:hover {
    color: #fff;
    border-color: transparent;
}

.py-51 {
    padding-top: 7rem !important;
    padding-bottom: 0rem !important;
}

.py-52 {
    padding-top: 3rem !important;
    padding-bottom: 2rem !important;
}

/* Artigo */
.artigo-sumario {
    background-color: #f0f4f8;
    padding: 15px;
    border-left: 4px solid #004b87;
    border-radius: 4px;
    margin-bottom: 30px;
}

.artigo-sumario ul {
    list-style: none;
    padding-left: 0;
}

.artigo-sumario li {
    margin-bottom: 8px;
}

.artigo-sumario a {
    text-decoration: none;
    color: #004b87;
    font-weight: 500;
}

.artigo-sumario a:hover {
    text-decoration: underline;
}

.bg-artigo {
    background-color: #1e1d300a !important;
}

/* Links do sumÃ¡rio */
.sticky-container {
    position: sticky;
    top: 100px;
    z-index: 10;
    height: 100vh;
    overflow-y: auto;
}

@media (max-width: 768px) {
    .sticky-container {
        position: static !important;
        height: auto;
        overflow: visible;
    }
}

main {
    flex-grow: 1;
}

aside ul li a {
    transition: color 0.3s ease;
}

aside ul li a:hover {
    color: #002f63;
    font-weight: bold !important;
    letter-spacing: 1px;
}

/* Ajustes no texto do artigo */
article p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

/* Estilos para os tÃ³picos complementares */
.topic-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.topic-image {
    width: 59px;
    height: 60px;
    object-fit: cover;
    margin-right: 10px;
}

.topic-text {
    font-size: 0.8rem;
    line-height: initial;
    color: #004b87;
    font-weight: 500;
    text-decoration: none;
}

.topic-text:hover {
    color: #002f63;
    font-weight: bold !important;
}

/* Artigo */
.artigo-sumario {
    background-color: #f0f4f8;
    padding: 15px;
    border-left: 4px solid #004b87;
    border-radius: 4px;
    margin-bottom: 30px;
}

.artigo-sumario ul {
    list-style: none;
    padding-left: 0;
}

.artigo-sumario li {
    margin-bottom: 8px;
}

.artigo-sumario a {
    text-decoration: none;
    color: #004b87;
    font-weight: 500;
}

.artigo-sumario a:hover {
    text-decoration: underline;
}

.bg-artigo {
    background-color: #1e1d300a !important;
}

/* Links do sumÃ¡rio */
.sticky-container {
    position: sticky;
    top: 100px;
    z-index: 10;
    height: 100vh;
    overflow-y: auto;
}

@media (max-width: 768px) {
    .sticky-container {
        position: static !important;
        height: auto;
        overflow: visible;
    }
}

main {
    flex-grow: 1;
}

aside ul li a {
    transition: color 0.3s ease;
}

aside ul li a:hover {
    color: #002f63;
    font-weight: bold !important;
    letter-spacing: 1px;
}

/* Ajustes no texto do artigo */
article p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

/* Estilos para os tÃ³picos complementares */
.topic-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.topic-image {
    width: 59px;
    height: 60px;
    object-fit: cover;
    margin-right: 10px;
}

.topic-text {
    font-size: 0.8rem;
    line-height: initial;
    color: #004b87;
    font-weight: 500;
    text-decoration: none;
}

.topic-text:hover {
    color: #002f63;
    font-weight: bold !important;
}



.container-xxl {
    flex: 1;
    margin-bottom: 60px;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/slider/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.py-5 {
    padding-top: 7rem !important;
    padding-bottom: 3rem !important;
}

.mt-6v2 {
    margin-top: 7rem !important;
}