/* inter-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../assets/fonts/inter-v20-latin-regular.woff2') format('woff2');
}

/* inter-600 - latin */
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('../assets/fonts/inter-v20-latin-600.woff2') format('woff2');
}

/* inter-700 - latin */
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('../assets/fonts/inter-v20-latin-700.woff2') format('woff2');
}

/* playfair-display-700 - latin */
@font-face {
    font-display: swap;
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    src: url('../assets/fonts/playfair-display-v40-latin-700.woff2') format('woff2');
}

:root {
    /* Cores da Identidade Visual */
    --primary: #354632;

    /* Verde Bosque */
    --accent: #D9BB8B;

    /* Dourado Terra */
    --bg-light: #FAF6EE;

    /* Bege Linho */
    --text-dark: #1A1A1A;
    --text-light: #FAF6EE;
    --white: #FFFFFF;

    /* Tipografia */
    --font-title: 'Playfair Display', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    /* Espaçamento */
    --section-padding: 100px 20px;
    --container-width: 1200px;

    /* Sombras e Bordas */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.1);
    --radius: 12px;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 100;
    transition: background 0.3s ease;
}

header.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 60px;
}

.header-cta .btn {
    background: var(--accent);
    color: var(--primary);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.header-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-premium);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('../assets/hero-bg_desktop.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Película escura sobre o fundo/vídeo */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

/* O vídeo de fundo */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero .eyebrow {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
    color: var(--accent);
    font-weight: 600;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-hero {
    background: var(--accent);
    color: var(--primary);
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-hero:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Storytelling */
.storytelling {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 80px;
    align-items: center;
}

.story-text h2 {
    color: var(--primary);
    margin-bottom: 30px;
}

.story-text p {
    margin-bottom: 20px;
    font-size: 1.15rem;
    color: #555;
}

.story-image {
    position: relative;
}

.story-badge {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 85%;
    max-width: 280px;
    background: var(--primary);
    border-radius: var(--radius);
    box-shadow: var(--shadow-premium);
    color: var(--white);
    padding: 25px 30px;
    font-weight: 600;
    font-size: 14px;
    z-index: 2;
    text-align: left;
    border-left: 5px solid var(--accent);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .story-badge {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        transform: none;
        margin-bottom: 30px;
        border-left: none;
        border-bottom: 5px solid var(--accent);
    }
}

.story-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-premium);
    display: block;
}

.story-form-compact {
    margin-top: 30px;
}

.compact-input-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.compact-input-row input {
    flex: 1;
    min-width: 0;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--white);
    transition: border-color 0.3s ease;
}

.compact-input-row input:focus {
    outline: none;
    border-color: var(--accent);
}

/* Diferenciais */
.diferenciais {
    padding: var(--section-padding);
    background: linear-gradient(rgba(53, 70, 50, 0.92), rgba(53, 70, 50, 0.92)),
        url('../assets/fundo-folhas.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    color: var(--text-light);
}

.diferenciais h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.diff-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--radius);
    border-top: 4px solid var(--accent);
    transition: transform 0.3s ease;
}

.diff-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.diff-card h3 {
    margin-bottom: 15px;
    color: var(--accent);
    font-size: 1.4rem;
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--text-light);
    padding: 80px 0 40px;
    text-align: center;
}

.footer-logo img {
    height: 150px;
    margin-bottom: 40px;
}

.footer-partners-v2 {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 60px;
    margin: 40px auto 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 950px;
    flex-wrap: wrap;
}

.partner-group {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
    min-width: 320px;
    justify-content: center;
}

.partner-group:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 40px;
}

.group-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.group-grafismo {
    height: 32px;
    width: auto;
}

.group-grafismo path.fil0 {
    fill: var(--white) !important;
}

.group-grafismo path.fil1 {
    fill: var(--accent) !important;
}

.group-title {
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
}

.group-logos {
    display: flex;
    align-items: center;
    gap: 25px;
}

.group-logos img {
    height: 48px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.group-logos img:hover {
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 850px) {
    .footer-partners-v2 {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding-top: 20px;
    }

    .partner-group {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        min-width: 0;
        padding: 0;
    }

    .partner-group:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-right: 0;
        padding-bottom: 40px;
    }
}

.footer-info {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 30px;
}

.footer-credit-link {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, border-color 0.3s ease;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.4);
}

.footer-credit-link:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* Localização */
.localizacao {
    padding: var(--section-padding);
}

