/*
=================================
DEFINIÇÃO DAS FONTES
=================================
*/


@font-face {
    font-family: 'Abc-monument-grotesk';
    src: url('../fonts/abc/ABCMonumentGroteskSemi-Mono-Regular.woff2') format('woff2'),
        url('../fonts/abc/ABCMonumentGroteskSemi-Mono-Regular.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MonumentExtended-Black';
    src: url('../fonts/pp/MonumentExtended-Black.woff2') format('woff2'),
        url('../fonts/pp/PPMonumentExtended-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MonumentExtended-Light';
    src: url('../fonts/pp/MonumentExtended-Thin.woff2') format('woff2'),
        url('../fonts/pp/PPMonumentExtended-Thin.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MonumentExtended-Book';
    src: url('../fonts/pp/MonumentExtended-Book.woff2') format('woff2'),
        url('../fonts/pp/PPMonumentExtended-Book.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MonumentExtended-Regular';
    src: url('../fonts/pp/MonumentExtended-Regular.woff2') format('woff2'),
        url('../fonts/pp/PPMonumentExtended-Regular.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}


:root {
    --brand-purple: #4c007d;
    --dark-blue: #001f3f;
    --maroon: #800000;
    --red: #dc3545;
    --green: #28a745;
    --yellow: #ffc107;
    --cyan: #17a2b8;
    --dark-text: #212529;
    --light-text: #f8f9fa;
    --full-black: #000000;
    --primary-purple: #8e44ad;
    /* Tom de roxo similar ao da imagem */
    --dark-blue-footer: #0f054c;
    --text-dark: #212529;
    --text-light: #ffffff;
    --orange: #e84f13;
}

body {
    font-family: 'Abc-monument-grotesk';
    color: var(--dark-text);
    overflow-x: hidden;
}

main {
    max-width: 100%;
    /*overflow-x: hidden;*/
}

p {
    line-height: 30px;
}

/* Header */
.navbar {
    border-bottom: 1px solid #eee;
}

.navbar-brand img {
    /* Ajuste o caminho e o tamanho do logo */
    height: 20px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-text);
    margin: 0 0.5rem;
    font-family: "Roboto", sans-serif;
}

.nav-link:hover,
.nav-link.active,
.dropdown-item.active,
.nav-item.current-menu-item>.nav-link,
.nav-item.current-menu-parent>.nav-link {
    color: var(--brand-purple);
}

/* Submenu / Dropdown Styles */
.dropdown-menu {
    background-color: #f8f9fa;
    /* fundo cinza claro */
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.dropdown-item {
    background-color: #343a40;
    /* fundo cinza escuro para os links */
    color: #ffffff;
    padding: 10px 20px;
    border-bottom: 1px solid #495057;
    transition: background-color 0.2s, color 0.2s;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #3d0079;
    /* hover específico */
    color: #ffffff;
}

.title-blocked {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    max-width: 60%;
}

/* Hero Section */
.hero-section {
    padding-top: 80px;
    /* Altura do navbar */
    height: 100vh;
    min-height: 500px;
    background: url('../img/hero.png') no-repeat center center/cover;
    position: relative;
}

/* Overlay opcional para escurecer a imagem de fundo e melhorar o contraste do texto */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
}

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

.hero-icon {
    height: 60px;
}

.hero-title {
    font-size: 3.5rem;
    font-family: 'MonumentExtended-Regular';
    font-weight: 900;
    color: var(--dark-text);
    line-height: 1.2;
}

/* What is Section */
.what-is-section {
    background-color: var(--brand-purple);
    padding: 80px 0;
}

.section-title-light {
    font-size: 3rem;
    font-family: 'MonumentExtended-Black';
    font-weight: 900;
    line-height: 1.1;
}

.what-is-section .lead {
    font-weight: 400;
}

/* Why Park Section */
.why-park-section {
    padding: 80px 0;
}

.section-title-dark {
    font-size: 3rem;
    font-family: 'MonumentExtended-Black';
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark-text);
    text-align: left;
}

.lines-graphic {
    position: absolute;
    right: 0;
    top: 10%;
    transform: translateY(-50%);
    width: 600px;
    opacity: 0.8;
    z-index: -1;
}

/* Challenges Section */
.challenges-section {
    padding: 0px;

}

.challenges-title {
    font-family: 'MonumentExtended-Regular';
    font-weight: 900;
    color: var(--dark-text);
    border-bottom: 1px solid var(--full-black);
    /*   display: inline-block;*/
    padding-bottom: 5px;
}

.challenge-number {
    font-size: 10rem;
    font-family: 'MonumentExtended-Light';
    font-weight: 300;
    color: var(--brand-purple);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 40px;
}

.prelative {
    position: relative;
}

.pabsolute {
    position: absolute;
}

.palign {
    right: 0;
    top: 0;
}

.boxhead {
    object-fit: cover;
    max-height: 600px;
    width: 50%;

}


.textoBlock {
    padding: 50px;
}

.bigg {
    font-size: 3rem;
    font-family: 'MonumentExtended-Black';
    font-weight: 900;
    line-height: 50px;
}

/* Future Vision Section */
.future-vision-section {
    padding: 0px;
}

/* Stats Grid Section */
.stats-grid-section {
    padding: 60px 0;
}

.stat-box {
    display: block;
    /*flex;*/
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.2;
    min-height: 300px;
    flex-grow: 1;
    font-family: 'MonumentExtended-Book';
}

.stats-grid-section img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.bg-maroon {
    background-color: #6a0032;
}

.bg-red {
    background-color: #d81e05;
}

.bg-green {
    background-color: #009a44;
}

.bg-yellow {
    background-color: #ffd100;
}

.bg-cyan {
    background-color: #00a9e0;
}

.bg-dark-blue {
    background-color: #0d2c4a;
}

/* Footer */
.site-footer {
    background-color: #08084D;
    color: #fff;
    padding-top: 100px;
    /* Espaço para a onda */
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(-99%);
}

.footer-logo {
    filter: brightness(0) invert(1);
    height: 35px;
}

.social-icon {
    color: #fff;
    font-size: 1.2rem;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--yellow);
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-heading {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.site-footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.copyright-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.challenge-item {
    padding: 50px;
}

/* Media Queries para Responsividade */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.0rem;
    }

    .section-title-light,
    .section-title-dark {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .what-is-section .lead {
        text-align: center;
    }

    .lines-graphic {
        display: none;
    }

    .challenge-item {
        margin-bottom: 3rem;
    }
}

@media (max-width: 767.98px) {
    .stat-box {
        font-size: 1.5rem;
        min-height: 150px;
    }

    .footer-top {
        text-align: center;
    }

    .footer-top .text-md-end {
        text-align: center !important;
        margin-top: 1.5rem;
    }

    .social-icon {
        margin: 0 0.75rem;
    }
}


/* ======================= ESTILOS DO FOOTER ======================= */

/* Cor de fundo e texto principal do footer */
.footer-custom {
    background-color: #0b114a;
    /* Azul escuro da imagem */
    color: #ffffff;
    font-family: 'Abc-monument-grotesk';
}

/* Logo principal */
.main-logo {
    max-width: 280px;
    height: auto;
}

/* Logos dos parceiros */
.partner-logos img {
    height: 35px;
    /* Ajusta a altura de todos os logos */
    margin-right: 20px;
    margin-bottom: 15px;
    /* Espaçamento para quando quebrar linha */
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.partner-logos img:hover {
    opacity: 1;
}

/* Ícones de redes sociais */
.social-icons a {
    color: #ffffff;
    font-size: 1.4rem;
    /* Tamanho dos ícones */
    margin-right: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #cccccc;
    /* Cor mais clara no hover */
}

/* Títulos das colunas de links */
.footer-heading {
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Estilo para links que parecem títulos (última coluna) */
.footer-heading-link {
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

/* Links do rodapé */
.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #e0e0e0;
    text-decoration: underline;
}

/* Texto de copyright */
.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    /* Cor mais sutil */
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .footer-custom .text-end {
        text-align: left !important;
    }

    .partner-logos {
        justify-content: flex-start;
    }

    .social-icons {
        text-align: center;
    }
}


/*
========================
Pré-footers
========================
*/

.pre-footer-home {
    background: url('../img/footer_home.png') no-repeat top center/cover;
    min-height: 280px;
}

.pre-footer-parque {
    background: url('../img/fundo_porque.png') no-repeat top center/cover;
    min-height: 280px;
    margin-bottom: -20px;
}

.pre-footer-artigos {
    background: url('../img/fundo_artigos.png') no-repeat top center/cover;
    min-height: 280px;
}


/*
=================================
PÁGINA SOBRE (/sobre.html)
=================================
*/

/* --- Seção Identidade --- */
.identity-section {
    padding-top: 150px;
    /* Espaço para o header fixo */
    padding-bottom: 150px;
}

.section-subtitle {
    font-family: 'MonumentExtended-Regular';
    font-weight: 500;
    color: #000;
    /* border-bottom: 2px solid var(--brand-purple); */
    /* display: inline-block; */
    padding-bottom: 5px;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.p5 {
    padding-right: 50px;
}

/* --- Seção Mestre Álvaro --- */
.mestre-alvaro-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 50, 25, 0.85), rgba(0, 50, 25, 0.85)), url('../img/mestre-alvaro-bg.jpg') no-repeat center center/cover;
}

/* --- Seção Propósitos --- */
.purposes-section {
    padding: 80px 0;
}

.purpose-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 100%;
}

.purpose-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background-color: #0d2c4a;
    color: #fff;
    font-family: 'MonumentExtended-Light';
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    margin-right: -35px;
    z-index: 90;
}

.purpose-text {
    border: 2px solid #28a745;
    padding: 1.5rem;
    width: 100%;
    font-weight: 500;
    min-height: 123px;
}

/* --- Seção Contexto --- */
.context-section {
    padding: 80px 0;
}

/* timeline*/

#linhadotempo {
    background-color: #E5E5E5;
    padding-top: 50px;
}


