﻿/* ========================================
   MARCO BUTANTÃ - Landing Page Merged
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1e40af;
    --primary-light: #3b82f6;
    --primary-dark: #1e3a8a;
    --green: #059669;
    --green-light: #10b981;
    --orange: #ea580c;
    --purple: #7c3aed;
    --gold: #f59e0b;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --text: #0f172a;
    --text-secondary: #64748b;
    --border: #e2e8f0;
    --radius: 12px;
    --shadow: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

.watermark {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.04;
    display: flex;
    align-items: center;
    justify-content: center;
}

.watermark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.highlight {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo-area { display: flex; align-items: center; }

.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1.172rem;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.172rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30,64,175,0.4);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,211,102,0.4);
}

.btn-phone {
    background: var(--text);
    color: white;
}

.btn-phone:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

.btn-nav {
    background: var(--primary) !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
}

.btn-nav:hover { opacity: 0.9; }

.btn-lg { padding: 16px 32px; font-size: 1.25rem; }

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    padding: 180px 0 120px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.75) 50%, rgba(15,23,42,0.6) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge-mcmv {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    font-size: 1.122rem;
    font-weight: 500;
    color: white;
    margin-bottom: 20px;
}

.hero-mcmv-logo {
    display: block;
    max-width: 180px;
    height: auto;
    margin: 0 auto 20px;
}

.flag-icon { width: 20px; }

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.05;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.hero-title .highlight {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: white;
    background-clip: unset;
    color: white;
}

.hero-subtitle {
    font-size: 1.676rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 12px;
    font-weight: 400;
}

.hero-subtitle strong {
    color: white;
}

.hero-address {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.468rem;
    color: #94a3b8;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.hero-highlights {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.highlight-item {
    text-align: center;
}

.highlight-item strong {
    display: block;
    font-size: 1.676rem;
    color: white;
}

.highlight-item span {
    font-size: 1.122rem;
    color: #94a3b8;
}

.highlight-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

/* ========================================
   DISCOUNT BANNER
   ======================================== */
