/* ==========================================================================
   DESIGN SYSTEM & VARIABLES - LADA INVESTIMENTOS IMOBILIÁRIOS
   ========================================================================== */
:root {
    /* Cores de Fundo Litorâneas Claras */
    --bg-darker: #f4f6fa;       /* Fundo neutro cinza-azulado super suave */
    --bg-dark: #ffffff;         /* Fundo das seções claras */
    
    /* Azul Marinho Oficial da Lada (para elementos institucionais, cabeçalho e rodapé) */
    --lada-navy: #040a30;       
    --lada-navy-darker: #02051a;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #0e1e63 0%, #1d3dbf 50%, #0099ff 100%);
    --gradient-gold: linear-gradient(135deg, #c5a059 0%, #f3d082 50%, #d5ae61 100%);
    
    /* Cores de Detalhe e Destaque */
    --color-accent: #1d3dbf;     /* Azul real para links e ícones */
    --color-accent-light: #0099ff;
    --color-gold: #d5ae61;       /* Dourado champanhe refinado */
    --color-success: #2ecc71;   /* Verde WhatsApp */
    
    /* Cores de Texto */
    --text-light: #ffffff;
    --text-muted: #6a7196;       /* Cinza azulado para texto secundário em fundo claro */
    --text-dark: #121630;        /* Azul marinho quase preto para texto principal em fundo claro */
    
    /* Vidro (Glassmorphism para seções escuras) */
    --glass-bg: rgba(4, 10, 48, 0.75);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: rgba(0, 0, 0, 0.35);
    
    /* Fontes e Transições */
    --font-main: 'Montserrat', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --border-radius-lg: 16px;
    --border-radius-md: 8px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   COMPONENTES DE TEXTO E GRÁFICOS
   ========================================================================== */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gold-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-header {
    margin-bottom: 50px;
}

.section-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* Glass Card (usado em cima de fundos escuros/fotos) */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px var(--glass-shadow);
    border-radius: var(--border-radius-lg);
    transition: var(--transition-smooth);
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(29, 61, 191, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(29, 61, 191, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-light);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   HEADER / CABEÇALHO
   ========================================================================== */
.main-header {
    background: rgba(4, 10, 48, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition-smooth);
}

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

.logo-img {
    height: 48px;
    object-fit: contain;
}

.main-nav {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-light);
    border-color: var(--color-accent-light);
}

.btn-header {
    background: var(--gradient-gold);
    color: var(--lada-navy);
    font-size: 0.8rem;
    padding: 10px 20px;
}

.btn-header:hover {
    box-shadow: 0 4px 15px rgba(243, 208, 130, 0.3);
    transform: translateY(-2px);
}

/* ==========================================================================
   HERO SECTION (Mantida Escura para Alto Impacto de Abertura)
   ========================================================================== */
.hero-section {
    position: relative;
    padding-top: 180px;
    padding-bottom: 120px;
    background-image: url('../fotos/WhatsApp Image 2026-05-01 at 12.04.50.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    min-height: 100vh;
    color: var(--text-light);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(4, 10, 48, 0.9) 0%, rgba(4, 10, 48, 0.45) 40%, rgba(4, 10, 48, 0) 70%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    background: rgba(213, 174, 97, 0.15);
    border: 1px solid rgba(213, 174, 97, 0.3);
    color: var(--color-gold);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #a4b6ff 50%, #0099ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-features-strip {
    display: flex;
    gap: 24px;
    margin-bottom: 45px;
}

.strip-item {
    display: flex;
    flex-direction: column;
}

.strip-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-light);
}

.strip-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.strip-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    align-self: stretch;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

/* Card lateral da Hero */
.hero-card {
    padding: 35px;
    text-align: center;
}

.hero-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.card-price-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.card-price {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--color-gold);
    line-height: 1.1;
    margin-bottom: 6px;
}

.card-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

.card-check-list {
    list-style: none;
    text-align: left;
    margin-bottom: 35px;
}

.card-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.card-check-list li i {
    font-size: 1.1rem;
    color: var(--color-accent-light);
}