.timetop {
    background-image: url(../img/timeline-top.png);
    background-repeat: repeat-x;
    background-position: center bottom;
    height: 90px;
    background-color: #e5e5e5;
    background-size: cover;
}

.timebottom {
    background-image: url(../img/timeline-bottom.png);
    background-repeat: repeat-x;
    background-position: center top;
    height: 90px;
    background-color: #e5e5e5;
}

.timeline {
    /*min-height: 550px;*/
}

.timeline__wrap {
    height: 800px;
}

/*--------------------------------------------------------------
        # Grid de Benefícios
        --------------------------------------------------------------*/
.benefits-grid {
    padding-bottom: 100px;
}

.benefit-item {
    position: relative;
    margin-top: 50px;
    /* Espaço para o círculo */
    height: 100%;
}

.benefit-number-circle {
    position: absolute;
    top: -45px;
    left: -15px;
    width: 90px;
    height: 90px;
    background-color: var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    z-index: 2;
}

.benefit-box {
    border: 2px solid var(--text-dark);
    padding: 40px 30px;
    padding-top: 60px;
    /* Espaço interno para não sobrepor o texto */
    height: 100%;
    background-color: #fff;
}

.benefit-box h3 {
    color: var(--primary-purple);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.benefit-box ul {
    padding-left: 20px;
    list-style: disc;
}

.benefit-box ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/*--------------------------------------------------------------
        # Divisor Ondulado
        --------------------------------------------------------------*/
.wave-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
    /* Altura da onda */
}

