@font-face {
    font-family: 'Optika';
    src: url('./assets/fonts/Optika-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Optika';
    src: url('./assets/fonts/Optika-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Optika';
    src: url('./assets/fonts/Optika-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Optika';
    src: url('./assets/fonts/Optika-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Optika';
    src: url('./assets/fonts/Optika-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

:root {
    --primary-color: #0e162b; /* Navy blue profundo atualizado */
    --accent-color: #C9A96A; /* Bronze/Champagne dourado */
    --text-dark: #333333; /* Grafite escuro */
    --text-light: #F5F0E8; /* Creme */
    --bg-base: #F5F0E8; /* Off-white / Creme */
    --bg-panel: #0e162b; /* Fundo de painéis e footer atualizado */
    --font-main: 'Optika', sans-serif;
    --font-serif: 'Optika', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-base);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Tipografia */
.font-serif {
    font-family: var(--font-serif);
}

.font-sans {
    font-family: var(--font-main);
}

.uppercase {
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

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

h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.pre-title {
    font-family: var(--font-main);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.subtitle {
    font-family: var(--font-main);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--text-dark);
}

.highlight-accent {
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 0.15em;
}

.text-white { color: #ffffff !important; }
.text-accent { color: var(--accent-color) !important; }
.text-center { text-align: center; }

.divider {
    width: 60px;
    height: 1px;
    background-color: var(--accent-color);
    margin: 20px 0 40px;
}

.divider-small {
    width: 80%;
    max-width: 120px;
    height: 1px;
    background-color: var(--accent-color);
    margin: 10px 0;
}

.mx-auto { margin-left: auto; margin-right: auto; }
.mb-3 { margin-bottom: 1rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2.5rem; }

/* Estrutura Global */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 96px 0;
}

.section-navy {
    background-color: var(--bg-panel);
    color: var(--text-light);
}

.section-navy h1, .section-navy h2, .section-navy h3 {
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-main);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-accent:hover {
    background-color: #d8b87a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--accent-color);
}

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

.btn-block {
    display: block;
    width: 100%;
}

/* Header Gradient */
.header-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    z-index: 999;
    pointer-events: none;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 25px 0;
    background: transparent;
    border-top: 15px solid #4a4031;
}

.navbar.scrolled {
    background: rgba(14, 22, 43, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-top: 15px solid #4a4031;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled + .header-gradient {
    display: none;
}

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

/* Nav logo image */
.nav-logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition);
    filter: brightness(0) invert(1); /* Força a logo a ficar branca */
}

.desktop-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-right: 40px;
}

.desktop-nav ul {
    display: flex;
    gap: 40px;
    align-items: center;
}

.desktop-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    transition: color 0.3s ease;
}

.navbar.scrolled .desktop-nav a {
    text-shadow: none;
}

.desktop-nav a:hover {
    color: #ffffff;
}

.cta-nav .btn-outline {
    padding: 12px 25px;
    font-size: 11px;
    letter-spacing: 0.15em;
    font-weight: 600;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid var(--accent-color);
}

.cta-nav .btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    transition: var(--transition);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg-panel);
    z-index: 999;
    padding: 100px 40px;
    box-shadow: -5px 0 30px rgba(0,0,0,0.2);
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav a {
    font-size: 1.1rem;
    font-family: var(--font-main);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--text-dark);
    padding-top: 80px; /* To account for navbar */
    padding-bottom: 64px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.hero-bg-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(80px) saturate(1.2);
    transform: scale(1.2);
    z-index: 1;
}

.hero-img-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.hero-img-contain {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: cover;
    /* Degradê que faz a imagem sumir nas laterais, mesclando com o fundo desfocado */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

/* Leve gradiente navy na base (sem forçar dourado) */
.hero-golden-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(14, 22, 43, 0.45) 0%, rgba(14, 22, 43, 0) 35%);
}

/* Scrim atrás do texto (creme para transparente) */
.hero-scrim-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Clareamento suave radial (imperceptível) para dar leitura ao navy */
    background: radial-gradient(ellipse at left center, rgba(245, 240, 232, 0.5) 0%, rgba(245, 240, 232, 0.2) 30%, transparent 55%);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 40px;
}

