/* ========================================
   SISTEMA IMOBILIÁRIO - PREMIUM BLACK & GOLD
   Design Moderno Empresarial 2025
   Responsivo e Otimizado
   ======================================== */

/* ========== RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ========== VARIÁVEIS ========== */
:root {
    /* Cores Premium */
    --primary-black: #000000;
    --graphite-dark: #1A1A1A;
    --charcoal: #2A2A2A;
    --white-pure: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-medium: #E0E0E0;
    --gold-accent: #B8860B;
    --gold-hover: #D4AF37;
    --gold-light: rgba(184, 134, 11, 0.1);
    
    /* Texto */
    --text-primary: #000000;
    --text-secondary: #4A4A4A;
    --text-muted: #757575;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    
    /* Transições */
    --transition: all 0.3s ease;
}

/* ========== BASE ========== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--white-pure);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========== TIPOGRAFIA ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.875rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    font-size: clamp(0.95rem, 1.5vw, 1rem);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--gold-accent);
}

/* ========== CONTAINER ========== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ========== HEADER ========== */
.header {
    background: var(--white-pure);
    padding: var(--spacing-md) 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-medium);
}

/* Container específico do header - logo grudada na lateral */
.header .container {
    padding: 0 2rem 0 0;
    max-width: 100%;
    margin: 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 90px;
    gap: var(--spacing-md);
    width: 100%;
    padding-left: 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-shrink: 0;
    padding-left: 0;
    margin-left: 0;
}

.logo-image {
    height: 80px;
    width: auto;
    transition: var(--transition);
}

.logo:hover .logo-image {
    opacity: 0.8;
}

.logo-text {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 800;
    color: var(--primary-black);
    letter-spacing: -0.02em;
}

/* Navegação */
.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(1rem, 2vw, 2.5rem);
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: clamp(0.875rem, 1.5vw, 0.95rem);
    padding: var(--spacing-xs) 0;
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-black);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Botão Login */
.nav-menu .btn-login {
    background: var(--primary-black);
    color: var(--white-pure);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 2px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-menu .btn-login::after {
    display: none;
}

.nav-menu .btn-login:hover {
    background: var(--gold-accent);
    color: var(--primary-black);
    transform: translateY(-2px);
}

/* ========== HERO COM VÍDEO ========== */
.hero {
    background: var(--primary-black);
    color: var(--white-pure);
    padding: clamp(3rem, 10vw, 6rem) 0;
    position: relative;
    overflow: hidden;
    min-height: clamp(400px, 60vh, 600px);
    display: flex;
    align-items: center;
}

/* Container da Imagem Parallax */
.hero-parallax-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* Maior que 100% para permitir o movimento */
    overflow: hidden;
    z-index: 0;
}

.hero-parallax-image {
    position: absolute;
    top: -10%; /* Começa um pouco acima */
    left: 0;
    width: 100%;
    height: 120%;
    will-change: transform; /* Otimização de performance */
    backface-visibility: hidden; /* Melhora a renderização */
    transform: translateZ(0); /* Ativar aceleração por hardware */
}

.hero-parallax-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0; /* Começa invisível */
    transition: opacity 1s ease-in-out;
}

/* Fade-in quando a imagem carregar */
.hero-parallax-image img.loaded {
    opacity: 0.35; /* Ajuste a opacidade conforme necessário */
}

/* Overlay */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(0, 0, 0, 0.85) 50%,
        rgba(184, 134, 11, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    opacity: 0;
    animation: heroContentFadeIn 1s ease-in-out 0.3s forwards;
}

@keyframes heroContentFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--white-pure);
    letter-spacing: -0.03em;
    line-height: 1.1;
    white-space: nowrap;
}

.hero-accent {
    color: var(--gold-accent);
    display: inline;
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: var(--gold-accent);
    margin: var(--spacing-md) auto;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-lg);
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== SEÇÕES ========== */
.section {
    padding: clamp(3rem, 8vw, 6rem) 0;
}

.section-gray {
    background: var(--gray-light);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold-accent);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    margin-bottom: var(--spacing-xl);
    font-weight: 400;
}

/* ========== GRID DE CARDS ========== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-top: var(--spacing-xl);
}

/* ========== CARD DE IMÓVEL ========== */
.imovel-card {
    background: var(--white-pure);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-medium);
}