/* Lazer */
.lazer {
    padding: var(--section-padding);
    background: var(--bg-light);
    text-align: center;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.lazer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.lazer-item {
    background: var(--primary);
    padding: 40px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.lazer-item:hover {
    transform: translateY(-5px);
}

.lazer-item h3 {
    color: var(--accent);
    margin-bottom: 15px;
}

.lazer-item p {
    color: var(--bg-light);
    opacity: 0.9;
    font-size: 0.95rem;
}

.lazer-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lazer-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--accent);
    stroke-width: 1.5;
}

.lazer-featured-image img {
    width: 100%;
    max-width: 900px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-premium);
}

/* Projeto & Stats */
.projeto {
    padding: var(--section-padding);
    background: var(--white);
}

.stats-card {
    background: var(--primary);
    color: var(--accent);
    padding: 60px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.stats-card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -10px;
}

.stats-card-icon svg {
    width: 52px;
    height: 52px;
    stroke: var(--accent);
}

.stat-item strong {
    display: block;
    font-family: var(--font-title);
    font-size: 2rem;
    margin-bottom: 5px;
}

.stat-item span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    opacity: 0.95;
}

/* Valorização */
.valorizacao {
    padding: var(--section-padding);
    background: #f0f0f0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.val-card {
    padding: 50px;
    background: var(--white);
    border-radius: var(--radius);
}

.val-card-img {
    width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: var(--radius);
    display: block;
}

.val-card.trust {
    background: var(--primary);
    color: var(--text-light);
}

.val-card.trust h2 {
    color: var(--accent);
}

.val-partners-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

