/* ============================= */
/*        IMPORT E VARIÁVEIS      */
/* ============================= */

/* Importa a fonte Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/* Variáveis globais */
:root {
    --color-1: #0F5C44;
    --color-2: #7D202B;
    --color-3: #B89B73;
    --color-4: #959698;
    --color-5: #1D3557;
    --color-highlight: #EABD7A;
}

/* ============================= */
/*             GLOBAL            */
/* ============================= */

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

/* ============================= */
/*           TOP BAR             */
/* ============================= */

.top-bar {
    display: flex;
    height: 10px;
    width: 100%;
}

.color-block {
    flex: 1;
}

.block-1 {
    background-color: var(--color-1);
}

.block-2 {
    background-color: var(--color-2);
}

.block-3 {
    background-color: var(--color-3);
}

.block-4 {
    background-color: var(--color-4);
}

.block-5 {
    background-color: var(--color-5);
}

/* ============================= */
/*           INFO BAR            */
/* ============================= */

.info-bar {
    background-color: #E2DEDE;
    height: 40px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
}

.info-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.info-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.info-item i {
    font-size: 16px;
    color: #333;
}

.info-bar a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.info-bar a:hover {
    color: #999;
}

/* No mobile, esconder o texto e manter só o ícone */
@media (max-width: 768px) {
    .info-item span {
        display: none;
    }
}



/* ============================= */
/*             HEADER           */
/* ============================= */

.site-header {
    background: #fff;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

.site-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
}

.custom-logo-link img {
    max-height: 50px;
    /* altura máxima desejada */
    width: auto;
    /* largura automática para manter proporção */
    height: auto;
    max-width: 100%;
    /* não ultrapassa o container */
    object-fit: contain;
    display: block;
}


/* Menu */
.menu ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.menu a {
    text-decoration: none;
    color: #707070;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 18px;
    text-transform: uppercase;
}

.menu a:hover {
    color: #242021;
}

/* Ícones sociais */
.social-icons a {
    color: #707070;
    font-size: 20px;
    margin-left: 15px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #707070;
}

/* ============================= */
/*             HERO             */
/* ============================= */