.imovel-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-accent);
}

/* Imagem do Card */
.imovel-card-image {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    background: var(--graphite-dark);
}

.imovel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.imovel-card:hover .imovel-card-image img {
    transform: scale(1.08);
}

/* Placeholder */
.imovel-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--graphite-dark) 0%, var(--charcoal) 100%);
    color: var(--gold-accent);
    gap: var(--spacing-sm);
    font-size: clamp(2rem, 5vw, 3rem);
}

.imovel-placeholder p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* Badges */
.imovel-card-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: var(--white-pure);
    color: var(--primary-black);
    padding: 6px var(--spacing-sm);
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-sm);
}

/* Estilos de Badge foram movidos para imovel-cards.css */

/* Conteúdo do Card */
.imovel-card-content {
    padding: var(--spacing-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.imovel-card-title {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
    line-height: 1.3;
}

.imovel-card-price {
    font-size: clamp(1.5rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}

.imovel-card-price span {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 400;
}

.imovel-card-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    flex: 1;
}

/* Features */
.imovel-card-features {
    display: flex;
    gap: clamp(0.75rem, 2vw, 1rem);
    padding: var(--spacing-sm) 0;
    border-top: 1px solid var(--gray-medium);
    border-bottom: 1px solid var(--gray-medium);
    margin-bottom: var(--spacing-sm);
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.feature-icon {
    font-size: 1.1rem;
    color: var(--gold-accent);
}

/* Footer do Card */
.imovel-card-footer {
    margin-bottom: var(--spacing-sm);
}

.imovel-card-location {
    color: var(--text-muted);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ========== BOTÕES ========== */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 2px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--primary-black);
    color: var(--white-pure);
    border: 2px solid var(--primary-black);
}

.btn-primary:hover {
    background: var(--gold-accent);
    border-color: var(--gold-accent);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.btn-small {
    padding: 10px var(--spacing-md);
    font-size: 0.875rem;
}

/* ========== SEÇÃO SOBRE ========== */
/* ========== CARD QUADRADO PREMIUM ========== */
.profile-card-square {
    max-width: 480px;
    margin: 0 auto 4rem;
}

.profile-card-inner {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(212, 175, 55, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.profile-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #d4af37 0%, #b8860b 100%);
}

.profile-card-inner:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(212, 175, 55, 0.3);
}

/* Foto com Badge */
.profile-photo-container {
    margin-bottom: 1.5rem;
}

.profile-photo-wrapper {
    position: relative;
    display: inline-block;
}

.profile-photo-wrapper img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--gold-accent);
    box-shadow: 
        0 8px 24px rgba(212, 175, 55, 0.3),
        0 0 0 2px white;
}

.profile-verified-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.profile-verified-badge svg {
    color: white;
}

/* Nome e Credenciais */
.profile-identity {
    margin-bottom: 1.25rem;
}

.profile-card-name {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary-black);
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.profile-credentials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.credential-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.credential-item svg {
    color: var(--gold-accent);
    flex-shrink: 0;
}

.credential-divider {
    color: var(--gray-medium);
    font-weight: 400;
}

/* Especialidade */
.profile-specialty {
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #fafaf9 0%, #f5f5f4 100%);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--gold-accent);
}

.profile-specialty p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Estatísticas */
.profile-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-box {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold-accent);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-light);
}

/* Botões de Contato */
.profile-contact-buttons {
    display: flex;
    gap: 0.75rem;
}

.contact-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-instagram-square {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.btn-instagram-square:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(188, 24, 136, 0.4);
}

.btn-whatsapp-square {
    background: linear-gradient(135deg, #25D366 0%, #20ba59 100%);
    color: white;
}

.btn-whatsapp-square:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.contact-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
/* ========== PERFIL DA CORRETORA ========== */
.corretora-profile-premium {
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
    background: var(--white-pure);
    border-radius: 12px;
    padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3.5rem);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-medium);
}

/* Header do Perfil */
.profile-header {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--gray-light);
}

/* Imagem do Perfil */
.profile-image-wrapper {
    position: relative;
    flex-shrink: 0;
}