.val-partners-list li {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.val-partners-list li::before {
    content: "•";
    color: var(--accent);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.val-partner-link {
    color: var(--accent);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.val-partner-link:hover {
    color: var(--white);
}

.val-partners-list li a:not(.val-partner-link) {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.val-partners-list li a:not(.val-partner-link):hover {
    color: var(--accent);
}

.val-partnership-footer {
    font-size: 0.875rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Contato & Form */
.contato {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.finance-disclaimer {
    font-size: 10px;
    opacity: 0.8;
    margin-top: 15px;
}

.form-box {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-premium);
}

.form-box h3 {
    margin-bottom: 30px;
    color: var(--primary);
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.input-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: var(--accent);
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-submit:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
}

/* CTA Final */
.cta-final {
    padding: 100px 20px;
    background: linear-gradient(rgba(53, 70, 50, 0.9), rgba(53, 70, 50, 0.9)),
        url('../assets/drone-imagem.png') no-repeat center center/cover;
    background-attachment: fixed;
    color: var(--text-light);
    text-align: center;
}

.cta-final h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-final p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Seção Cidade */
.cidade {
    padding: 100px 20px 160px 20px;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.cidade-divider {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 74px;
    background-image: url('../assets/grafismos/graf03.svg');
    background-repeat: repeat-x;
    background-position: bottom center;
    background-size: 600px 74px;
    z-index: 10;
    opacity: 0.85;
}

.cidade .eyebrow {
    display: block;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
    opacity: 0.85;
}

.cidade h2 {
    font-family: var(--font-title);
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 40px;
}

.cidade-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.cidade-flag-col {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    aspect-ratio: 16 / 9;
}

.cidade-flag-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.cidade-flag-col:hover .cidade-flag-img {
    transform: scale(1.03);
}

.cidade-intro-col p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
    opacity: 0.9;
}

.cidade-intro-col p:last-child {
    margin-bottom: 0;
}

.cidade-bottom-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 45px;
}

.cidade-bottom-row .editorial-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
    opacity: 0.85;
}

.cidade-bottom-row .highlight-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    border-left: 4px solid var(--accent);
    padding-left: 20px;
    font-style: italic;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .cidade {
        padding: 60px 20px 100px 20px;
    }

    .cidade-top-row {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 35px;
    }

    .cidade-bottom-row {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 35px;
    }
}

/* Responsividade Extra */
@media (max-width: 992px) {
    .form-wrapper,
        .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-final h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    /* =========================================
       TIPOGRAFIA MOBILE (Ajuste os valores aqui)
       ========================================= */
    h1 {
        font-size: 2.5rem;

        /* Original: 4rem */
    }

    h2 {
        font-size: 2.5rem;
        text-align: center;

        /* Original: ~2.8rem */
    }

    h3 {
        font-size: 1.25rem;

        /* Original: 1.4rem */
    }

    p {
        font-size: 1rem;

        /* Tamanho base ideal para leitura em celular */
    }

    /* Header Mobile Fix */
    header {
        padding: 15px 0;
    }

    .logo img {
        max-width: 150px;
        width: 100%;
        height: auto !important;
        object-fit: contain;
    }

    .header-cta .btn {
        padding: 10px 16px;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    /* Backgrounds Responsivos e Espaçamentos */
    .hero {
        background: url('../assets/hero-bg_mobile.webp') no-repeat center center/cover;
        padding-top: 100px;
    }

    .hero-video {
        display: none;
    }

    .cta-final {
        background: linear-gradient(rgba(53, 70, 50, 0.9), rgba(53, 70, 50, 0.9)), url('../assets/hero_alto_do_bosque_mobile.webp') no-repeat center center/cover;
    }
}

.impact-text {
    font-weight: 100;
    font-size: 18px;
}

/* **
_______________________________
SEÇÃO 2 DE EVOLUÇÃO DA OBRA
_______________________________ */
/* =========================================
           ESTILOS DA EVOLUÇÃO DA OBRA - VERSÃO 2 
           ========================================= */
.evolucao-v2 {
    background-color: #314231;
    padding: 100px 20px;
    border-top: 1px solid rgba(227, 193, 141, 0.1);
    border-bottom: 1px solid rgba(227, 193, 141, 0.1);
}

.container-v2 {
    max-width: 1100px;
    margin: 0 auto;
}

.titulo-v2 {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 80px;
    color: #E3C18D;
    font-size: 32px;
    font-weight: 700;
}

.roadmap-wrapper-v2 {
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

/* A linha mestre que conecta os pontos */
.roadmap-wrapper-v2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(227, 193, 141, 0.2);
    z-index: 1;
    transform: translateY(-50%);
}

.roadmap-item-v2 {
    display: grid;

    /* Grid de 3 linhas: Texto (se for ímpar), Nó, Texto (se for par) */
    grid-template-rows: 1fr 50px 1fr;
    gap: 15px;
    align-items: center;
    justify-items: center;
    flex: 1;
    z-index: 2;
    text-align: center;
}

/* Mágica do Zig-Zag: Ímpares em cima, Pares embaixo */
.roadmap-item-v2:nth-child(odd) .roadmap-label-v2 {
    grid-row: 1;
    align-self: end;
}

.roadmap-item-v2:nth-child(even) .roadmap-label-v2 {
    grid-row: 3;
    align-self: start;
}

.node-wrapper-v2 {
    grid-row: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
}

/* Pontos (Sempre grandes para caber a porcentagem) */
.roadmap-node-v2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #314231;
    border: 2px solid rgba(227, 193, 141, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Ponto ativo (Atual - com brilho) */
.roadmap-item-v2.ativo .roadmap-node-v2 {
    border: 3px solid #E3C18D;
    background-color: rgba(227, 193, 141, 0.1);
    box-shadow: 0 0 20px rgba(227, 193, 141, 0.2);
}

.percent-v2 {
    font-weight: 700;
    font-size: 14px;
    color: #E3C18D;
}

.roadmap-label-v2 {
    font-size: 13px;
    line-height: 1.4;
    max-width: 110px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    font-weight: 400;
    color: var(--bg-light);

    /* Bege Linho */
}

/* Destaque para a legenda da fase ativa */
.roadmap-item-v2.ativo .roadmap-label-v2 {
    opacity: 1;
    font-weight: 700;
    color: #E3C18D;

    /* Areia/Dourado */
}

/* =========================================
           RESPONSIVIDADE (MOBILE & TABLET)
           Transforma a linha horizontal em vertical
           ========================================= */
@media (max-width: 850px) {
    .evolucao-v2 {
        padding: 60px 20px;
    }

    .titulo-v2 {
        margin-bottom: 50px;
        font-size: 26px;
    }

    .roadmap-wrapper-v2 {
        flex-direction: column;
        gap: 30px;
        padding-left: 20px;
        align-items: flex-start;

        /* Alinha os itens à esquerda */
    }

    /* Linha vertical no mobile */
    .roadmap-wrapper-v2::before {
        left: 44px;

        /* Ajuste fino para o centro da bolinha (20px padding + 25px centro = 45px, com 2px de espessura) */
        top: 0;
        bottom: 0;
        width: 2px;
        height: 100%;
        transform: none;
    }

    .roadmap-item-v2 {
        display: flex;
        flex-direction: row;
        align-items: center;

        /* Centraliza o texto verticalmente com a bolinha */
        text-align: left;
        gap: 15px;
        width: 100%;

        /* Ocupa a largura toda para não quebrar feio */
    }

    /* Reseta a lógica do zig-zag no mobile e o grid-row */
    .roadmap-item-v2:nth-child(odd) .roadmap-label-v2,
        .roadmap-item-v2:nth-child(even) .roadmap-label-v2 {
        max-width: none;
        opacity: 0.6;
        grid-row: auto;

        /* Tira o alinhamento de grid do desktop */
        align-self: center;

        /* Centraliza o texto com a bolinha */
    }

    .roadmap-item-v2.ativo .roadmap-label-v2 {
        opacity: 1;
    }

    .node-wrapper-v2 {
        order: -1;

        /* Coloca a bolinha ANTES do texto */
        margin-right: 0;
        flex-shrink: 0;
        width: 50px;

        /* Garante que o centro bate com a linha */
        display: flex;
        justify-content: center;
        align-items: center;
        grid-row: auto;

        /* Tira o alinhamento de grid do desktop */
    }
}

/* **
_______________________________
_______________________________ */
/* Slider de Lazer */
.lazer-slider-container {
    width: 90%;
    max-width: 900px;
    margin: 0px auto;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-premium);
}

.lazer-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.lazer-slide {
    min-width: 100%;
}

.lazer-slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0px 15px;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 10px;
    pointer-events: auto;
    transition: 0.3s;
}

.slider-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgb(221, 221, 221);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--primary);
    width: 20px;
    border-radius: 10px;
}