.wave-divider .shape-fill {
    fill: var(--primary-purple);
}

.timeline .roxo {
    border: solid 1px var(--brand-purple);
}

.timeline .verde {
    border: solid 1px var(--green);
}

.timeline .orange {
    border: solid 1px var(--orange);
}

.timeline .azul {
    border: solid 1px var(--cyan);
}

/*.timeline--horizontal .timeline__item .timeline__content.roxo::before {	
	border-top: 12px solid var(--brand-purple);	}*/
.timeline--horizontal .timeline__item--bottom .timeline__content.roxo::before {
    border-bottom: 12px solid var(--brand-purple);
}

/*.timeline--horizontal .timeline__item .timeline__content.verde::before {	
	border-top: 12px solid var(--green);	}*/
.timeline--horizontal .timeline__item--bottom .timeline__content.verde::before {
    border-bottom: 12px solid var(--green);
}

/*.timeline--horizontal .timeline__item .timeline__content.orange::before {	
	border-top: 12px solid var(--orange);	} */
.timeline--horizontal .timeline__item--bottom .timeline__content.orange::before {
    border-bottom: 12px solid var(--orange);
}

/*.timeline--horizontal .timeline__item .timeline__content.azul::before {	
	border-top: 12px solid var(--cyan);	}*/
.timeline--horizontal .timeline__item--bottom .timeline__content.azul::before {
    border-bottom: 12px solid var(--cyan);
}

/*--------------------------------------------------------------
# Hero Section (Nomenclatura Modificada)
--------------------------------------------------------------*/
.page-hero {
    /* MODIFICADO de .hero-section */
    height: 80vh;
    min-height: 500px;
    background: url('https://via.placeholder.com/1920x1080/cccccc/808080?text=Visão+Aérea+do+Parque') no-repeat center center;
    background-size: cover;
    position: relative;
    display: block;
}