.profile-image-wrapper img {
    width: clamp(100px, 15vw, 140px);
    height: clamp(100px, 15vw, 140px);
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gold-accent);
    box-shadow: var(--shadow-md);
}

/* Badge Verificado */
.profile-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--gold-accent);
    color: var(--white-pure);
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: var(--shadow-sm);
}

.profile-badge svg {
    width: 14px;
    height: 14px;
}

/* Detalhes do Perfil */
.profile-details {
    flex: 1;
}

.profile-name {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.profile-creci,
.profile-experience {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.profile-creci svg,
.profile-experience svg {
    color: var(--gold-accent);
    flex-shrink: 0;
}

/* Biografia */
.profile-bio {
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.profile-bio p {
    color: var(--text-secondary);
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    margin-bottom: var(--spacing-md);
}

.profile-highlight {
    background: var(--gold-light);
    padding: var(--spacing-md);
    border-radius: 8px;
    border-left: 4px solid var(--gold-accent);
}

.profile-highlight strong {
    color: var(--primary-black);
    font-weight: 700;
}

/* Botões de Ação */
.profile-actions {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.btn-profile {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-instagram {
    background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #F77737 100%);
    color: var(--white-pure);
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--white-pure);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #20ba59 100%);
    color: var(--white-pure);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--white-pure);
}

.btn-profile svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Responsividade - Perfil da Corretora */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .profile-details {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .profile-creci,
    .profile-experience {
        justify-content: center;
    }
    
    .profile-actions {
        width: 100%;
    }
    
    .btn-profile {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .corretora-profile-premium {
        padding: 2rem 1.5rem;
    }
    
    .profile-image-wrapper img {
        width: 100px;
        height: 100px;
        border-width: 3px;
    }
    
    .profile-badge {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .profile-badge svg {
        width: 12px;
        height: 12px;
    }
}


/* ========== MISSÃO, VISÃO E VALORES ========== */
.mvv-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-top: var(--spacing-xl);
}

.mvv-item {
    padding: 2.5rem 2rem;
    background: var(--white-pure);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.mvv-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-accent);
}

.mvv-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold-accent) 0%, #b8860b 100%);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: white;
}

.mvv-icon svg {
    width: 32px;
    height: 32px;
}

.mvv-item h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    margin-bottom: 1rem;
    color: var(--primary-black);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mvv-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--graphite-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: clamp(3rem, 8vw, 6rem) 0 var(--spacing-lg);
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-xl);
}