.discount-banner {
    background: linear-gradient(90deg, #dc2626, #ea580c);
    padding: 16px 0;
    overflow: hidden;
}

.discount-scroll {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.discount-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 1.222rem;
    font-weight: 500;
}

.discount-fire { font-size: 1.576rem; }

.inline-logo-caixa {
    height: 20px;
    width: auto;
    vertical-align: middle;
    margin-left: 4px;
    display: inline-block;
}

.discount-divider {
    color: rgba(255,255,255,0.4);
    font-size: 1.876rem;
}

/* ========================================
   SECTION COMMON
   ======================================== */
.section-tag {
    display: inline-block;
    padding: 4px 14px;
    background: #dbeafe;
    color: var(--primary);
    border-radius: 100px;
    font-size: 1.068rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section-tag--dark {
    background: rgba(255,255,255,0.1);
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.172rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.468rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* ========================================
   ABOUT
   ======================================== */
.about { padding: 32px 0; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.968rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.about-content p {
    color: var(--text-secondary);
    font-size: 1.422rem;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
}

.stat-box {
    text-align: center;
    padding: 16px 24px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.stat-box strong {
    display: block;
    font-size: 1.676rem;
    color: var(--primary);
}

.stat-box span {
    font-size: 1.068rem;
    color: var(--text-secondary);
}

.about-visual {
    position: relative;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    align-items: flex-end;
}

.about-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
    width: 100%;
    max-width: 320px;
}

.about-card strong { display: block; font-size: 1.222rem; }
.about-card span { font-size: 1.068rem; color: var(--text-secondary); }

.card-icon-blue, .card-icon-green, .card-icon-orange {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    flex-shrink: 0;
}

.card-icon-blue { background: #dbeafe; }
.card-icon-green { background: #dcfce7; }
.card-icon-orange { background: #ffedd5; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ========================================
   RENDA / PODER DE COMPRA
   ======================================== */
.renda {
    padding: 32px 0;
    background: var(--bg-alt);
}

.renda-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.renda-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.renda-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.renda-card--green { border-top: 4px solid var(--green); }
.renda-card--blue { border-top: 4px solid var(--primary-light); }
.renda-card--purple { border-top: 4px solid var(--purple); }
.renda-card--gold { border-top: 4px solid var(--gold); }

.renda-featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.982rem;
    font-weight: 700;
}

.renda-card-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.renda-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 1.068rem;
    font-weight: 600;
}

.renda-area {
    display: inline-block;
    background: var(--bg-alt);
    color: var(--text);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 1.068rem;
    font-weight: 600;
    border: 1px solid var(--border);
}

.renda-extra {
    display: inline-block;
    background: var(--green);
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 1.022rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.renda-card-price {
    text-align: center;
    padding: 16px 0;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.renda-label {
    display: block;
    font-size: 1.022rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.renda-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.576rem;
    font-weight: 800;
}

.renda-card--green .renda-value { color: var(--green); }
.renda-card--blue .renda-value { color: var(--primary-light); }
.renda-card--purple .renda-value { color: var(--purple); }
.renda-card--gold .renda-value { color: var(--gold); }

.renda-features {
    list-style: none;
    flex: 1;
    margin-bottom: 24px;
}

.renda-features li {
    padding: 8px 0;
    font-size: 1.172rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border);
}

.renda-features li:last-child {
    border-bottom: none;
}

.renda-features .check {
    color: var(--green);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-highlight {
    background: #fef2f2 !important;
    padding: 10px 12px !important;
    border-radius: 8px !important;
    margin-top: 8px;
    font-weight: 600;
    color: #dc2626;
}

.check-fire {
    flex-shrink: 0;
}

/* ========================================
   INVESTIDORES BANNER
   ======================================== */
.investidores-banner {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: var(--radius);
    padding: 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.investidores-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15), transparent);
    border-radius: 50%;
}

.investidores-content {
    position: relative;
    z-index: 1;
}

.investidores-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.576rem;
    margin-bottom: 16px;
    color: white;
}

.investidores-content p {
    font-size: 1.422rem;
    opacity: 0.8;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ========================================
   UNITS
   ======================================== */
.units {
    padding: 32px 0;
    background: var(--bg-alt);
}

.units-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.unit-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
}

.unit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.unit-card.featured {
    border-color: var(--purple);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--purple);
    color: white;
    text-align: center;
    padding: 6px;
    font-size: 1.022rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 1;
}

.unit-header {
    padding: 28px 24px 20px;
    text-align: center;
}

.unit-header.blue { background: linear-gradient(135deg, #dbeafe, #eff6ff); }
.unit-header.green { background: linear-gradient(135deg, #dcfce7, #f0fdf4); }
.unit-header.purple { background: linear-gradient(135deg, #ede9fe, #f5f3ff); }
.unit-header.orange { background: linear-gradient(135deg, #ffedd5, #fff7ed); }

.unit-type {
    display: block;
    font-size: 1.122rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.unit-area {
    display: block;
    font-size: 2.576rem;
    font-weight: 800;
    color: var(--text);
}

.unit-body {
    padding: 24px;
    padding-bottom: 8px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.unit-specs {
    list-style: none;
    margin-bottom: 12px;
    flex: 1;
}

.unit-specs li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1.172rem;
    color: var(--text-secondary);
}

.unit-specs li svg {
    color: var(--primary);
    flex-shrink: 0;
}

.unit-discount {
    text-align: center;
    padding: 8px 12px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fef2f2;
    border-radius: 8px;
}

.discount-badge {
    display: block;
    font-size: 1.25rem;
    color: #dc2626;
    font-weight: 700;
    line-height: 1.3;
}

.discount-value {
    font-size: 1.768rem;
    font-weight: 800;
    color: #dc2626;
}

.unit-card .btn { margin: 0 24px 24px; width: calc(100% - 48px); }

/* ========================================
   LEISURE
   ======================================== */
.leisure {
    padding: 32px 0;
}

.leisure-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.leisure-item {
    text-align: center;
    padding: 32px 16px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.leisure-item:hover {
    border-color: var(--primary);
    background: white;
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.leisure-icon {
    font-size: 2.576rem;
    margin-bottom: 12px;
}

.leisure-item--image {
    padding: 0;
    overflow: hidden;
}

.leisure-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.leisure-item--image span {
    padding: 12px;
    display: block;
    font-size: 1.122rem;
    font-weight: 600;
    color: var(--text);
}

.leisure-item span {
    font-size: 1.122rem;
    font-weight: 600;
    color: var(--text);
}

.leisure-video-btn {
    text-align: center;
    margin-top: 40px;
}

/* ========================================
   DICAS DO CORRETOR
   ======================================== */
.dicas {
    padding: 32px 0;
    background: var(--bg-alt);
}

.dicas .section-header h2 {
    font-size: 2.576rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dicas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dica-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.dica-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.dica-video-placeholder {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.dica-video-placeholder:hover {
    filter: brightness(1.1);
}

.play-button {
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s;
}

.dica-video-placeholder:hover .play-button {
    background: var(--green);
    border-color: var(--green);
    transform: scale(1.1);
}

.dica-video-label {
    color: rgba(255,255,255,0.6);
    font-size: 1.068rem;
}

.dica-info {
    padding: 24px;
}

.dica-info h3 {
    font-size: 1.468rem;
    margin-bottom: 8px;
    color: var(--text);
}

.dica-info p {
    font-size: 1.172rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   LOCATION
   ======================================== */
.location {
    padding: 32px 0;
    background: var(--bg-alt);
}

.location-map {
    margin-bottom: 48px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.location-nearby {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.nearby-item {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.nearby-item.nearby-item--img {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nearby-icon {
    font-size: 2.172rem;
    margin-bottom: 8px;
}

.nearby-img {
    width: 100%;
    max-width: 120px;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 8px;
    border: 2px solid var(--border);
}

.nearby-item--img strong,
.nearby-item--img span {
    display: block;
}

.nearby-item strong {
    display: block;
    font-size: 1.222rem;
    margin-bottom: 4px;
}

.nearby-item span {
    font-size: 1.068rem;
    color: var(--primary);
    font-weight: 600;
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
    padding: 32px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.968rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-secondary);
    font-size: 1.422rem;
    margin-bottom: 20px;
}

.contact-person {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-bottom: 24px;
}

.person-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.person-details strong {
    display: block;
    font-size: 1.468rem;
}

.person-details span {
    display: block;
    font-size: 1.122rem;
    color: var(--text-secondary);
}

.creci {
    color: var(--primary) !important;
    font-weight: 600 !important;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
    font-size: 1.676rem;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 1.122rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 1.222rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    background: var(--bg-alt);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: white;
}

.form-group textarea { resize: vertical; }

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 99;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 60px 0 40px;
    background: var(--text);
    color: white;
}

.footer-content {
    text-align: center;
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo-center {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.footer-logotipo {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.footer-info {
    margin-bottom: 24px;
}

.footer-info p {
    color: #94a3b8;
    font-size: 1.172rem;
    margin-bottom: 4px;
}

.footer-copy {
    border-top: 1px solid #334155;
    padding-top: 24px;
}

.footer-copy p {
    font-size: 1.122rem;
    color: #64748b;
    margin-bottom: 4px;
}

.footer-copy small {
    font-size: 1.022rem;
    color: #475569;
}

/* ========================================
   MOBILE MENU
   ======================================== */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .units-grid { grid-template-columns: repeat(2, 1fr); }
    .renda-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-visual { display: none; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 3.8rem; white-space: normal; }
    .hero-subtitle { font-size: 1.468rem; }
    .section-header h2 { font-size: 2.576rem; }
    .about-content h2 { font-size: 2.376rem; }
    .contact-info h2 { font-size: 2.376rem; }

    .hero-highlights { gap: 16px; flex-wrap: wrap; }

    .units-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .renda-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 64px; }
    .leisure-grid { grid-template-columns: repeat(2, 1fr); }
    .dicas-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .location-nearby { grid-template-columns: repeat(2, 1fr); }

    .nav-links { display: none; }
    .menu-toggle { display: flex; }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        padding: 24px;
        border-bottom: 1px solid var(--border);
        gap: 16px;
    }

    .hero-cta { flex-direction: column; align-items: center; }

    .contact-form-card { padding: 24px; }

    .investidores-banner { padding: 40px 24px; }
}

@media (max-width: 480px) {
    .hero { padding: 140px 0 80px; min-height: auto; }
    .hero-title { font-size: 3rem; }
    .hero-highlights { flex-direction: column; gap: 12px; }
    .highlight-divider { width: 40px; height: 1px; }
    .leisure-grid { grid-template-columns: repeat(2, 1fr); }
    .location-nearby { grid-template-columns: 1fr 1fr; }
    .about-stats { flex-direction: column; gap: 12px; }
}
