:root {
    /* Pulso Colors */
    --primary-color: #5c5630; /* Verde-oliva */
    --primary-light: #6e673a;
    --primary-dark: #433f23;
    --accent-color: #823c23; /* Terracota */
    --accent-hover: #994729;
    --onix-orange: #ff6600; /* Onix Logo Orange */
    --onix-orange-hover: #cc5200;
    
    --text-main: #2d3748;
    --text-muted: #718096;
    --text-light: #ffffff;
    
    --bg-main: #fcfcfc;
    --bg-light: #cec6bb; /* Bege claro do manual */
    --bg-dark: #433f23;
    --surface: #ffffff;
    
    /* Typography */
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    /* Spacing & Layout */
    --container-max: 1200px;
    --section-pad: 100px 0;
    
    /* Effects */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    color: var(--primary-color);
    font-weight: 600;
}

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

ul {
    list-style: none;
}

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

.section {
    padding: var(--section-pad);
}

.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); color: var(--text-light); }
.bg-dark h2, .bg-dark h3 { color: var(--text-light); }
.text-center { text-align: center; }
.text-accent { color: var(--accent-color) !important; }
.mobile-only { display: none !important; }
.mobile-only-item { display: none !important; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--surface);
    box-shadow: 0 8px 20px rgba(13, 41, 66, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(13, 41, 66, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--surface);
}

.btn-orange {
    background-color: var(--onix-orange);
    color: var(--surface);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.2);
}

.btn-orange:hover {
    background-color: var(--onix-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 102, 0, 0.3);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

.mt-4 { margin-top: 2rem; }

/* Section Headers */
.section-subtitle {
    display: inline-block;
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: var(--bg-light); /* Solid background to blend logo */
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.navbar .nav-links a {
    color: var(--primary-color);
    font-weight: 500;
}

.navbar .nav-btn {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.navbar .nav-btn:hover {
    background: var(--primary-color);
    color: var(--surface);
}

.navbar .mobile-menu-btn {
    color: var(--primary-color);
}

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

.logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--surface);
    transition: var(--transition);
}

.logo span {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--surface);
    font-weight: 500;
    transition: var(--transition);
    font-size: 1rem;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.navbar.scrolled .nav-btn {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.navbar.scrolled .nav-btn:hover {
    background-color: var(--primary-color);
    color: var(--surface);
}

.nav-btn {
    border-color: rgba(255,255,255,0.5);
    color: var(--surface);
}

.nav-btn:hover {
    background-color: var(--surface);
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--surface);
    font-size: 2rem;
    cursor: pointer;
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('assets/images/hero.jpg') center/cover no-repeat;
    background-color: var(--primary-color); /* Fallback */
    color: var(--surface);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(13, 41, 66, 0.9), rgba(13, 41, 66, 0.4));
    z-index: 1;
}

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

.hero h1 {
    font-size: 4rem;
    color: var(--surface);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--surface);
    opacity: 0.8;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--surface);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--surface);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

/* Sobre Section */
.sobre-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
    font-family: var(--font-serif);
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sobre-images {
    position: relative;
    height: 600px;
}

.image-wrapper {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.img-1 {
    width: 70%;
    height: 70%;
    top: 0;
    right: 0;
    z-index: 1;
}

.img-2 {
    width: 60%;
    height: 60%;
    bottom: 0;
    left: 0;
    z-index: 2;
    border: 10px solid var(--bg-main);
}

/* Diferenciais Section */
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 180, 216, 0.3);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 180, 216, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.card:hover .icon-box {
    background: var(--accent-color);
    color: var(--surface);
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-muted);
}

/* Localização Section */
.localizacao-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    background: #e2e8f0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.localizacao-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Evolução Section */
.timeline {
    max-width: 800px;
    margin: 4rem auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    height: 100%;
    width: 2px;
    background: rgba(255,255,255,0.1);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 3rem;
}

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

.timeline-dot {
    position: absolute;
    left: 11px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.timeline-item.completed .timeline-dot {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.timeline-item.active .timeline-dot {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.2);
}

.timeline-content h3 {
    color: var(--surface);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: rgba(255,255,255,0.7);
}

/* Investimento Section */
.investimento-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.investimento-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.check-list i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 2px;
}

.card-glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.1);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    color: var(--text-main);
}



