:root {
    --black: #0a0a0a;
    --off-white: #faf9f7;
    --gray: #8a8a8a;
    --light-gray: #e5e5e5;
    --gold: #c9a962;
    --gold-light: #d4b978;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--off-white);
    color: var(--black);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============================================
   HERO LOGO - VERSÃO RESPONSIVA OTIMIZADA
   ============================================ */
.hero-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo img {
    max-width: 280px;
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 4px 20px rgba(0,0,0,0.5));
    transition: max-width 0.3s ease;
}

/* Monitores grandes */
@media (min-width: 1400px) {
    .hero-logo img {
        max-width: 320px;
    }
}

/* Desktop padrão */
@media (max-width: 1200px) {
    .hero-logo img {
        max-width: 240px;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .hero-logo img {
        max-width: 200px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-logo img {
        max-width: 160px;
    }

    .hero-logo {
        margin-bottom: 1.5rem;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .hero-logo img {
        max-width: 140px;
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
}

nav.scrolled {
    background: rgba(250, 249, 247, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 5%;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--off-white);
    transition: color 0.4s ease;
}

nav.scrolled .logo {
    color: var(--black);
}

/* Menu Desktop */
.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--off-white);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

nav.scrolled .nav-links a {
    color: var(--black);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Menu Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--off-white);
    transition: all 0.3s ease;
    transform-origin: center;
}

nav.scrolled .mobile-menu-toggle span {
    background: var(--black);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    z-index: 0;
}

.hero-content {
    text-align: center;
    z-index: 1;
    color: var(--off-white);
    max-width: 900px;
    padding: 0 2rem;
}

.hero-headline {
    font-size: clamp(1.5rem, 6vw, 1rem);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.5s;
    text-transform: uppercase;
}

.hero-subheadline {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.8s;
    color: rgba(255,255,255,0.9);
}

.hero-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 1.1s;
}

.btn-primary {
    padding: 1.2rem 3rem;
    background: transparent;
    border: 1px solid var(--off-white);
    color: var(--off-white);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--off-white);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    color: var(--black);
}

.btn-secondary {
    padding: 1.2rem 3rem;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,169,98,0.3);
}