/* Left Column */
.hero-left {
    flex: 0 0 50%;
    max-width: 580px;
    padding-top: 64px;
}

.hero-logo {
    font-size: 1.8rem;
    letter-spacing: 0.3em;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.hero-titles .pre-title {
    margin-bottom: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #ffffff; /* Atualizado para branco a pedido do cliente */
    text-shadow: 0 1px 3px rgba(0,0,0,0.35);
}

.hero-titles h1 {
    font-size: 4rem;
    line-height: 1.05;
    color: var(--primary-color);
}

.hero-signature-title {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    margin-bottom: 48px;
}

/* Logo Pietro */
.hero-logo-img {
    width: 100%;
    max-width: 250px;
    height: auto;
}

/* Visibility Utilities */
.mobile-only { display: none !important; }
.desktop-only { display: block; }

.hero-specs {
    margin-top: 0;
}

.spec-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.spec-number {
    font-size: 2.8rem;
    line-height: 0.8;
    color: #ffffff;
    font-weight: 600;
}

.spec-text-block {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.spec-title {
    font-size: 1.0rem;
    color: #ffffff;
    letter-spacing: 0.1em;
    line-height: 1.1;
    font-weight: 600;
}

.spec-desc {
    font-family: var(--font-main);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 4px;
}

.spec-divider {
    width: 80px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
    margin: 32px 0;
    opacity: 1;
}

/* Right Column */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* Form Panel in Hero */
.hero-form-panel {
    background-color: var(--bg-panel);
    padding: 24px 25px;
    width: 100%;
    max-width: 330px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    color: #ffffff;
    border-top: 3px solid var(--accent-color);
}

.hero-form-panel .form-header h3 {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    color: #ffffff;
    margin-bottom: 5px;
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    margin-bottom: 3px;
    color: rgba(255,255,255,0.7);
}

.form-group input {
    width: 100%;
    padding: 6px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: #ffffff;
    font-family: var(--font-main);
    font-size: 0.85rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-bottom-color: var(--accent-color);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    margin-top: 4px;
}

.form-checkbox label {
    font-size: 0.65rem;
    line-height: 1.4;
    color: rgba(255,255,255,0.5);
}

.spam-notice {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    text-align: center;
    margin-top: 15px;
}

/* Address Bar */
.address-bar {
    background-color: var(--bg-panel);
    padding: 20px 0;
    color: var(--text-light);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.address-bar p {
    font-family: var(--font-main);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    margin: 0;
    text-transform: uppercase;
}

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

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.feature-item {
    background: transparent;
    padding: 20px;
    border: 1px solid rgba(14, 22, 43, 0.1);
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--accent-color);
    background-color: #ffffff;
}

.feature-item p {
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--primary-color);
}

/* Video Embed */
.video-container {
    position: relative;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

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

.video-container:hover img {
    transform: scale(1.03);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.video-container:hover .play-btn {
    background: var(--accent-color);
    color: #ffffff;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Sliders */
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.slider::-webkit-scrollbar {
    display: none;
}

.slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    position: relative;
    aspect-ratio: 16/9;
}

@media (min-width: 768px) {
    #slider-lazer .slide, #slider-apartamento .slide { flex: 0 0 50%; }
}
@media (min-width: 1024px) {
    #slider-lazer .slide, #slider-apartamento .slide { flex: 0 0 33.333%; }
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--bg-panel);
    border: none;
    border-radius: 0;
    font-size: 1.2rem;
    color: var(--accent-color);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: var(--accent-color);
    color: var(--bg-panel);
}

.slider-nav.prev { left: 0; }
.slider-nav.next { right: 0; }

/* Amenities Inline */
.amenities-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.amenities-inline span {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: var(--text-light);
    text-transform: uppercase;
    padding: 4px 6px;
}

.amenity-dot {
    color: var(--accent-color);
    font-size: 1.2rem;
    line-height: 1;
    padding: 0 2px;
}

/* Progress Section */
.progress-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-family: var(--font-main);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--primary-color);
}

.progress-bar {
    width: 100%;
    height: 2px;
    background: rgba(14, 22, 43, 0.1);
}