.page-hero::before {
    /* MODIFICADO de .hero-section::before */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.page-hero-content {
    /* MODIFICADO de .hero-content */
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
}

.page-hero-title {
    /* MODIFICADO de .hero-title */
    font-size: 1.5rem;
    font-weight: 700;
    padding-bottom: 15px;
    margin-bottom: 15px;
    position: relative;
    margin-top: 100px;
    color: var(--text-light);
    font-family: 'MonumentExtended-Regular';
}

.page-hero-contato {
    /* MODIFICADO de .hero-section */
    height: 80vh;
    min-height: 500px;
    background: url('https://via.placeholder.com/1920x1080/cccccc/808080?text=Visão+Aérea+do+Parque') no-repeat center center;
    background-size: cover;
    position: relative;
    display: block;
}

.page-hero-contato::before {
    /* MODIFICADO de .hero-section::before */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: rgba(0, 0, 0, 0.4);*/
}

.page-hero-contato-content {
    /* MODIFICADO de .hero-content */
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
}

.page-hero-contato-title {
    /* MODIFICADO de .hero-title */
    font-size: 1.5rem;
    font-weight: 700;
    padding-bottom: 15px;
    margin-bottom: 15px;
    position: relative;
    margin-top: 100px;
    color: var(--full-black);
    font-family: 'MonumentExtended-Regular';
}


/*.page-hero-title::after { /* MODIFICADO de .hero-title::after  
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: var(--text-light);
}*/

/*--------------------------------------------------------------
        # Infraestrutura Section
        --------------------------------------------------------------*/
.area-highlight {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1.1;
}

.area-highlight span {
    font-size: 1.5rem;
    vertical-align: super;
}

/*--------------------------------------------------------------
        # Gallery Carousel
        --------------------------------------------------------------*/
.gallery-carousel .carousel-inner {
    padding: 1rem;
}

.gallery-carousel .carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.gallery-carousel .carousel-control-prev,
.gallery-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-carousel .carousel-control-prev {
    left: -15px;
}

.gallery-carousel .carousel-control-next {
    right: -15px;
}

@media (max-width: 768px) {
    .gallery-carousel .carousel-control-prev {
        left: 5px;
    }

    .gallery-carousel .carousel-control-next {
        right: 5px;
    }
}


/*--------------------------------------------------------------
        # Serviços Section
        --------------------------------------------------------------*/
.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    margin-bottom: 30px;
}

.service-card img {
    width: 100%;
    transition: transform 0.4s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--orange);
    padding: 20px;
    color: var(--text-light);
    font-weight: bold;
}

#infras {
    padding-top: 200px;
    padding-bottom: 90px;
}

.absfloat {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    z-index: -1;
}

.gallery-slider img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    min-height: 300px;
    max-height: 300px;
}

#headPage {
    padding-top: 100px;
    padding-bottom: 50px;
}

#headPage .page-title {
    font-size: 1.5rem;
    font-weight: 700;
    padding-bottom: 15px;
    margin-bottom: 15px;
    position: relative;
    color: var(--dark-text);
    font-family: 'MonumentExtended-Regular';
}

.main-headline {
    font-family: 'MonumentExtended-Black';
    font-weight: 900;
    color: var(--dark-text);
    font-size: 4rem;
}

.orangeText {
    color: #FF9100;
    font-family: 'MonumentExtended-Regular';
    font-size: 4rem;
}

.orangeText .lead {
    font-size: 2.4rem;
    font-family: 'MonumentExtended-Book';
}

.logo-container {
    height: 180px;
    border: solid 1px var(--dark-text);
    padding: 10px;
    margin-bottom: 15px;
}

.btn-black {
    background-color: var(--full-black);
    color: var(--text-light);
    padding: 10px;
}

.btn-black:hover {
    background-color: transparent;
    color: var(--full-black);
    border: solid 1px var(--full-black);
}

.article-card {
    background-color: #fff;
    overflow: hidden;
    /* Garante que a imagem siga o border-radius */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* Sutil sombra para destacar os cards */
    height: 100%;
    /* Garante que todos os cards na mesma linha tenham a mesma altura */
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    /* Espaçamento entre as linhas de cards */
    border-radius: 0px;
}

.article-card img {
    width: 100%;
    height: 250px;
    /* Altura fixa para as imagens */
    object-fit: cover;
    /* Garante que a imagem cubra a área sem distorcer */
    display: block;

}

.artigos-lista-block {
    padding-top: 50px;
}