/* Media Queries para Responsividade */
@media (max-width: 768px) {
    /* Hero Section */
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .hero .eyebrow {
        font-size: 1rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .btn-hero {
        padding: 15px 30px;
        font-size: 1rem;
    }

    /* Storytelling Section */
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-badge {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        padding: 30px 40px;
        margin-bottom: -40px;

        /* Puxa a foto para baixo dele */
        z-index: 2;

        /* Garante que fica por cima da foto */
        font-size: 1rem;
        box-sizing: border-box;
    }

    .compact-input-row {
        flex-direction: column;
        gap: 10px;
    }

    /* Slider de Lazer - Mobile */
    .lazer-slider-container {
        width: 100%;
    }

    .lazer-slide img {
        height: 300px;
    }

    /* Cidade Section - Mobile */
    .cidade .eyebrow {
        text-align: center;
    }
}

/* =========================================
   NOVA SEÇÃO DE LOCALIZAÇÃO (MAPAS LADO A LADO)
   ========================================= */
.localizacao-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
}

.localizacao-header h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.localizacao-header p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

.localizacao-maps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
}

.map-card-v2 {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

.map-card-header {
    background: var(--primary);
    color: var(--white);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.map-card-header svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
}

.map-card-header h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--white);
}

.map-card-body {
    position: relative;
    padding: 20px;
    background: #F8F9F5;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 11;
    cursor: pointer;
    overflow: hidden;
}

.map-img-v2 {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.map-card-body:hover .map-img-v2 {
    transform: scale(1.02);
}

/* Badges sobre os mapas */
.map-zoom-badge-v2,
.map-link-badge-v2 {
    position: absolute;
    bottom: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-premium);
    transition: all 0.3s ease;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.map-zoom-badge-v2 {
    right: 20px;
    pointer-events: none;
}

.map-link-badge-v2 {
    left: 20px;
}

.map-card-body:hover .map-zoom-badge-v2,
.map-card-body:hover .map-link-badge-v2 {
    background: var(--accent);
    color: var(--primary);
}

.map-zoom-badge-v2 svg,
.map-link-badge-v2 svg {
    width: 14px !important;
    height: 14px !important;
    stroke: currentColor !important;
    stroke-width: 2;
}

@media (max-width: 576px) {
    .map-zoom-badge-v2 span,
    .map-link-badge-v2 span {
        display: none;
    }

    .map-zoom-badge-v2,
    .map-link-badge-v2 {
        padding: 0;
        border-radius: 50%;
        width: 38px;
        height: 38px;
        justify-content: center;
        gap: 0;
        bottom: 15px;
    }

    .map-zoom-badge-v2 {
        right: 15px;
    }

    .map-link-badge-v2 {
        left: 15px;
    }

    .map-zoom-badge-v2 svg,
    .map-link-badge-v2 svg {
        width: 16px !important;
        height: 16px !important;
    }
}

@media (max-width: 992px) {
    .localizacao-maps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 15, 10, 0.95);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: var(--white);
    font-size: 40px;
    font-weight: 300;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.lightbox-close:hover {
    color: var(--primary);
    background: var(--accent);
    transform: rotate(90deg);
}

/* Rodapé - Informações Legais / Disclaimer */
.footer-disclaimer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.72rem;
    line-height: 1.6;
    color: var(--text-light);
    opacity: 0.65;
    text-align: justify;
}

.footer-disclaimer p {
    margin-bottom: 12px;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

/* Botão Flutuante do WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
}

.footer-phone {
    margin-top: 10px;
    font-weight: 600;
    color: var(--primary);
}