.footer-section h3 {
    color: var(--white-pure);
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-xs);
    display: block;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--gold-accent);
    padding-left: 4px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-brand-text {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 800;
    color: var(--white-pure);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* ========== ALERTAS ========== */
.alert {
    padding: var(--spacing-md);
    border-radius: 4px;
    margin-bottom: var(--spacing-md);
    border-left: 4px solid;
}

.alert-info {
    border-color: var(--gold-accent);
    background: var(--gold-light);
}

.alert strong {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.alert p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ========== RESPONSIVIDADE ESPECÍFICA ========== */

/* Tablets */
@media (max-width: 768px) {
    /* Header responsivo */
    .header {
        padding: 1rem 0;
    }
    
    .header .container {
        padding: 0 1rem 0 0;
    }
    
    .logo {
        padding-left: 0;
        margin-left: 0;
    }
    
    .logo-image {
        height: 60px;
    }
    
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        min-height: auto;
    }
    
    .nav-menu {
        width: 100%;
        justify-content: center;
        gap: 1rem;
        padding: 0.5rem 0;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .imovel-card-image {
        height: 220px;
    }
    
    /* Reduzir intensidade do parallax em mobile */
    .hero-parallax-container {
        height: 110%;
    }
    
    .hero-parallax-image {
        top: -5%;
        height: 110%;
    }
    
    /* Card Quadrado - Mobile */
    .profile-card-square {
        max-width: 100%;
    }
    
    .profile-card-inner {
        padding: 2.5rem 2rem;
    }
    
    .profile-photo-wrapper img {
        width: 120px;
        height: 120px;
    }
    
    .profile-verified-badge {
        width: 32px;
        height: 32px;
    }
    
    .profile-verified-badge svg {
        width: 18px;
        height: 18px;
    }
    
    .profile-card-name {
        font-size: 1.5rem;
    }
    
    .profile-specialty {
        padding: 1rem 1.25rem;
    }
    
    .profile-stats {
        padding: 1.25rem 0;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .profile-contact-buttons {
        flex-direction: column;
    }
    
    .contact-btn {
        width: 100%;
    }
    
    /* MVV - Mobile */
    .mvv-container {
        grid-template-columns: 1fr;
    }
    
    .mvv-item {
        padding: 2rem 1.5rem;
    }
}


/* ========== BREAKPOINT INTERMEDIÁRIO (600px) ========== */
@media (max-width: 600px) {
    .header .container {
        padding: 0 0.5rem 0 0;
    }
    
    .logo-image {
        height: 50px;
    }
    
    .logo-text {
        display: none; /* Ocultar texto da logo para economizar espaço */
    }
    
    .header-content {
        flex-direction: row !important; /* Manter na mesma linha */
        align-items: center !important;
    }
    
    .nav-menu {
        width: auto !important;
        justify-content: flex-end !important;
        gap: 0.5rem;
    }
    
    .nav-menu a {
        font-size: 0.75rem;
        padding: 0.25rem 0;
    }
    
    .nav-menu .btn-login {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    :root {
        --spacing-xs: 0.4rem;
        --spacing-sm: 0.8rem;
        --spacing-md: 1.2rem;
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }
    
    /* Hero - permitir quebra em telas muito pequenas */
    .hero h1 {
        white-space: normal;
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    /* Header mobile horizontal compacto */
    .header {
        padding: 0.5rem 0;
    }
    
    .header .container {
        padding: 0 0.5rem 0 0;
    }
    
    .logo {
        padding-left: 0;
        margin-left: 0;
    }
    
    .logo-image {
        height: 45px;
    }
    
    .logo-text {
        display: none; /* Ocultar texto em mobile */
    }
    
    .header-content {
        flex-direction: row !important; /* Horizontal */
        align-items: center !important;
        gap: 0.5rem;
        min-height: 60px;
    }
    
    .nav-menu {
        width: auto !important;
        justify-content: flex-end !important;
        gap: 0.4rem;
        flex-wrap: nowrap;
        padding: 0;
    }
    
    .nav-menu li:not(:last-child) {
        display: none; /* Mostrar apenas o botão de login em telas muito pequenas */
    }
    
    .nav-menu a {
        font-size: 0.7rem;
        white-space: nowrap;
    }
    
    .nav-menu .btn-login {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .hero {
        min-height: 400px;
    }
    
    .imovel-card-features {
        gap: 0.5rem;
    }
    
    .feature {
        font-size: 0.8rem;
    }
    
    
    /* Card Quadrado - Mobile Pequeno */
    .profile-card-inner {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .profile-photo-wrapper img {
        width: 100px;
        height: 100px;
        border-width: 5px;
    }
    
    .profile-verified-badge {
        width: 28px;
        height: 28px;
        border-width: 2px;
    }
    
    .profile-verified-badge svg {
        width: 16px;
        height: 16px;
    }
    
    .profile-card-name {
        font-size: 1.35rem;
    }
    
    .profile-credentials {
        font-size: 0.8rem;
    }
    
    .profile-specialty {
        padding: 0.875rem 1rem;
    }
    
    .profile-specialty p {
        font-size: 0.875rem;
    }
    
    .profile-stats {
        padding: 1rem 0;
    }
    
    .stat-number {
        font-size: 1.125rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .stat-divider {
        height: 55px;
    }
    
    .contact-btn {
        font-size: 0.8rem;
        padding: 0.75rem 1rem;
    }
    
    /* MVV - Telas Pequenas */
    .mvv-item {
        padding: 1.5rem 1rem;
    }
    
    .mvv-icon {
        width: 56px;
        height: 56px;
    }
    
    .mvv-icon svg {
        width: 28px;
        height: 28px;
    }
}

/* ========== ANIMAÇÕES ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.imovel-card {
    animation: fadeIn 0.5s ease;
}

/* ========== UTILITÁRIOS ========== */
.text-center { text-align: center; }
.mt-1 { margin-top: var(--spacing-sm); }
.mb-1 { margin-bottom: var(--spacing-sm); }