.article-card .card-body {
    padding: 20px;
    flex-grow: 1;
    /* Permite que o corpo do card ocupe o espaço restante */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Empurra o texto para baixo se necessário */
}

.article-card .card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.article-card .card-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* --- Article Content Styles --- */
#article-page {
    padding-bottom: 60px;
}

.article-header {
    margin-bottom: 40px;
}

.article-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin-top: 20px;
    margin-bottom: 30px;
    font-family: 'MonumentExtended-Black';
}

.article-meta {
    color: #777;
    font-size: 0.9rem;
    margin-top: -15px;
    /* Ajuste para subir um pouco */
    margin-bottom: 30px;
}

.article-featured-image {
    margin-bottom: 50px;
    border-radius: 8px;
    /* Adiciona um leve border-radius à imagem principal */
    overflow: hidden;
    /* Garante que a imagem siga o border-radius */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #444;
}

/* --- Navigation Buttons --- */
.article-navigation {


    /*border-top: 1px solid #eee;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-navigation .btn-custom {
    background-color: transparent;
    border: 1px solid #000;
    color: #000;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.article-navigation .btn-custom:hover {
    background-color: #000;
    color: #fff;
}

.article-navigation .btn-back {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.article-navigation .btn-back:hover {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

/* --- Section Contact Styles --- */
#contato-form {
    padding: 80px 0;
    background-color: #fff;
}

.contact-left-content {
    padding-right: 40px;
    /* Espaço entre o texto e o formulário */
}

.contact-left-content h2 {
    font-size: 3.5rem;
    /* Tamanho grande para "O futuro se constrói em rede." */
    font-weight: 700;
    line-height: 1;
    /* Ajuste para espaçamento entre linhas */
    color: #000;
    margin-bottom: 30px;
    /* Se houver uma fonte específica para este título (como no layout), pode ser definida aqui */
    font-family: 'MonumentExtended-Black';

}

/* Ajuste para telas menores */
@media (max-width: 991.98px) {
    .contact-left-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .contact-left-content h2 {
        font-size: 2rem;
    }
}

.contact-left-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.contact-info .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-info .info-item i {
    font-size: 1.5rem;
    color: #D32F2F;
    /* Cor vermelha para os ícones */
    margin-right: 15px;
    width: 30px;
    /* Fixa a largura para alinhar o texto */
    text-align: center;
}

.contact-info .info-item .icon-phone {
    color: #D32F2F;
    /* Cor vermelha para os ícones */
    /* Pode ser uma imagem ou SVG, usei Font Awesome para simplificar */
    /* Se for SVG: background-image: url('data:image/svg+xml;utf8,...'); width: 24px; height: 24px; */
}

.contact-info .info-item .icon-mail {
    color: #D32F2F;
    /* Cor vermelha para os ícones */
}

.contact-info .info-item .icon-location {
    color: #D32F2F;
    /* Cor vermelha para os ícones */
}

.contact-info .info-item a,
.contact-info .info-item span {
    font-size: 1.1rem;
    color: #333;
    text-decoration: none;
}

.contact-info .info-item a:hover {
    text-decoration: underline;
}

.contact-info .info-item .address-text {
    display: block;
    /* Para quebrar a linha do endereço */
    line-height: 1.4;
}

/* --- Contact Form Styles --- */
.contact-form-container {
    border: 1px solid #e0e0e0;
    padding: 40px;
    border-radius: 8px;
    background-color: #fff;
}

.contact-form-container .form-label {
    display: none;
    /* Oculta os labels, pois o placeholder é usado como label */
}

.contact-form-container .form-control {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 12px 15px;
    font-size: 1rem;
    margin-bottom: 20px;
    /* Espaçamento entre os campos */
}

.contact-form-container .form-control::placeholder {
    color: #888;
    opacity: 1;
    /* Garante que o placeholder seja visível */
}

.contact-form-container textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.contact-form-container .btn-submit {
    background-color: #000;
    color: #fff;
    padding: 12px 40px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: auto;
    /* Para não ocupar 100% da largura do pai */
}

.contact-form-container .btn-submit:hover {
    background-color: #333;
}

/* Título "Contato" acima da seção */
.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    padding-bottom: 10px;
    /*border-bottom: 2px solid #000; /* Linha preta abaixo do título */
    /*width: fit-content; /* Para a linha ter o mesmo tamanho do texto */
}

/* Ajuste para o padding do título */
.contact-section-wrapper {
    padding-left: calc(var(--bs-gutter-x) * .5);
    /* Alinha com o grid do bootstrap */
    padding-right: calc(var(--bs-gutter-x) * .5);
}