.hero {
    position: relative;
    width: 100%;
    min-height: 690px;
    height: 80vh;
    background: url('../img/home.png') center center / cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-logo {
    max-width: 100%;
    height: auto;
}

/* ============================= */
/*            FEATURES          */
/* ============================= */

.features {
    width: 100%;
    padding-top: 60px;
}

.features-inner {
    display: flex;
    gap: 0;
}

.feature {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    text-align: center;
    color: #fff;
    cursor: default;
    transition: filter 0.3s ease;
}

.feature h3 {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.feature-icon {
    max-width: 100px;
    height: auto;
}

.feature a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.feature:hover {
    filter: brightness(0.9);
    /* 90% da luminosidade -> escurece */
}


/* ============================= */
/*           QUEM SOMOS         */
/* ============================= */

.quem-somos {
    display: flex;
    align-items: center;
    padding: 60px 0 40px;
    background: #fff;
    position: relative;
    max-width: 100vw;
    overflow-x: hidden;
}

.imagem-full {
    flex-shrink: 0;
    width: 40vw;
    min-width: 300px;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.imagem-full img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

.conteudo-container {
    flex: 1;
    padding: 0;
    max-width: 850px;
    margin-left: 50px;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.conteudo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #242021;
    padding-left: 20px;
}

.logo-pequeno {
    max-width: 150px;
    margin-bottom: 20px;
}

.conteudo p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.btn-saiba-mais {
    width: 140px;
    height: 40px;
    background-color: #333;
    border: none;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: start;
}

.btn-saiba-mais:hover {
    background-color: #999;
}

/* ============================= */
/*             VÍDEO            */
/* ============================= */

.video-institucional {
    position: relative;
    width: 100%;
    min-height: 500px;
    background: url('../img/img-video.png') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-institucional .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    width: 800px;
    padding: 60px 0;
}

.video-content h2 {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    padding-top: 56.25%;
}

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

/* ============================= */
/*           NOVIDADES          */
/* ============================= */

.novidades {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #242021;
    text-transform: uppercase;
}

.novidades-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.novidade-card {
    position: relative;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 330px;
    flex: 1;
    transition: box-shadow 0.3s ease;
}

.novidade-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.novidade-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s ease;
}

.novidade-card h3,
.novidade-card p,
.novidade-card div,
.novidade-card img {
    text-decoration: none;
    color: inherit;
}

.novidade-card:link,
.novidade-card:visited,
.novidade-card:hover,
.novidade-card:active {
    text-decoration: none;
    color: inherit;
}

.novidade-card *:link,
.novidade-card *:visited,
.novidade-card *:hover,
.novidade-card *:active {
    text-decoration: none;
    color: inherit;
}

.novidade-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.novidade-card .tag {
    color: #fff;
}



.novidade-card img {
    width: 100%;
    height: auto;
    display: block;
}

.tag {
    position: absolute;
    top: 15px;
    left: 0;
    padding: 5px 15px;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 0 4px 4px 0;
    z-index: 2;
}

/* TAG COM CORES */
.block-1 {
    background-color: var(--color-1);
}

.block-2 {
    background-color: var(--color-2);
}

.block-3 {
    background-color: var(--color-3);
}

.block-4 {
    background-color: var(--color-4);
}

.block-5 {
    background-color: var(--color-5);
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    margin: 15px;
    color: #242021;
    margin-bottom: 10px !important;
}

.card-text {
    font-size: 15px;
    color: #666;
    margin: 0 15px 20px;
    line-height: 1.4;
    padding-bottom: 20px;
}

/* ============================= */
/*             FOOTER           */
/* ============================= */

.site-footer {
    background-color: #242021;
    color: #f0f0f0;
    padding: 40px 20px 20px;
    font-size: 16px;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1 1 280px;
    min-width: 250px;
}

.footer-col h4 {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col.endereco i {
    margin-right: 8px;
    color: var(--color-highlight);
    font-size: 18px;
    vertical-align: middle;
}

.footer-col.logo-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.footer-col.logo-footer img {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
}

/* LINKS COM BARRA COLORIDA */
.footer-col.links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col.links ul li {
    margin-bottom: 12px;
}

.footer-col.links ul li a.link-block {
    display: block;
    padding-left: 12px;
    border-left: 5px solid transparent;
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-col.links ul li a.block-1 {
    border-left-color: var(--color-1);
}

.footer-col.links ul li a.block-2 {
    border-left-color: var(--color-2);
}

.footer-col.links ul li a.block-3 {
    border-left-color: var(--color-3);
}

.footer-col.links ul li a.block-4 {
    border-left-color: var(--color-4);
}

.footer-col.links ul li a.block-5 {
    border-left-color: var(--color-5);
}

.footer-col.links ul li a.link-block:hover {
    color: var(--color-highlight);
}

/* FOOTER BOTTOM */
.footer-bottom {
    border-top: 1px solid #444;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #aaa;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom a {
    color: #f0f0f0;
    font-weight: 600;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--color-highlight);
}

/* ============================= */
/*           HAMBURGUER MENU     */
/* ============================= */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    display: block;
    border-radius: 3px;
    transition: 0.3s;
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #242021;
    color: #fff;
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
    transition: right 0.3s ease;
    z-index: 999;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.mobile-menu ul li a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.mobile-menu .social-icons {
    margin-top: auto;
    display: flex;
    gap: 20px;
}

/* Toggle open */
.mobile-menu.open {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
}


/* ============================= */
/*           UTILITÁRIOS         */
/* ============================= */

.no-padding {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* ============================= */
/*          RESPONSIVO           */
/* ============================= */

@media (max-width: 768px) {

    /* Top bar / Info bar */
    .info-inner {
        flex-direction: row;
        gap: 60px;
        text-align: center;
    }

    /* Logo menor */
    .logo img {
        height: 40px;
    }

    /* Menu e social icons */
    .menu,
    .social-icons.desktop-only {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Quem somos */
    .quem-somos {
        flex-direction: column;
    }

    .imagem-full {
        position: relative;
        left: 0;
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .conteudo-container {
        margin-left: 0;
        padding: 0 10px;
    }

    .btn-saiba-mais {
        align-self: center;
    }

    /* Vídeo institucional */
    .video-institucional {
        min-height: 400px;
        padding: 40px 0;
    }

    .video-wrapper iframe {
        max-width: 100%;
        height: 200px;
    }

    /* Features */
    .features-inner {
        flex-direction: column;
    }

    .feature {
        width: 100%;
        padding: 30px 0;
    }

    .feature h3 {
        margin-top: 10px;
        font-size: 20px;
    }

    .feature-icon {
        max-width: 80px;
    }


    /* Footer */
    .footer-top {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .novidades-cards {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .novidade-card {
        max-width: 100%;
        width: 100%;
    }

    .footer-bottom p {
        font-size: 14px;
        text-align: center;
        margin-bottom: 0px;
    }

    .footer-col {
        flex: 1 1 auto;
        min-height: 0px;
    }

    .footer-col.endereco {
        text-align: center;
    }

    .footer-col.endereco p {
        justify-content: center;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .footer-col.logo-footer {
        min-height: 0px;
    }

    .footer-col.endereco i {
        display: none;
    }

    .footer-col h4 {
        text-align: center;
    }

    .hero-logo {
        max-width: 250px;
    }

    .conteudo {
        padding-left: 0px;
    }
}


/* ============================= */
/*          QUEM SOMOS           */
/* ============================= */

.page-title-section {
    position: relative;
    height: 280px;
    background: url('../img/topo-page.png') center center / cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    text-transform: uppercase;
    overflow: hidden;
}

.page-title-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* mesmo overlay do hero */
    z-index: 1;
}

.page-title-section .logo-home {
    position: relative;
    z-index: 2;
    max-width: 150px;
    margin-bottom: 20px;
}

.page-title-section h1 {
    position: relative;
    z-index: 2;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 3px;
    margin: 0;
}


/* quem somos*/

.quem-somos-content {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.quem-somos-content .container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.left-col {
    flex: 0 0 calc(60% - 20px);
    /* ajusta para o gap */
    min-width: 300px;
    /* evita encolher demais */
}

.left-col img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}

.right-col {
    flex: 0 0 calc(40% - 20px);
    /* ajusta para o gap */
    min-width: 200px;
    /* evita encolher demais */
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #242021;
}

.right-col h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.right-col p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #555;
}

/* Responsividade */
@media (max-width: 768px) {
    .quem-somos-content .container {
        flex-direction: column;
    }

    .left-col,
    .right-col {
        flex: 1 1 100%;
        min-width: auto;
    }

    .left-col {
        margin-bottom: 30px;
    }
}


.empreendimentos-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    color: #242021;
    background-color: #f9f5ef;
    /* um bege claro */
}

.section-subtitle {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    text-align: center;
}

.empreendimentos-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    /* importante para igualar altura das colunas */
}

.empreendimentos-content .left-col {
    flex: 0 0 70%;
    min-width: 300px;
}

.empreendimentos-content .right-col {
    flex: 0 0 25%;
    min-width: 150px;

    display: flex;
    align-items: center;
    /* vertical center */
    justify-content: center;
    /* horizontal center */
    height: 100%;
    /* para ocupar a altura total */
}

.empreendimentos-content .right-col img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
    /* centraliza verticalmente */
}

.feature-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 6px 0;
    text-transform: uppercase;
}

.feature-text p {
    font-size: 16px;
    line-height: 1.4;
    color: #555;
    margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .empreendimentos-content {
        flex-direction: column;
    }

    .empreendimentos-content .left-col,
    .empreendimentos-content .right-col {
        flex: 1 1 100%;
        min-width: auto;
    }

    .feature-item {
        gap: 15px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }
}

/* ============================= */
/*         AREAS                 */
/* ============================= */
.areas-section {
    padding: 60px 20px;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* Cards com tamanho fixo para padronizar */
.area-card {
    flex: 0 1 calc(30% - 30px);
    max-width: calc(30% - 30px);
    min-height: 400px;
    /* altura fixa para igualar */

    background-color: #eee;
    /* será sobrescrito pelas classes block */
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.area-card img.feature-icon {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.area-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.area-card p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.btn-conheca {
    margin-top: auto;
    /* empurra para o final do card */
    display: inline-block;
    background: #fff;
    color: #999;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.area-card:hover .btn-conheca {
    background: rgba(255, 255, 255, 0.85);
}

.btn-conheca:hover {
    color: #333;
}

.area-card.block-1 {
    background-color: var(--color-1);
}

.area-card.block-2 {
    background-color: var(--color-2);
}

.area-card.block-3 {
    background-color: var(--color-3);
}

.area-card.block-4 {
    background-color: var(--color-4);
}

.area-card.block-5 {
    background-color: var(--color-5);
}


/* Responsivo */
@media (max-width: 992px) {
    .area-card {
        flex: 0 1 calc(50% - 30px);
        max-width: calc(50% - 30px);
    }
}

@media (max-width: 600px) {
    .area-card {
        flex: 0 1 100%;
        max-width: 100%;
    }
}


/* LAZER */





/* Responsivo */
@media (max-width: 768px) {
    .lazer-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .lazer-image {
        width: 100%;
        max-width: 400px;
        border-left: none;
    }
}

/* NOVIDADES */
.novidades-page {
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.novidades-page .container {
    max-width: 1200px;
    margin: 0 auto;
}

.novidades-page .novidades-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
    /* Alinha à esquerda */
}

/* Cada card terá até 1/3 da largura do container, com margem para gap */
.novidades-page .novidade-card {
    flex: 0 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.novidades-page .novidade-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.novidades-page .novidade-card .tag {
    position: absolute;
    top: 15px;
    left: 0;
    padding: 5px 15px;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 0 4px 4px 0;
    z-index: 2;
}

.novidades-page .novidade-card img {
    width: 100%;
    height: auto;
    display: block;
}

.novidades-page .card-title {
    font-size: 18px;
    font-weight: 700;
    margin: 15px;
    margin-bottom: 10px !important;
    color: #242021;
}

.novidades-page .card-text {
    font-size: 15px;
    color: #666;
    margin: 0 15px 20px;
    line-height: 1.4;
    padding-bottom: 20px;
}

/* Responsividade: em telas menores, cards ocupam 100% */
@media (max-width: 768px) {
    .novidades-page .novidade-card {
        flex: 0 1 100%;
        max-width: 100%;
    }
}

.novidades-page .pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    width: 100%;
}

.novidades-page .pagination ul {
    display: flex;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
}

.novidades-page .pagination li a,
.novidades-page .pagination li span {
    display: block;
    padding: 8px 14px;
    color: #555;
    border: 1px solid #bbb;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: #f5f5f5;
}

.novidades-page .pagination li a:hover {
    background-color: #bbb;
    color: #fff;
}

.novidades-page .pagination li .active,
.novidades-page .pagination li span.active {
    background-color: #777;
    color: #fff;
    cursor: default;
    pointer-events: none;
    border-color: #777;
}



/* POST */
.detail-novidade {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    color: #242021;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

.detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: var(--color-5);
    text-align: center;
}

.detail-novidade p {
    font-size: 1.125rem;
    margin-bottom: 20px;
}

.detail-image {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 6px;
    margin: 30px 0;
    display: block;
}

.video-wrapper.detail-video {
    position: relative;
    width: 100%;
    max-width: 800px;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    margin: 30px auto;
    /* Centraliza */
}

.video-wrapper.detail-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 6px;
}

/* Responsivo */
@media (max-width: 768px) {
    .detail-novidade {
        padding: 0 15px;
    }

    .detail-title {
        font-size: 2rem;
    }
}

/* CONTATO */

.contato {
    max-width: 700px !important;
    margin: 50px auto;
    padding: 0 20px;
    font-family: 'Montserrat', sans-serif;
    color: #242021;
}

.contato h1 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--color-5);
}

.contato p {
    font-size: 1.125rem;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.6;
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-5);
    outline: none;
}

.btn-submit {
    background-color: var(--color-5);
    color: #fff;
    border: none;
    padding: 14px 20px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--color-1);
}


/* GALERIA */

.wp-block-gallery.is-layout-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Fallback: mobile (até 480px) = 1 por linha */
.wp-block-gallery.is-layout-flex .wp-block-image {
    flex: 0 0 100%;
}

/* acima de 480px - 2 colunas */
@media (min-width: 480px) {

    .wp-block-gallery.columns-2.is-layout-flex .wp-block-image,
    .wp-block-gallery.columns-3.is-layout-flex .wp-block-image,
    .wp-block-gallery.columns-4.is-layout-flex .wp-block-image,
    .wp-block-gallery.columns-5.is-layout-flex .wp-block-image {
        flex: 0 0 calc(50% - 20px);
    }
}

/* acima de 768px - 3 colunas */
@media (min-width: 768px) {
    .wp-block-gallery.columns-3.is-layout-flex .wp-block-image {
        flex: 0 0 calc(33.333% - 20px);
    }

    .wp-block-gallery.columns-4.is-layout-flex .wp-block-image,
    .wp-block-gallery.columns-5.is-layout-flex .wp-block-image {
        flex: 0 0 calc(33.333% - 20px);
    }
}

/* acima de 992px - respeita 4 ou 5 colunas */
@media (min-width: 992px) {
    .wp-block-gallery.columns-4.is-layout-flex .wp-block-image {
        flex: 0 0 calc(25% - 20px);
    }

    .wp-block-gallery.columns-5.is-layout-flex .wp-block-image {
        flex: 0 0 calc(20% - 20px);
    }
}

/* garante imagens responsivas */
.wp-block-gallery.is-layout-flex .wp-block-image img {
    width: 100%;
    height: auto;
    display: block;
}