.card-address {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   FICHA TÉCNICA (Seção Clara com Fundo Branco)
   ========================================================================== */
.details-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Ficha técnica elegante com cartões claros */
.detail-card {
    background: #ffffff;
    border: 1px solid rgba(4, 10, 48, 0.06);
    box-shadow: 0 8px 30px rgba(4, 10, 48, 0.03);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    text-align: left;
    transition: var(--transition-smooth);
    color: var(--text-dark);
}

.detail-card:hover {
    transform: translateY(-8px);
    border-color: rgba(29, 61, 191, 0.2);
    box-shadow: 0 15px 40px rgba(29, 61, 191, 0.08);
}

.detail-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(29, 61, 191, 0.06);
    border: 1px solid rgba(29, 61, 191, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.detail-card:hover .detail-icon-box {
    background: var(--gradient-primary);
    border-color: transparent;
}

.detail-icon-box i {
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: var(--transition-smooth);
}

.detail-card:hover .detail-icon-box i {
    color: var(--text-light);
}

.detail-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.detail-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   GALERIA MOSAICO (Seção Clara Neutra)
   ========================================================================== */
.gallery-section {
    padding: 100px 0;
    background-color: var(--bg-darker);
}

.mosaico-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 15px;
    margin-top: 40px;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid rgba(4, 10, 48, 0.08);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.grid-item:hover img {
    transform: scale(1.08);
}

.item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.item-medium {
    grid-column: span 2;
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(4, 10, 48, 0.85) 0%, rgba(4, 10, 48, 0.3) 60%, transparent 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: opacity 0.4s ease;
    z-index: 2;
}

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

.overlay-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ==========================================================================
   CONDOMÍNIO E INFRAESTRUTURA (Seção Clara com Fundo Branco)
   ========================================================================== */
.condo-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.condo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.condo-image-box {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(4, 10, 48, 0.12);
    border: 1px solid rgba(4, 10, 48, 0.08);
}

.condo-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

/* Badge modificado de 2º andar para Área de Lazer */
.condo-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    border-color: rgba(255, 255, 255, 0.15);
}

.badge-lbl {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-gold);
}

.condo-content {
    text-align: left;
}

.condo-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.condo-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.condo-feat-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feat-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(29, 61, 191, 0.06);
    border: 1px solid rgba(29, 61, 191, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feat-icon i {
    font-size: 1.3rem;
    color: var(--color-accent);
}

.feat-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.feat-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ==========================================================================
   LOCALIZAÇÃO E MAPA CONCEITUAL (Seção Clara Neutra)
   ========================================================================== */
.location-section {
    padding: 100px 0;
    background-color: var(--bg-darker);
}

.location-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.location-content {
    text-align: left;
}

.location-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.location-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.distance-box {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dist-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dist-item i {
    font-size: 1.5rem;
    width: 30px;
    color: var(--color-accent);
    text-align: center;
}

.dist-item div {
    display: flex;
    flex-direction: column;
}

.dist-item strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.dist-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Container do mapa estilizado com caixa branca */
.location-map {
    background: #ffffff;
    border: 1px solid rgba(4, 10, 48, 0.06);
    box-shadow: 0 8px 30px rgba(4, 10, 48, 0.03);
    border-radius: var(--border-radius-lg);
    padding: 20px;
}

.map-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(4, 10, 48, 0.08);
}

.map-illustration {
    width: 100%;
    height: 360px;
    background: #060d3e;
    position: relative;
    overflow: hidden;
}

.ocean-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, #0e1e63 0%, #1d3dbf 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
}