@media (max-width: 767.98px) {
    .contact-left-content {
        padding-right: 15px;
        /* Remover padding em telas pequenas */
        padding-bottom: 40px;
        /* Adicionar padding abaixo em telas pequenas */
    }

    .contact-form-container {
        padding: 30px;
    }
}

.padding5 {
    padding-top: 80px;
}

/*---- mobile */
@media screen and (max-width: 767px) {
    .what-is-section {
        padding: 20px 0;
    }

    .title-blocked {
        max-width: 100%;
    }

    .why-park-section {
        padding: 40px 0;
        text-align: center;
    }

    .main-logo {
        margin: 0 auto;
        display: block;
    }

    .copyright {
        text-align: center;
    }

    .stat-box {
        min-height: 220px;
    }

    .boxhead {
        max-height: 150px;
        width: 100%;
    }

    .section-subtitle {
        margin-top: 15px;
    }

    #identidade-conceito p {
        text-align: center;
        padding-right: 0 !important;
    }

    #mestre-alvaro p {
        text-align: center;
    }

    #inovaserra-contexto p {
        text-align: center;
    }

    .timeline__wrap {
        height: auto;
    }

    .main-headline {
        font-size: 1.7rem;
    }

    .article-header h1 {
        font-size: 1.7rem;
        text-align: left;
    }

    #headPage {
        padding-top: 100px;
        padding-bottom: 0;
    }

    .article-navigation .btn-custom {
        padding: 10px 10px;
    }

    .contact-left-content {
        padding-left: 15px;
    }

    .absfloat {
        top: 100px;
    }

    .area-highlight {
        font-size: 3rem;
    }

    .padding5 {
        padding-top: 60px;
    }


}

/**
 * 23.0 - Paginação
 */
.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 12px 20px;
    margin: 5px;
    border: 1px solid #dee2e6;
    color: #212529;
    text-decoration: none;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
    border-radius: 4px;
    font-weight: 500;
}

.pagination .page-numbers:hover {
    background-color: #e9ecef;
    border-color: #ced4da;
    color: #000;
}

.pagination .page-numbers.current {
    background-color: #000000;
    /* Cor preta, baseada no .btn-black de outros blocos */
    color: #ffffff;
    border-color: #000000;
    cursor: default;
}

.pagination .page-numbers.current:hover {
    background-color: #000000;
    color: #ffffff;
}

.pagination .page-numbers.dots {
    border: none;
    background-color: transparent;
    padding: 12px 5px;
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
    font-weight: 600;
}


:root {
    --transition-speed: 1.2s;
    --ease-artistic: cubic-bezier(0.77, 0, 0.175, 1);
}

/* Slider Container */
.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed) var(--ease-artistic),
        visibility var(--transition-speed) var(--ease-artistic);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Parallax Background Wrapper */
.parallax-bg-wrap {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    will-change: transform;
    transition: transform 0.2s ease-out;
    /* Suaviza o movimento do mouse */
}

/* Simple Slider without Parallax Zoom */
.no-parallax-slider .parallax-bg-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none !important;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /*filter: brightness(0.5) contrast(1.1);*/
    /*transform: scale(1.1);*/
    transition: transform var(--transition-speed) var(--ease-artistic);
}

.slide.active .slide-bg {
    transform: scale(1);
}

/* Overlay Conteúdo */
.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    z-index: 3;
    pointer-events: none;
    /* Deixa o mouse passar para o movimento do fundo */
}

/* Elementos Artísticos com Animação */
.brand-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 1s var(--ease-artistic);
    transition-delay: 0.4s;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.slide-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    max-width: 800px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s var(--ease-artistic);
    transition-delay: 0.6s;
    text-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

/* Ativação das animações de texto */
.slide.active .brand-logo {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

/* Navegação Customizada */
.slider-nav {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.nav-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 300;
}

.nav-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: scale(1.05);
}

/* Indicador de Páginas */
.slider-counter {
    position: absolute;
    bottom: 65px;
    left: 50px;
    z-index: 10;
    color: #fff;
    /*font-family: 'Playfair Display', serif;*/
    font-size: 1.5rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .slide-title {
        font-size: 2.5rem;
        padding: 0 20px;
    }

    .brand-logo {
        max-width: 120px;
    }

    .slider-nav {
        right: 50%;
        transform: translateX(50%);
        bottom: 30px;
    }

    .slider-counter {
        left: 50%;
        transform: translateX(-50%);
        bottom: 100px;
    }
}