.card-glass h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.card-glass p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lead-form input {
    padding: 14px 20px;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.lead-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 41, 66, 0.1);
}

/* Galeria Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 41, 66, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: var(--surface);
    font-size: 2.5rem;
    transform: scale(0.5);
    transition: var(--transition);
}

.gallery-item:hover img, .gallery-item:hover > div:not(.gallery-overlay) {
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

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

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: var(--accent-color);
    text-decoration: none;
    cursor: pointer;
}

/* CTA Final Section */
.cta-final {
    position: relative;
    padding: 120px 0;
    background: url('assets/images/sobre1.jpg') center/cover no-repeat;
    background-color: var(--primary-light);
    background-attachment: fixed;
    color: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 41, 66, 0.85);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.cta-content h2 {
    color: var(--surface);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}


/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 60px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    max-width: 400px;
}

.footer-contact h4 {
    color: var(--surface);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 2rem 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.disclaimer {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.copy {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.copy a {
    color: var(--accent-color);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.is-visible {
    opacity: 1;
    transform: translate(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    .sobre-container, .localizacao-container, .investimento-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .img-1 { width: 80%; height: 80%; position: relative; margin: 0 auto; }
    .img-2 { display: none; }
    .sobre-images { height: auto; }
}

@media (max-width: 768px) {
    /* Section paddings */
    .section {
        padding: 80px 0;
    }
    
    /* Navbar */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--surface);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        padding: 2rem;
        gap: 2.5rem;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links a {
        color: var(--text-main);
        font-size: 1.5rem;
    }
    .nav-btn { display: none !important; }
    .mobile-menu-btn { display: block; }
    
    .mobile-only-item {
        display: block !important;
        width: 100%;
        margin-top: 1rem;
    }
    
    .mobile-nav-btn {
        width: 100% !important;
        padding: 15px 0 !important;
        font-size: 1.1rem !important;
        box-shadow: var(--shadow-md) !important;
    }

    /* Hero Section Mobile-first layout */
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
        min-height: auto;
        display: block;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero h1 { 
        font-size: 2.3rem; 
        line-height: 1.2;
        text-shadow: 0 2px 4px rgba(0,0,0,0.4);
    }
    
    .hero p {
        font-size: 1.05rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        opacity: 0.95;
    }
    
    .hero .btn {
        width: 100%;
        max-width: 320px;
        margin-bottom: 1rem;
    }
    
    /* Hero mobile only content */
    .hero-mobile-details {
        display: block !important;
        width: 100%;
        margin-top: 2.5rem;
    }
    
    .hero-mobile-stats {
        display: flex;
        gap: 1rem;
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero-stat-card {
        flex: 1;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        padding: 15px 10px;
        border-radius: var(--radius-md);
        text-align: center;
    }
    
    .hero-stat-card .stat-number {
        font-family: var(--font-serif);
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--accent-color);
        display: block;
        line-height: 1.2;
    }
    
    .hero-stat-card .stat-label {
        font-size: 0.8rem;
        color: var(--text-light);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .hero-mobile-image {
        width: 100%;
        border-radius: var(--radius-lg);
        overflow: hidden;
        margin-bottom: 2rem;
        box-shadow: var(--shadow-lg);
        aspect-ratio: 16/9;
    }
    
    .hero-mobile-benefits {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        text-align: left;
        width: 100%;
        background: rgba(13, 41, 66, 0.5);
        padding: 1.5rem;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .benefit-tag {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 0.95rem;
        color: var(--text-light);
    }
    
    .benefit-tag i {
        color: var(--accent-color);
        font-size: 1.2rem;
    }
    
    .scroll-indicator {
        display: none;
    }

    /* Sobre Empreendimento Mobile */
    .sobre-images {
        display: block !important;
        position: relative !important;
        height: 380px !important;
        margin-top: 2.5rem !important;
        width: 100% !important;
    }
    
    .sobre-images .img-1 {
        width: 75% !important;
        height: 260px !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        margin: 0 !important;
        z-index: 1 !important;
        display: block !important;
    }
    
    .sobre-images .img-2 {
        display: block !important;
        width: 65% !important;
        height: 220px !important;
        position: absolute !important;
        bottom: 0 !important;
        right: 0 !important;
        z-index: 2 !important;
        border: 6px solid var(--bg-main) !important;
    }
    
    .sobre-text {
        text-align: center;
    }
    
    .stats {
        justify-content: center;
        gap: 3rem;
    }

    /* Diferenciais Mobile */
    .section-title { font-size: 2rem; }
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .diferenciais-grid .card {
        padding: 1.8rem;
    }

    /* Localização Mobile */
    .localizacao-map {
        order: 2;
    }
    .map-placeholder {
        height: 300px;
    }
    .localizacao-text {
        text-align: center;
        order: 1;
    }
    
    /* Evolução da Obra Mobile */
    .timeline::before {
        left: 15px;
    }
    .timeline-item {
        padding-left: 45px;
        margin-bottom: 2.5rem;
    }
    .timeline-dot {
        left: 6px;
    }

    /* Investimento Mobile */
    .investimento-text {
        text-align: center;
    }
    .check-list {
        text-align: left;
    }
    .card-glass {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    .card-glass::before {
        display: none;
    }
    
    .lead-form input {
        padding: 16px;
        font-size: 1.05rem;
    }
    
    /* Galeria Mobile (1 card per view) */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .gallery-item {
        aspect-ratio: 16/10;
        border-radius: var(--radius-lg);
    }
    
    /* CTA Final Mobile */
    .cta-final {
        padding: 80px 0;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    /* Footer Mobile */
    .footer-container { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-contact ul {
        align-items: center;
    }
    .footer-bottom .container { flex-direction: column; text-align: center; gap: 0.5rem; }

    /* Sticky Mobile WhatsApp Bar */
    .whatsapp-float {
        position: fixed !important;
        bottom: 20px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: 85% !important;
        height: 56px !important;
        border-radius: 30px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        font-size: 1.05rem !important;
        font-weight: 600 !important;
        background: linear-gradient(135deg, #25d366, #128c7e) !important;
        box-shadow: 0 8px 25px rgba(18, 140, 126, 0.4) !important;
        animation: pulse-mobile 2s infinite !important;
        z-index: 9999 !important;
    }
    
    .whatsapp-float::after {
        content: "Falar com corretor" !important;
        font-size: 1.05rem !important;
        color: #fff !important;
        display: inline-block !important;
    }
    
    .whatsapp-float i {
        font-size: 1.4rem !important;
    }
}

@keyframes pulse-mobile {
    0% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 8px 25px rgba(18, 140, 126, 0.4);
    }
    50% {
        transform: translateX(-50%) scale(1.03);
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    }
    100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 8px 25px rgba(18, 140, 126, 0.4);
    }
}

/* =========================================
   Conversion UI Updates
========================================= */

/* Hero Split */
.hero-split {
    align-items: center;
    padding-top: 100px;
}
.hero-content-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
    position: relative;
    padding-bottom: 50px;
}
.hero-text-side h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}
.hero-text-side p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 90%;
}
.hero-benefits-box {
    background: rgba(0,0,0,0.5); /* Escurecido para melhor contraste */
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-color);
}
.benefits-title {
    font-weight: 600;
    margin-bottom: 1rem !important;
    font-size: 1.1rem !important;
    color: white; /* Garante leitura no fundo */
}
.check-list-hero li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
}
.check-list-hero i {
    color: var(--bg-light); /* Trocado para bege para dar contraste no fundo escuro */
    font-size: 1.2rem;
}
.hero-form-card {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-main);
    padding: 2.5rem;
}
.form-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Pulse Button */
@keyframes pulseBtn {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(130, 60, 35, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(130, 60, 35, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(130, 60, 35, 0); }
}
.btn-pulse {
    animation: pulseBtn 2s infinite;
    background-color: var(--accent-color) !important;
    border: none;
}
.btn-pulse:hover {
    background-color: var(--accent-hover) !important;
    animation: none;
}

/* Escassez Grid */
.escassez-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}
.escassez-item h4 {
    margin: 1rem 0 0.5rem;
    font-size: 1.2rem;
}
.escassez-container {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

/* Investimento Split */
.investimento-container-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

/* FAQ */
.faq-list {
    margin-top: 3rem;
}
.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
}
.faq-item.active .faq-answer {
    max-height: 200px;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .hero-content-split {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 2rem;
    }
    .escassez-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .investimento-container-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-text-side h1 {
        font-size: 2.5rem;
    }
}