.btn-download {
    padding: 1.2rem 3rem;
    background: transparent;
    color: var(--off-white);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 2px solid var(--gold);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-download:hover {
    color: var(--gold);
    border-bottom-color: var(--off-white);
    transform: translateY(-2px);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--off-white);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    animation: bounce 2s infinite;
    font-weight: 500;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Sections General */
section {
    padding: 8rem 5%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
    font-weight: 600;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Manifesto Section */
.manifesto {
    background: var(--black);
    color: var(--off-white);
    text-align: center;
    padding: 10rem 5%;
}

.manifesto-text {
    font-size: clamp(1.2rem, 3vw, 1.2rem);
    font-weight: 300;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.manifesto-signature {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

/* Location Section - Original */
.location {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 80vh;
    align-items: center;
}

.location-content {
    padding: 5rem;
    background: var(--off-white);
}

.location-features {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature-item {
    padding: 1.5rem;
    border-left: 2px solid var(--gold);
}

.feature-item h4 {
    font-size: 1.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--black);
    font-weight: 600;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 400;
}

.location-visual {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-google-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-google-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) invert(92%) contrast(83%);
}

.map-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(0,0,0,0.9);
    padding: 1.5rem;
    border-left: 3px solid var(--gold);
    color: var(--off-white);
    z-index: 10;
    max-width: 300px;
}

.map-overlay h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.map-overlay p {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.map-btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.map-btn:hover {
    background: var(--gold-light);
}

.map-toggle {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    gap: 0.5rem;
    z-index: 20;
}

.map-toggle-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--off-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-toggle-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.map-toggle-btn:hover:not(.active) {
    background: rgba(255,255,255,0.1);
}

.map-option {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.map-option.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   LOCALIZAÇÃO PRIVILEGIADA - VERSÃO CORRIGIDA
   ============================================ */
.localizacao-privilegiada-clara {
    background: var(--off-white);
    padding: 8rem 5%;
    display: block;
    visibility: visible;
    opacity: 1;
}

.localizacao-privilegiada-clara .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.localizacao-privilegiada-clara .section-title {
    font-weight: 300;
}

.localizacao-privilegiada-clara .section-title strong {
    font-weight: 700;
}

.localizacao-clara-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.localizacao-cidade {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 20px;
}

.localizacao-cidade strong {
    font-weight: 700;
}

.localizacao-descricao {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 20px;
}

.localizacao-descricao strong {
    color: var(--black);
    font-weight: 600;
}

.localizacao-descricao em {
    font-style: italic;
    color: var(--black);
}

.localizacao-endereco-box {
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
}

.localizacao-endereco-box strong {
    color: var(--black);
}

.localizacao-lista {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.localizacao-lista li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--black);
}

.check-icon {
    width: 22px;
    height: 22px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.btn-maps {
    display: inline-block;
    padding: 14px 30px;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-maps:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,169,98,0.3);
}

.mapa-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    height: 450px;
}

.mapa-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Architecture Gallery */
.architecture {
    background: var(--off-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--off-white);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 400;
}

/* YouTube Video Section */
.video-section {
    background: var(--black);
    color: var(--off-white);
    padding: 8rem 5%;
}

.video-container {
    max-width: 1000px;
    margin: 3rem auto 0;
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 56.25%;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

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

/* Empreendimentos Grid */
.empreendimentos {
    background: var(--off-white);
    padding: 8rem 5%;
}

.grid-empreendimentos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.empre-card {
    background: white;

    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    display: block;
    width: 100%;
}

.empre-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.empre-image-container {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.empre-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.empre-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--gold);
    color: var(--black);
    padding: 0.5rem 1rem;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 2px;
    z-index: 2;
}

.empre-badge.lancamento {
    background: #22c55e;
    color: white;
}

.empre-badge.entregue {
    background: var(--black);
    color: var(--off-white);
}

.empre-content {
    padding: 2rem;
}

.empre-loc {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.empre-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
}

.empre-specs {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
}

.empre-specs span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.empre-desc {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.empre-link {
    color: var(--black);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.3rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.empre-link:hover {
    color: var(--gold);
    border-bottom-color: var(--black);
}

/* Floor Plans Section */
.floor-plans {
    background: var(--black);
    color: var(--off-white);
}

.plans-container {
    max-width: 1200px;
    margin: 0 auto;
}

.plan-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 2rem;
    flex-wrap: wrap;
}

.plan-tab {
    background: none;
    border: none;
    color: var(--gray);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 600;
}

.plan-tab.active {
    color: var(--off-white);
}

.plan-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

.plan-content {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    animation: fadeIn 0.5s ease;
}

.plan-content.active {
    display: grid;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.plan-image {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.plan-image img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.plan-actions {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    gap: 1rem;
}

.plan-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.5);
    color: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.plan-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.plan-details h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.plan-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.spec-value {
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.spec-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 500;
}

.plan-description {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* 3D Experience Section */
.experience-3d {
    background: linear-gradient(to bottom, var(--off-white), #f0f0f0);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.experience-3d::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201,169,98,0.03) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.experience-container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.experience-visual {
    background: var(--black);
    aspect-ratio: 16/9;
    margin: 4rem 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.play-button {
    width: 100px;
    height: 100px;
    border: 2px solid var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    background: rgba(0,0,0,0.3);
}

.play-button:hover {
    transform: scale(1.1);
    background: var(--gold);
    border-color: var(--gold);
}

.play-button::after {
    content: '▶';
    color: var(--off-white);
    font-size: 2rem;
    margin-left: 5px;
}

/* Amenities Section */
.amenities {
    background: var(--off-white);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.amenity-card {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.amenity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.amenity-card:hover img {
    transform: scale(1.1);
}

.amenity-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--off-white);
}

.amenity-info h4 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Construction Status */
.construction {
    background: var(--black);
    color: var(--off-white);
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: rgba(255,255,255,0.1);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    padding: 2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
}

.timeline-date {
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
    font-weight: 600;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.timeline-content p {
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 400;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    border: 4px solid var(--black);
}

.progress-bar {
    max-width: 800px;
    margin: 4rem auto 0;
    background: rgba(255,255,255,0.1);
    height: 4px;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--gold);
    width: 2%;
    position: relative;
    animation: fillProgress 2s ease-out;
}

@keyframes fillProgress {
    from { width: 0; }
    to { width: 65%; }
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 1rem auto 0;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 500;
}

/* Builder Section */
.builder {
    background: var(--off-white);
    text-align: center;
}

.builder-content {
    max-width: 800px;
    margin: 0 auto;
}

.builder-logo {
    width: 120px;
    height: 120px;
    border: 2px solid var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 3rem;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 4px;
}

.builder-values {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

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

.value-icon {
    width: 60px;
    height: 60px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--gold);
}

.value-item h4 {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.value-item p {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 400;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('assets/images/fale-conosco.png');
    background-size: cover;
    background-position: center;
    color: var(--off-white);
    text-align: center;
    padding: 10rem 5%;
}

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.final-cta p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 3rem;
    font-weight: 300;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--off-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-weight: 400;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.4);
    font-weight: 300;
}

.submit-btn {
    padding: 1.5rem 4rem;
    background: var(--gold);
    color: var(--black);
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,169,98,0.3);
}

.privacy-note {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    margin-top: 2rem;
    letter-spacing: 1px;
    font-weight: 400;
}

/* Footer */
footer {
    background: var(--black);
    color: var(--off-white);
    padding: 5rem 5% 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 4rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--off-white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--off-white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icon:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 400;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-legal a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--off-white);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.whatsapp-float.visible {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.modal-content {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--off-white);
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    color: var(--gold);
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-text {
    color: var(--off-white);
    font-size: 1.5rem;
    letter-spacing: 4px;
    font-weight: 700;
    animation: pulseLoader 2s infinite;
}

@keyframes pulseLoader {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ============================================
   DIFERENCIAIS EXCLUSIVOS - GRID 4 COLUNAS
   ============================================ */
.diferenciais-exclusivos {
    background: #0a0a0a;
    padding: 6rem 5%;
}

.diferenciais-exclusivos .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.diferencial-card-dark {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-sizing: border-box;
}

.diferencial-icon-img {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
    line-height: 1;
}

.diferencial-card-dark h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 10px 0;
    font-family: 'Montserrat', sans-serif;
}

.diferencial-card-dark p {
    font-size: 13px;
    color: #999999;
    line-height: 1.5;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

/* ============================================
   RESPONSIVIDADE - TABLET
   ============================================ */
@media screen and (max-width: 1024px) {
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .localizacao-clara-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mapa-wrapper {
        height: 350px;
    }
    
    .location {
        grid-template-columns: 1fr;
    }
    
    .location-visual {
        min-height: 500px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plan-content.active {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

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

    .plan-tabs {
        gap: 1rem;
    }

    .plan-tab {
        padding: 0.8rem 1rem;
        font-size: 0.75rem;
    }

    .map-toggle {
        top: 15px;
        right: 15px;
    }

    .map-toggle-btn {
        padding: 0.6rem 1rem;
        font-size: 0.7rem;
    }
}

/* ============================================
   RESPONSIVIDADE - MOBILE
   ============================================ */
@media screen and (max-width: 768px) {
    /* Menu Mobile */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        color: var(--off-white);
        font-size: 1rem;
    }
    
    nav.scrolled .nav-links {
        background: rgba(250, 249, 247, 0.98);
    }
    
    nav.scrolled .nav-links a {
        color: var(--black);
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .diferencial-card-dark {
        padding: 25px;
    }
    
    .localizacao-cidade {
        font-size: 22px;
    }
    
    .mapa-wrapper {
        height: 300px;
    }
    
    .gallery-grid,
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 50px;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .timeline-dot {
        left: 20px;
        transform: translateX(-50%);
    }
    
    .location-features {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .grid-empreendimentos {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .plan-tabs {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .plan-tab.active::after {
        bottom: -0.5rem;
    }

    .map-info,
    .map-overlay {
        bottom: 15px;
        left: 15px;
        right: 15px;
        max-width: none;
    }
    
    .modal {
        padding: 0.5rem;
    }

    .modal-content {
        max-width: 100vw;
        max-height: 100vh;
        width: 100%;
        height: 100%;
    }

    .modal-content img {
        max-height: 80vh;
        width: 100%;
        object-fit: contain;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        background: rgba(0,0,0,0.7);
        border-radius: 50%;
        width: 45px;
        height: 45px;
        font-size: 2rem;
    }
}

/* Orientação landscape em mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .modal-content img {
        max-height: 85vh;
        max-width: 90vw;
    }
}

/* Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .modal-content img {
        max-height: 85vh;
        max-width: 90vw;
    }
}




/* Estilos para mensagens de feedback do formulário */
#formMensagem {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    font-style: italic;
}





/* ============================================
   WHATSAPP CTA SECTION - VERSÃO OTIMIZADA
   ============================================ */

.whatsapp-cta {
    background: var(--black);
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
}

.whatsapp-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.whatsapp-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.whatsapp-cta-content {
    color: var(--off-white);
}

.whatsapp-cta-content .section-label {
    color: var(--gold);
    margin-bottom: 1rem;
}

.whatsapp-cta-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 1.3;
    color: var(--off-white);
}

.whatsapp-cta-title strong {
    font-weight: 700;
    display: block;
}

.whatsapp-cta-text {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* Botão WhatsApp Principal */
.whatsapp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #25d366;
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.whatsapp-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: #22c55e;
}

.whatsapp-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.whatsapp-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    text-align: left;
}

.whatsapp-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
    font-weight: 500;
    color: #ffffff;
}

.whatsapp-number {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.whatsapp-arrow {
    margin-left: 0.5rem;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
    color: #ffffff;
}

.whatsapp-cta-btn:hover .whatsapp-arrow {
    transform: translateX(4px);
}

/* Status Online */
.whatsapp-cta-note {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.whatsapp-status {
    color: #25d366;
    font-size: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Mockup do Celular - VERSÃO SIMPLIFICADA */
.whatsapp-cta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-phone-mockup {
    width: 260px;
    height: 520px;
    background: #1a1a1a;
    border-radius: 35px;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08);
    transform: rotate(-3deg);
    transition: transform 0.4s ease;
}

.whatsapp-cta:hover .whatsapp-phone-mockup {
    transform: rotate(0deg) translateY(-5px);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0b141a;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background: #1f2c34;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.chat-avatar {
    width: 38px;
    height: 38px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--black);
    flex-shrink: 0;
}

.chat-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.chat-name {
    color: var(--off-white);
    font-size: 0.85rem;
    font-weight: 600;
}

.chat-status {
    color: #25d366;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.chat-status::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #25d366;
    border-radius: 50%;
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: #0b141a;
}

.message {
    max-width: 90%;
    padding: 0.7rem;
    border-radius: 8px;
    background: #1f2c34;
    align-self: flex-start;
    border-top-left-radius: 2px;
}

.message p {
    color: var(--off-white);
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0 0 0.3rem 0;
}

.message p:last-child {
    margin-bottom: 0;
}

.message-time {
    color: var(--gray);
    font-size: 0.65rem;
    display: block;
    text-align: right;
    margin-top: 0.2rem;
}

.chat-input {
    background: #1f2c34;
    padding: 0.7rem 1rem;
    margin: 0.5rem;
    border-radius: 20px;
    color: var(--gray);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
}

/* Responsivo */
@media (max-width: 1024px) {
    .whatsapp-cta-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .whatsapp-cta-btn {
        margin: 0 auto;
    }
    
    .whatsapp-text {
        text-align: left;
    }
    
    .whatsapp-cta-note {
        justify-content: center;
    }
    
    .whatsapp-phone-mockup {
        transform: rotate(0deg);
        width: 240px;
        height: 480px;
    }
}

@media (max-width: 768px) {
    .whatsapp-cta {
        padding: 4rem 5%;
    }
    
    .whatsapp-cta-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 0.9rem 1.5rem;
    }
    
    .whatsapp-phone-mockup {
        width: 220px;
        height: 440px;
    }
    
    .chat-header {
        padding: 0.7rem;
    }
    
    .chat-avatar {
        width: 32px;
        height: 32px;
        font-size: 0.7rem;
    }
	
}

/* Avatar com imagem */
.chat-avatar-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    flex-shrink: 0;
}

/* Versão maior para desktop */
@media (min-width: 1024px) {
    .chat-avatar-img {
        width: 42px;
        height: 42px;
    }
}




.hero-logo img {
    max-width: 400px; /* EXTRA GRANDE */
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 8px 40px rgba(0,0,0,0.6));
}

/* Responsivo */
@media (max-width: 1024px) {
    .hero-logo img {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .hero-logo img {
        max-width: 320px;
    }
}

/* ============================================
   PORTAL DO CLIENTE - SEÇÃO EXCLUSIVA
   ============================================ */
.portal-cliente {
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
}

.portal-cliente::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.portal-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.portal-content {
    color: var(--off-white);
}

.portal-content .section-label {
    color: var(--gold);
    margin-bottom: 1rem;
}

.portal-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 1.3;
}

.portal-title strong {
    font-weight: 700;
    color: var(--gold);
}

.portal-description {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 400;
}

.portal-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.portal-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--off-white);
    font-size: 0.95rem;
}

.portal-icon-check {
    width: 24px;
    height: 24px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.portal-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.portal-btn:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.2);
}

.portal-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.portal-btn:hover svg {
    transform: translateX(4px);
}

/* Visual do Portal */
.portal-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.portal-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
    max-width: 400px;
    width: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.portal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(201, 169, 98, 0.3);
}

.portal-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

.portal-card-icon svg {
    width: 40px;
    height: 40px;
    color: var(--black);
}

.portal-card h3 {
    color: var(--off-white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.portal-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.portal-login-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--off-white);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: 100%;
}

.portal-login-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.portal-help {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.portal-help p {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.portal-help a {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.portal-help a:hover {
    color: var(--gold-light);
}

/* Responsivo Portal */
@media (max-width: 1024px) {
    .portal-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .portal-features li {
        justify-content: center;
    }

    .portal-card {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .portal-cliente {
        padding: 4rem 5%;
    }

    .portal-card {
        padding: 2rem;
    }

    .portal-card-icon {
        width: 60px;
        height: 60px;
    }

    .portal-card-icon svg {
        width: 30px;
        height: 30px;
    }
}