.beach-strip {
    position: absolute;
    right: 40%;
    top: 0;
    width: 8%;
    height: 100%;
    background: linear-gradient(to right, #060d3e 0%, #d4af37 100%);
    opacity: 0.35;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    writing-mode: vertical-rl;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.calcadao-line {
    position: absolute;
    right: 48%;
    top: 0;
    width: 3px;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
    writing-mode: vertical-rl;
}

.street-jose {
    position: absolute;
    left: 20px;
    top: 170px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    border-bottom: 2px dotted rgba(255, 255, 255, 0.15);
    padding-bottom: 3px;
}

.map-pin {
    position: absolute;
    left: 55%;
    top: 155px;
    transform: translate(-50%, -100%);
    cursor: pointer;
    z-index: 5;
}

.map-pin i {
    font-size: 2.25rem;
    color: var(--color-gold);
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
}

.pin-pulse {
    position: absolute;
    left: 50%;
    top: 80%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(243, 208, 130, 0.4);
    transform: translate(-50%, -50%);
    animation: pinPulse 2s infinite ease-out;
}

.pin-tooltip {
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lada-navy);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.map-footer {
    background: rgba(4, 10, 48, 0.03);
    padding: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid rgba(4, 10, 48, 0.08);
}

/* ==========================================================================
   FORMULÁRIO DE CONTATO (Seção Escura para Fechamento Elegante)
   ========================================================================== */
.contact-section {
    padding: 100px 0;
    background-color: var(--lada-navy);
    color: var(--text-light);
}

.contact-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.contact-info {
    text-align: left;
}

.contact-info .section-title {
    color: var(--text-light);
}

.contact-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.method-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-md);
    background: rgba(213, 174, 97, 0.1);
    border: 1px solid rgba(213, 174, 97, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon i {
    font-size: 1.2rem;
    color: var(--color-gold);
}

.method-item div {
    display: flex;
    flex-direction: column;
}

.method-item span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.method-item strong {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Estilização do Box do Formulário */
.contact-form-box {
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

.input-wrapper input, .form-group textarea {
    width: 100%;
    background: rgba(2, 5, 26, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-md);
    padding: 12px 15px 12px 45px;
    color: var(--text-light);
    font-family: var(--font-main);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group textarea {
    padding: 12px 15px;
    resize: none;
}

.input-wrapper input:focus, .form-group textarea:focus {
    border-color: var(--color-accent-light);
    background: rgba(2, 5, 26, 0.8);
    box-shadow: 0 0 10px rgba(0, 153, 255, 0.2);
}

.btn-submit {
    margin-top: 10px;
    font-size: 0.95rem;
}

/* Mensagem de sucesso */
.success-message {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 0;
    animation: fadeInUp 0.5s ease forwards;
}

.success-message i {
    font-size: 4rem;
    color: var(--color-success);
    margin-bottom: 20px;
}

.success-message h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.success-message p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   NOVO RODAPÉ PREMIUM CORPORATIVO (LADA IMÓVEIS)
   ========================================================================== */
.lada-footer-premium {
    background-color: var(--lada-navy-darker);
    color: var(--text-light);
    border-top: 3px solid var(--color-gold); /* Borda superior dourada refinada */
    padding: 70px 0 0 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-premium-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1.1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 0.5px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

/* Coluna 1: A Imobiliária */
.brand-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-img {
    height: 95px;
    object-fit: contain;
    align-self: flex-start;
    transition: var(--transition-smooth);
}

.footer-logo-img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.1));
}

.brand-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-social-links {
    display: flex;
    gap: 12px;
    margin-top: 5px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-size: 1.05rem;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: var(--gradient-gold);
    color: var(--lada-navy-darker);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(213, 174, 97, 0.3);
}

/* Coluna 2: Contatos e Credenciamento */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.contact-info-item i {
    color: var(--color-gold);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.contact-info-item a {
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.contact-info-item a:hover {
    color: var(--text-light);
}

.contact-info-item.highlight-whatsapp i {
    color: var(--color-success);
    font-size: 1.15rem;
}

.contact-info-item.highlight-whatsapp a {
    font-weight: 700;
    color: var(--text-light);
}

.contact-info-item.highlight-whatsapp a:hover {
    color: var(--color-success);
}

.creci-badge-premium {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-md);
    padding: 12px 18px;
    align-self: flex-start;
}

.creci-badge-premium i {
    font-size: 1.5rem;
    color: var(--color-gold);
}

.creci-numbers {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

/* Coluna 3: Localização */
.location-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted);
}

.location-item i {
    color: var(--color-gold);
    font-size: 1rem;
    margin-top: 4px;
    width: 20px;
    text-align: center;
}

.location-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.location-item strong {
    font-size: 0.85rem;
    color: var(--text-light);
}

.location-item span {
    font-size: 0.8rem;
}

/* Barra de Copyright */
.footer-bottom-premium {
    background-color: rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 22px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
}

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

.footer-bottom-premium p {
    margin: 0;
}

.lgpd-text {
    font-weight: 500;
}

/* Responsividade do Rodapé */
@media (max-width: 1024px) {
    .footer-premium-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .location-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .lada-footer-premium {
        padding-top: 50px;
    }
    .footer-premium-container {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-logo-img {
        align-self: center;
    }
    .footer-social-links {
        justify-content: center;
    }
    .creci-badge-premium {
        align-self: center;
    }
    .location-col {
        grid-column: span 1;
    }
    .location-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}





/* ==========================================================================
   WHATSAPP FLUTUANTE
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--color-success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: var(--lada-navy);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ==========================================================================
   LIGHTBOX (MODAL DA GALERIA)
   ========================================================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(2, 5, 26, 0.98);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 85%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 8px;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    animation: zoomIn 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.lightbox-caption {
    margin-top: 15px;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--text-light);
    transform: rotate(90deg);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.lightbox-arrow:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-accent-light);
}

.arrow-left {
    left: 40px;
}

.arrow-right {
    right: 40px;
}

/* ==========================================================================
   MEDIA QUERIES - RESPONSIVIDADE
   ========================================================================== */

/* Notebooks / Desktops Menores */
@media (max-width: 1024px) {
    .hero-section {
        padding-top: 150px;
        padding-bottom: 80px;
        min-height: auto;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hero-card {
        max-width: 550px;
        margin: 0 auto;
    }
    .details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .condo-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .condo-img {
        height: 380px;
    }
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .details-section, .gallery-section, .condo-section, .location-section, .contact-section {
        padding: 70px 0;
    }
    .hero-title {
        font-size: 2.75rem;
    }
    .main-nav {
        display: none; /* Mantemos o cabeçalho focado na marca e conversão direta no mobile */
    }
    .detail-card {
        padding: 25px;
    }
    .mosaico-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    .item-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    .item-medium {
        grid-column: span 2;
    }
    .condo-img {
        height: 320px;
    }
    .location-map {
        padding: 12px;
    }
    .map-illustration {
        height: 280px;
    }
    .map-pin {
        top: 140px;
    }
    .street-jose {
        top: 120px;
    }
    .contact-form-box {
        padding: 30px 24px;
    }
    .lightbox-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    .arrow-left {
        left: 15px;
    }
    .arrow-right {
        right: 15px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .footer-brand img, .logo-footer {
        margin: 0 auto 20px auto;
    }
}

/* Celulares */
@media (max-width: 480px) {
    .details-section, .gallery-section, .condo-section, .location-section, .contact-section {
        padding: 55px 0;
    }
    .hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    .hero-title {
        font-size: 2rem;
        letter-spacing: -1px;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .hero-badge {
        margin-bottom: 20px;
    }
    .hero-features-strip {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }
    .strip-number {
        font-size: 1.5rem;
    }
    .strip-divider {
        display: none;
    }
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .hero-card {
        padding: 24px 20px;
    }
    .card-price {
        font-size: 1.85rem;
    }
    .details-grid {
        grid-template-columns: 1fr;
    }
    .mosaico-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    .item-large, .item-medium {
        grid-column: span 1;
    }
    .condo-img {
        height: 240px;
    }
    .condo-badge {
        padding: 8px 16px;
        bottom: 15px;
        left: 15px;
    }
    .badge-lbl {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    .map-illustration {
        height: 240px;
    }
    .map-pin {
        top: 120px;
        left: 60%;
    }
    .street-jose {
        left: 10px;
        top: 90px;
        font-size: 0.7rem;
    }
    .ocean-bg {
        width: 35%;
        font-size: 0.75rem;
    }
    .beach-strip {
        right: 35%;
        width: 10%;
        font-size: 0.55rem;
    }
    .calcadao-line {
        right: 45%;
    }
    .contact-form-box {
        padding: 24px 16px;
    }
    .form-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
