/* ==========================================
   VARIÁVEIS DE CORES E FONTES
========================================== */
:root {
    --green: #009540;
    --green-glow: rgba(0, 149, 64, 0.4);
    /* Removemos o gold. Variáveis abaixo seguem a paleta clean. */
    --sand: #f8f9fa;
    --dark: #212529;
    --font-primary: 'Roboto', sans-serif;
}

/* FORÇANDO A ROBOTO EM TUDO */
body, h1, h2, h3, h4, h5, h6, p, a, span, div {
    font-family: var(--font-primary) !important;
}

body {
    color: #495057;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Utilitários de Texto */
.fw-black { font-weight: 900 !important; }
.text-green { color: var(--green) !important; }
/* Alteramos a classe .text-gold para aplicar verde e evitar quebras de layout antigas */
.text-gold { color: var(--green) !important; } 
.bg-sand { background-color: var(--sand); }
/* Alteramos a classe bg-gold-light para cinza claro */
.bg-gold-light { background-color: #e9ecef !important; }
.py-100 { padding: 100px 0; }
.tracking-widest { letter-spacing: 2px; }

/* BADGES (Ajuste para remover cor gold) */
.badge-premium {
    background: #e9ecef;
    color: var(--dark);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid rgba(0,0,0,0.05);
}

/* ==========================================
   MENU PÍLULA FLUTUANTE
========================================== */
.glass-pill {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.nav-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 12px;
}

.nav-link:hover { color: var(--green) !important; }

/* ==========================================
   HERO FULL SCREEN (BANNER PRINCIPAL)
========================================== */
.hero-full {
    position: relative;
    height: 100vh;
    min-height: 750px;
    background: url('../img/galeria/6.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.2) 100%);
}

.z-index-2 { z-index: 2; }

.glass-card-hero {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.6);
}

/* ==========================================
   BOTÕES
========================================== */
.btn-glow-green {
    background: var(--green);
    color: white;
    font-weight: 600;
    box-shadow: 0 0 0 0 var(--green-glow);
    animation: pulse 2s infinite;
    transition: 0.3s;
    border: none;
}
.btn-glow-green:hover { background: #007a33; color: white; transform: translateY(-3px); }

@keyframes pulse {
    0% { transform: scale(0.98); box-shadow: 0 0 0 0 rgba(0, 149, 64, 0.5); }
    70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(0, 149, 64, 0); }
    100% { transform: scale(0.98); box-shadow: 0 0 0 0 rgba(0, 149, 64, 0); }
}

.btn-dark-luxury { background: var(--dark); color: white; font-weight: 500; border: none; }
.btn-dark-luxury:hover { background: var(--green); color: white; }

.btn-outline-dark { border-color: var(--dark); color: var(--dark); font-weight: 500; background: transparent; }
.btn-outline-dark:hover { background: var(--dark); color: white; }

/* ==========================================
   GALERIA LIGHTGALLERY
========================================== */
.gallery-item {
    position: relative;
    cursor: pointer;
    background: #fff;
}

.gallery-img {
    transition: transform 0.5s ease;
    height: 400px;
    object-fit: cover;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 149, 64, 0.6);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ==========================================
   CARDS DE LAZER
========================================== */
.lazer-card { height: 350px; }
.lazer-card img { height: 100%; object-fit: cover; transition: transform 0.6s ease; }

.lazer-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 50%);
}

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

/* ==========================================
   PLANTAS (SPLIDE)
========================================== */
.planta-card {
    border: 1px solid rgba(0,0,0,0.05);
    transition: 0.4s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.planta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 149, 64, 0.1);
    border-color: var(--green);
}

.blueprint { max-height: 250px; mix-blend-mode: multiply; }

/* ==========================================
   NOVOS ADENDOS: ESTÁGIO DE OBRAS & LOCALIZAÇÃO
========================================== */

/* Barras Minimalistas Obras */
.obra-item {
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.obra-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--green);
    border-radius: 10px;
    transition: width 1.5s cubic-bezier(0.1, 0, 0.2, 1);
}

/* Localização (Visual Split) */
.w-fit { width: fit-content; }

iframe {
    filter: grayscale(0.2) contrast(1.1); /* Dá um ar premium ao mapa */
    transition: all 0.5s ease;
}

iframe:hover {
    filter: grayscale(0);
}

/* ==========================================
   RESPONSIVO / MOBILE
========================================== */
@media (max-width: 991px) {
    .glass-card-hero { margin-top: 100px; }
    .hero-overlay { background: rgba(255, 255, 255, 0.9); }
    .lazer-card { height: 250px !important; }
    .gallery-img { height: 200px; }
}

/* ==========================================
   ESTILOS DO NOVO FOOTER
========================================== */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--green) !important;
    padding-left: 5px; /* Efeito suave de slide */
}

/* Garante contraste no fundo escuro */
footer .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Responsivo para o rodapé */
@media (max-width: 991px) {
    footer .col-lg-4 {
        margin-bottom: 1rem;
    }
    footer h5 {
        margin-top: 2rem;
    }
}
/* ==========================================
   ESTILOS DA SEÇÃO CTA FINAL
========================================== */
#contato {
    background: url('../img/lazer/1.webp') no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* Efeito Parallax */
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75); /* Escurece a imagem para o texto brilhar */
    z-index: 1;
}

.glass-card-cta {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.z-index-2 {
    z-index: 2;
}

/* Ajuste responsivo para o CTA */
@media (max-width: 767px) {
    .glass-card-cta {
        padding: 30px 20px !important;
    }
    #contato h2 {
        font-size: 2rem;
    }
}

/* ==========================================
   TOUR IMERSIVO (WALKTHROUGH 2D)
========================================== */
.tour-image-transition {
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.text-shadow-sm {
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
}

.btn-tour {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-tour:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    transform: translateY(-2px);
}

.btn-tour.active {
    background: var(--green);
    border-color: var(--green);
    color: white;
    box-shadow: 0 0 15px rgba(0, 149, 64, 0.5);
}

/* ... o resto do CSS do tour continua igual ... */

.text-shadow-sm {
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.btn-tour {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-tour:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

.btn-tour.active {
    background: var(--green);
    border-color: var(--green);
    color: white;
    box-shadow: 0 0 15px rgba(0, 149, 64, 0.5);
}