.progress-fill {
    height: 100%;
    background: var(--accent-color);
}

.border-light {
    background-color: rgba(255,255,255,0.2);
}

/* Flex Section */
.flex-section {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

.map-side, .form-side {
    flex: 1;
    min-width: 300px;
}

.map-side {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.map-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.map-side .content-box {
    position: relative;
    z-index: 2;
}

/* Footer */
.site-footer {
    padding: 80px 0 30px;
}

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

.footer-brand h2 {
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}

.footer-brand p, .footer-contact p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

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

.footer-contact p {
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

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

.legal-links a:hover {
    color: #ffffff;
}

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

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

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

/* Responsive */
@media (max-width: 1100px) {
    .hero-container {
        flex-direction: column;
        justify-content: center;
        text-align: left;
        padding-top: 40px;
        gap: 30px;
    }
    
    .hero-left {
        flex: 1;
        max-width: 100%;
        padding-top: 32px;
    }
    
    .hero-right {
        justify-content: flex-start;
        width: 100%;
    }
    
    .hero-form-panel {
        max-width: 100%;
    }

    .hero-scrim-left {
        background: linear-gradient(to bottom, rgba(245, 240, 232, 0.75) 0%, rgba(245, 240, 232, 0.6) 40%, rgba(14, 22, 43, 0.7) 100%);
    }

    .hero-logo-img { max-width: 320px; }
    .hero-signature-title { margin-bottom: 36px; }
    
    .desktop-nav, .cta-nav { display: none; }
    .mobile-menu-btn { display: flex; }
}

@media (max-width: 768px) {
    /* ========== GLOBAL ========== */
    .section-padding { padding: 60px 0; }
    h2 { font-size: 1.4rem; font-weight: 600; }
    .container { padding: 0 24px; }

    /* ========== HERO — MOBILE OVERLAY LAYOUT ========== */
    .hero {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        padding: 0;
    }

    .hero-container {
        display: contents; /* Permite controlar a ordem com flex */
    }

    /* 1. Header Transparente */
    .navbar {
        background: transparent !important;
        border-top: none !important;
        box-shadow: none !important;
    }
    .nav-logo-img {
        filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0,0,0,0.8)); /* Branco + sombra para não sumir */
    }
    .mobile-menu-btn span {
        background-color: #ffffff !important; /* Hambúrguer branco */
        box-shadow: 0 1px 3px rgba(0,0,0,0.5); /* Para não sumir no céu claro */
    }

    /* 3. Imagem de fundo: cobre exatamente a primeira tela (100vh) */
    .hero-bg {
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 100vh; /* Fica presa na primeira tela, não estica pro form */
        width: 100%;
        max-height: 100vh;
        z-index: 0;
    }

    .hero-img {
        object-position: center center;
    }

    /* Gradiente sutil escuro para contraste (opcional, como na home original) */
    .hero-bg::after {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: linear-gradient(to bottom, rgba(14,22,43,0.6) 0%, rgba(14,22,43,0.2) 50%, rgba(14,22,43,0.7) 100%);
        pointer-events: none;
        z-index: 1;
    }

    .hero-golden-overlay, .hero-scrim-left {
        display: none !important;
    }

    /* 2. Bloco de texto centralizado sobre a foto */
    .hero-left {
        order: 1; /* Primeira coisa no flex */
        width: 100%;
        min-height: 100vh; /* Empurra o form e a faixa pro lado de baixo da dobra */
        display: flex;
        flex-direction: column;
        justify-content: center; /* Centraliza verticalmente na foto */
        align-items: center;
        text-align: center;
        padding: 100px 24px 40px;
        position: relative;
        z-index: 2;
        background: transparent;
    }

    .hero-titles {
        display: flex;
        flex-direction: column; /* Ordem natural: Pietro logo, depois eyebrow? Wait. */
        align-items: center;
        width: 100%;
        margin-bottom: 40px;
    }

    /* Garantir a ordem: Logo -> Eyebrow */
    .hero-signature-title {
        order: 1;
        margin-bottom: 20px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-logo-img {
        max-width: 240px;
    }

    .hero-titles .pre-title {
        order: 2;
        font-size: 0.65rem;
        letter-spacing: 0.12em;
        margin-bottom: 0;
        color: #ffffff; /* Branco */
        text-shadow: 1px 1px 3px rgba(0,0,0,0.5); /* Contraste extra */
        text-align: center;
    }

    /* Specs com réguas bronze e texto branco */
    .hero-specs {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-left: 0;
        width: 100%;
    }

    .spec-row {
        flex-direction: column;
        align-items: center;
        gap: 2px;
        margin-bottom: 0;
    }

    .spec-number { font-size: 2rem; color: #ffffff; line-height: 1; font-weight: 600; margin-bottom: 0; }
    .spec-title { font-size: 0.85rem; color: #ffffff; line-height: 1.1; letter-spacing: 0.1em; font-weight: 600; }
    .spec-desc { font-size: 0.65rem; color: #ffffff; margin-top: 2px; font-weight: 600; text-transform: lowercase; }
    
    .spec-divider { 
        display: block; 
        width: 40px; 
        height: 1px;
        margin: 15px auto; 
        background-color: var(--accent-color); /* Bronze */
    }

    /* 4/5. Faixa e Formulário Navy logo abaixo da foto (ordem 3 e 4) */
    .address-bar.mobile-only {
        background-color: var(--primary-color);
        border-bottom: 1px solid rgba(255,255,255,0.05); /* Separação sutil do form */
    }
    
    .hero-right {
        order: 4; /* Fica abaixo do address bar (que tem order 3 no HTML inline) */
        position: relative;
        z-index: 2;
        width: 100%;
        margin-top: 0;
        padding: 40px 24px;
        background-color: var(--primary-color); /* Fundo Navy sólido abaixo da imagem */
    }

    .hero-form-panel {
        max-width: 100%;
        padding: 0;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
    }

    /* Visibility Utilities Mobile */
    .mobile-only { display: block !important; }
    .desktop-only { display: none !important; }

    .hero-form-panel .form-header h3 {
        font-size: 1rem;
    }

    .form-group input {
        font-size: 1rem; /* evitar zoom no iOS */
    }

    /* ========== ADDRESS BAR ========== */
    .address-bar p {
        font-size: 0.75rem;
        letter-spacing: 0.05em;
    }

    /* ========== FEATURES GRID ========== */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .feature-item {
        padding: 14px 8px;
    }

    .feature-item p {
        font-size: 0.75rem;
        letter-spacing: 0.05em;
    }

    .feature-item svg {
        width: 28px;
        height: 28px;
    }

    /* ========== VIDEO ========== */
    .video-container {
        border-radius: 0;
    }

    .play-btn {
        width: 56px;
        height: 56px;
        font-size: 1.2rem;
    }

    /* ========== SLIDER ARROWS ========== */
    .slider-nav {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    /* ========== AMENITIES ========== */
    .amenities-inline span {
        font-size: 0.75rem;
        padding: 3px 4px;
    }

    .amenity-dot {
        font-size: 1rem;
    }

    /* ========== PROGRESS ========== */
    .progress-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .progress-info {
        font-size: 0.8rem;
    }

    /* ========== LOCALIZAÇÃO / FORM BOTTOM ========== */
    .flex-section {
        flex-direction: column;
    }

    .map-side, .form-side {
        min-width: 100%;
    }

    .map-side {
        padding: 60px 24px !important;
    }

    .form-side {
        padding: 60px 24px !important;
    }

    .map-side .content-box h2 {
        font-size: 1.8rem;
    }

    /* ========== FOOTER ========== */
    .site-footer {
        padding: 48px 0 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 32px;
    }

    .footer-brand h2 {
        font-size: 1.4rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding-top: 20px;
    }

    .legal-links {
        flex-direction: column;
        gap: 10px;
    }

    /* ========== WHATSAPP FLOAT ========== */
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* Extra small (iPhone SE, 375px) */
@media (max-width: 400px) {
    .hero-logo-img {
        max-width: 220px;
    }

    .spec-number { font-size: 1.8rem; }
    .spec-title { font-size: 0.75rem; }
    .spec-divider { width: 50px; margin: 14px auto; }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-titles .pre-title {
        font-size: 0.55rem;
    }
}
