/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1a1a2e; background: #fff; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ===== VARIABLES ===== */
:root {
  --gold: #c9a227;
  --gold-light: #e8c547;
  --dark: #0d0d1a;
  --dark2: #1a1a2e;
  --green: #25d366;
  --green-dark: #128c7e;
  --white: #ffffff;
  --gray: #f5f5f5;
  --gray2: #e8e8e8;
  --text: #333;
  --text-light: #666;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.15);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,13,26,0.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,162,39,0.2);
  transition: all 0.3s ease;
}
.navbar.scrolled { background: rgba(13,13,26,0.98); }
.nav-container {
  max-width: 1300px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; height: 70px;
}
.nav-logo { display: flex; align-items: center; gap: 4px; }
.logo-dps { font-size: 1.6rem; font-weight: 900; color: var(--gold); letter-spacing: 2px; }
.logo-brasil { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.7); margin-left: 6px; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-whatsapp {
  display: flex; align-items: center; gap: 8px;
  background: var(--green); color: white; padding: 8px 18px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; transition: all 0.2s;
}
.nav-whatsapp:hover { background: var(--green-dark); transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--dark); padding: 14px 28px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem; transition: all 0.2s; cursor: pointer; border: none;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,162,39,0.4); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: white; padding: 14px 28px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; border: 2px solid rgba(255,255,255,0.5); transition: all 0.2s;
}
.btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.1); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--gold); padding: 14px 28px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; border: 2px solid var(--gold); transition: all 0.2s;
}
.btn-outline:hover { background: var(--gold); color: var(--dark); }
.btn-full { width: 100%; justify-content: center; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 40%, #0a1628 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?w=1600&q=80') center/cover no-repeat;
  opacity: 0.15;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,13,26,0.9) 0%, rgba(13,13,26,0.7) 50%, rgba(13,13,26,0.8) 100%);
}
.hero-content {
  position: relative; z-index: 2; max-width: 1300px; margin: 0 auto; padding: 120px 2rem 80px;
  text-align: center;
}
.hero-badge {
  display: inline-block; background: rgba(201,162,39,0.15); color: var(--gold);
  border: 1px solid rgba(201,162,39,0.3); padding: 8px 20px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 6vw, 5rem);
  color: white; line-height: 1.15; margin-bottom: 1.5rem;
}
.hero-highlight { color: var(--gold); }
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.75);
  max-width: 650px; margin: 0 auto 2.5rem; line-height: 1.7;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 4rem; }
.hero-stats {
  display: flex; gap: 3rem; justify-content: center; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2.5rem;
}
.stat { text-align: center; }
.stat-number { display: block; font-size: 2.5rem; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-label { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
}
.scroll-arrow {
  width: 20px; height: 20px; border-right: 2px solid rgba(255,255,255,0.3); border-bottom: 2px solid rgba(255,255,255,0.3);
  transform: rotate(45deg); animation: scrollBounce 1.5s infinite;
}
@keyframes scrollBounce { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(5px)} }

/* ===== CONTAINER ===== */
.container { max-width: 1300px; margin: 0 auto; padding: 0 2rem; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-badge {
  display: inline-block; background: rgba(201,162,39,0.1); color: var(--gold);
  border: 1px solid rgba(201,162,39,0.3); padding: 6px 16px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1rem;
}
.section-badge.light { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.2); }
.section-header h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark2); margin-bottom: 1rem;
}
.section-header.light h2 { color: white; }
.section-subtitle { font-size: 1.1rem; color: var(--text-light); max-width: 600px; margin: 0 auto; }
.section-header.light .section-subtitle { color: rgba(255,255,255,0.7); }

/* ===== ITAPEMA ===== */
.section-itapema { padding: 100px 0; background: var(--gray); }
.itapema-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.itapema-text .lead-text { font-size: 1.15rem; line-height: 1.8; color: var(--text); margin-bottom: 1.5rem; }
.itapema-text p { line-height: 1.8; color: var(--text-light); margin-bottom: 1.5rem; }
.location-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.5rem; }
.location-tags span {
  background: var(--dark2); color: rgba(255,255,255,0.85); padding: 6px 14px;
  border-radius: 50px; font-size: 0.8rem; font-weight: 500;
}
.motivos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.motivo-card {
  background: white; border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s;
  border-left: 3px solid var(--gold);
}
.motivo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.motivo-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.motivo-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--dark2); margin-bottom: 0.5rem; }
.motivo-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* ===== PORTO BELO ===== */
.section-porto-belo { padding: 100px 0; background: var(--dark2); }
.porto-belo-content { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.porto-belo-image {
  border-radius: var(--radius); overflow: hidden; position: relative; height: 500px;
  background: linear-gradient(135deg, #0a4a6e, #0d7a5e);
}
.pb-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  background: linear-gradient(135deg, rgba(10,74,110,0.8), rgba(13,122,94,0.8));
}
.pb-overlay h3 { font-family: 'Playfair Display', serif; font-size: 3rem; color: white; }
.pb-overlay p { color: rgba(255,255,255,0.7); font-size: 1rem; margin-top: 0.5rem; }
.porto-belo-info .lead-text { font-size: 1.1rem; color: rgba(255,255,255,0.9); line-height: 1.8; margin-bottom: 1.5rem; }
.porto-belo-info p { color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 2rem; }
.vantagens-list { display: flex; flex-direction: column; gap: 1.25rem; }
.vantagem-item { display: flex; gap: 1rem; align-items: flex-start; }
.vantagem-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.vantagem-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--gold); margin-bottom: 0.25rem; }
.vantagem-item p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ===== BSX ===== */
.section-bsx { padding: 100px 0; background: white; }
.bsx-content { display: grid; grid-template-columns: 1.5fr 1fr; gap: 4rem; align-items: center; }
.bsx-text .lead-text { font-size: 1.1rem; line-height: 1.8; color: var(--text); margin-bottom: 1.5rem; }
.bsx-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 1.25rem; }
.bsx-diferenciais { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.diferencial { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; background: var(--gray); border-radius: var(--radius); }
.diferencial-icon { font-size: 1.5rem; flex-shrink: 0; }
.diferencial strong { display: block; font-size: 0.95rem; color: var(--dark2); margin-bottom: 0.25rem; }
.diferencial p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }
.bsx-badge-card {
  background: var(--dark2); border-radius: 20px; padding: 3rem 2rem; text-align: center;
  border: 1px solid rgba(201,162,39,0.2); box-shadow: var(--shadow-lg);
}
.bsx-badge-icon { font-size: 3rem; margin-bottom: 1rem; }
.bsx-badge-card h3 { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--gold); }
.bsx-badge-card > p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; }
.bsx-stats-mini { display: flex; flex-direction: column; gap: 1rem; }
.bsx-stats-mini > div { background: rgba(255,255,255,0.05); border-radius: 10px; padding: 1rem; }
.bsx-stats-mini strong { display: block; font-size: 1.5rem; color: var(--gold); font-weight: 800; }
.bsx-stats-mini span { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* ===== EMPREENDIMENTOS ===== */
.section-empreendimentos { padding: 100px 0; background: var(--gray); }
.empreendimento-card {
  background: white; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg); margin-bottom: 4rem;
}
.empreendimento-card:last-child { margin-bottom: 0; }
.emp-video-bg { position: relative; height: 500px; overflow: hidden; }
.emp-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.emp-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}
.emp-video-title {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 3rem;
  z-index: 2;
}
.emp-tag {
  display: inline-block; background: var(--gold); color: var(--dark);
  padding: 4px 14px; border-radius: 50px; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.75rem;
}
.emp-video-title h3 {
  font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 3rem);
  color: white; margin-bottom: 0.5rem;
}
.emp-video-title p { color: rgba(255,255,255,0.8); font-size: 1rem; }
.emp-content { padding: 3rem; }
.emp-info-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.emp-description h4, .emp-specs h4 {
  font-size: 1.1rem; font-weight: 700; color: var(--dark2);
  margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--gold);
}
.emp-description p { color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; }
.emp-location-distances { margin-top: 1.5rem; }
.emp-location-distances h5 { font-size: 0.85rem; font-weight: 700; color: var(--dark2); margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }
.distances-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.distances-grid span { font-size: 0.82rem; color: var(--text-light); }
.distances-grid strong { color: var(--dark2); }
.specs-list { display: flex; flex-direction: column; gap: 0; }
.spec-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.6rem 0; border-bottom: 1px solid var(--gray2);
}
.spec-label { font-size: 0.85rem; color: var(--text-light); }
.spec-value { font-size: 0.9rem; font-weight: 700; color: var(--dark2); }
.tipologias-list { display: flex; flex-direction: column; gap: 6px; margin-top: 0.5rem; }
.tipologia {
  font-size: 0.8rem; color: var(--text-light); padding: 8px 12px;
  background: var(--gray); border-radius: 8px; line-height: 1.4;
}
.tipologia.highlight-tipo { background: rgba(201,162,39,0.1); color: var(--dark2); border-left: 3px solid var(--gold); }
.emp-lazer { margin-bottom: 2.5rem; }
.emp-lazer h4 { font-size: 1.1rem; font-weight: 700; color: var(--dark2); margin-bottom: 1.25rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--gold); }
.lazer-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.lazer-grid span {
  background: var(--gray); color: var(--text); padding: 6px 14px;
  border-radius: 50px; font-size: 0.82rem; font-weight: 500;
}
.emp-gallery { margin-bottom: 2.5rem; }
.emp-gallery h4 { font-size: 1.1rem; font-weight: 700; color: var(--dark2); margin-bottom: 1.25rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--gold); }
.gallery-scroll {
  display: flex; gap: 12px; overflow-x: auto; padding-bottom: 12px;
  scrollbar-width: thin; scrollbar-color: var(--gold) var(--gray);
}
.gallery-scroll::-webkit-scrollbar { height: 4px; }
.gallery-scroll::-webkit-scrollbar-track { background: var(--gray); }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
.gallery-scroll img {
  height: 200px; width: auto; min-width: 280px; object-fit: cover;
  border-radius: 10px; cursor: pointer; transition: transform 0.2s, opacity 0.2s;
  flex-shrink: 0;
}
.gallery-scroll img:hover { transform: scale(1.02); opacity: 0.9; }
.emp-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== SIMULADOR ===== */
.section-simulador { padding: 100px 0; background: white; }
.simulador-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.simulador-form {
  background: var(--gray); border-radius: 20px; padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--dark2); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group select, .form-group input[type="number"] {
  width: 100%; padding: 12px 16px; border: 2px solid var(--gray2); border-radius: 10px;
  font-size: 0.95rem; color: var(--text); background: white; transition: border-color 0.2s;
  font-family: 'Inter', sans-serif;
}
.form-group select:focus, .form-group input[type="number"]:focus { outline: none; border-color: var(--gold); }
.form-group input[type="range"] { width: 100%; accent-color: var(--gold); margin-bottom: 8px; }
.range-display { display: flex; align-items: center; gap: 8px; }
.range-display input { width: 80px; }
.range-display span { font-size: 0.85rem; color: var(--text-light); font-weight: 600; }
.simulador-resultado {
  background: var(--dark2); border-radius: 20px; padding: 2.5rem;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(201,162,39,0.2);
}
.resultado-header { margin-bottom: 1.5rem; }
.resultado-header h3 { font-size: 1.2rem; font-weight: 700; color: white; }
.resultado-header span { font-size: 0.85rem; color: var(--gold); }
.resultado-grid { display: flex; flex-direction: column; gap: 0; }
.resultado-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.85rem 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.resultado-item.highlight { background: rgba(201,162,39,0.08); padding: 0.85rem 1rem; border-radius: 8px; margin: 4px 0; border-bottom: none; }
.resultado-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.resultado-value { font-size: 1rem; font-weight: 700; color: white; }
.resultado-value.green { color: #4ade80; }
.resultado-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 1.5rem; line-height: 1.5; }

/* ===== CONTACTO ===== */
.section-contacto { padding: 100px 0; background: var(--dark2); }
.contacto-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem; }
.contacto-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 2rem; text-align: center; transition: all 0.2s;
}
.contacto-card:hover { background: rgba(255,255,255,0.08); border-color: var(--gold); transform: translateY(-3px); }
.contacto-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.contacto-card h4 { font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.contacto-card a { font-size: 1rem; color: white; font-weight: 500; transition: color 0.2s; }
.contacto-card a:hover { color: var(--gold); }
.contacto-cta { text-align: center; }
.btn-whatsapp-large {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--green); color: white; padding: 18px 40px; border-radius: 50px;
  font-weight: 700; font-size: 1.1rem; transition: all 0.2s;
  box-shadow: 0 8px 32px rgba(37,211,102,0.3);
}
.btn-whatsapp-large:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(37,211,102,0.4); }

/* ===== FOOTER ===== */
.footer { background: #080812; padding: 60px 0 30px; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.7; margin-top: 1rem; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links h5, .footer-contact h5 { color: var(--gold); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.footer-links a, .footer-contact a { color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover, .footer-contact a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }

/* ===== FLOATING SIMULATOR ===== */
.floating-simulator {
  position: fixed; bottom: 100px; left: 0; right: 0; z-index: 900;
  display: flex; justify-content: center; pointer-events: none;
  transform: translateY(100px); opacity: 0; transition: all 0.4s ease;
}
.floating-simulator.visible { transform: translateY(0); opacity: 1; pointer-events: all; }
.floating-sim-content {
  background: var(--dark2); border: 1px solid rgba(201,162,39,0.3);
  border-radius: 50px; padding: 12px 12px 12px 24px;
  display: flex; align-items: center; gap: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  animation: floatPulse 3s ease-in-out infinite;
}
@keyframes floatPulse { 0%,100%{box-shadow:0 8px 32px rgba(0,0,0,0.3)} 50%{box-shadow:0 8px 48px rgba(201,162,39,0.2)} }
.floating-sim-label { display: block; font-size: 0.9rem; font-weight: 700; color: white; }
.floating-sim-sub { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.floating-sim-btn {
  background: var(--gold); color: var(--dark); padding: 10px 22px; border-radius: 50px;
  font-weight: 700; font-size: 0.85rem; white-space: nowrap; transition: all 0.2s;
}
.floating-sim-btn:hover { background: var(--gold-light); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 1000;
  background: var(--green); color: white; border-radius: 50px;
  display: flex; align-items: center; gap: 10px; padding: 14px 20px;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  font-weight: 700; font-size: 0.9rem; transition: all 0.2s;
  animation: waPulse 2s ease-in-out infinite;
}
.whatsapp-float:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,0.5); animation: none; }
@keyframes waPulse { 0%,100%{box-shadow:0 4px 24px rgba(37,211,102,0.4)} 50%{box-shadow:0 4px 40px rgba(37,211,102,0.7)} }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.95);
  display: none; align-items: center; justify-content: center; cursor: pointer;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px; background: none; border: none;
  color: white; font-size: 2rem; cursor: pointer; z-index: 10000; transition: color 0.2s;
}
.lightbox-close:hover { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .itapema-grid { grid-template-columns: 1fr; }
  .porto-belo-content { grid-template-columns: 1fr; }
  .bsx-content { grid-template-columns: 1fr; }
  .simulador-wrapper { grid-template-columns: 1fr; }
  .emp-info-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: var(--dark); padding: 2rem; gap: 1.5rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-whatsapp span { display: none; }
  .hero-stats { gap: 1.5rem; }
  .motivos-grid { grid-template-columns: 1fr; }
  .contacto-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; }
  .emp-content { padding: 1.5rem; }
  .emp-video-bg { height: 300px; }
  .floating-sim-content { margin: 0 1rem; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { border-radius: 50%; padding: 16px; }
}


/* SECCAO REVENDA - SKY MARINE */
.section-revenda {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #0d1b2a 100%);
  color: #fff;
}
.section-revenda .section-header h2 { color: #f0d080; }
.section-revenda .section-subtitle { color: rgba(255,255,255,0.8); }
.construtora-badge {
  display: inline-block; background: linear-gradient(135deg, #c9a84c, #f0d080);
  color: #1a1a2e; font-weight: 700; font-size: 0.85rem;
  padding: 0.4rem 1rem; border-radius: 20px; margin-bottom: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.revenda-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-bottom: 3rem; }
.revenda-construtora h3 { font-size: 1.6rem; color: #f0d080; margin-bottom: 1rem; }
.revenda-construtora p { color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 1rem; }
.construtora-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1.5rem; }
.cstat { background: rgba(255,255,255,0.07); border: 1px solid rgba(201,168,76,0.3); border-radius: 10px; padding: 0.75rem; text-align: center; }
.cstat strong { display: block; font-size: 1.3rem; color: #f0d080; font-weight: 800; }
.cstat span { font-size: 0.72rem; color: rgba(255,255,255,0.6); }
.revenda-hero-img { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.revenda-hero-img img { width: 100%; height: 350px; object-fit: cover; display: block; }
.revenda-badge-overlay { position: absolute; bottom: 1rem; left: 1rem; background: rgba(0,0,0,0.7); color: #f0d080; font-size: 0.85rem; font-weight: 600; padding: 0.4rem 0.9rem; border-radius: 20px; }
.revenda-oportunidade { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-bottom: 3rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.2); border-radius: 20px; padding: 2.5rem; }
.oport-text h3 { font-size: 1.5rem; color: #f0d080; margin-bottom: 1rem; }
.oport-lead { font-size: 1.05rem; color: rgba(255,255,255,0.9); line-height: 1.7; margin-bottom: 1rem; }
.oport-text p { color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 1rem; }
.oport-destaque { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1.5rem; }
.destaque-item { color: rgba(255,255,255,0.9); font-size: 0.95rem; padding: 0.5rem 0.75rem; background: rgba(201,168,76,0.1); border-left: 3px solid #c9a84c; border-radius: 0 8px 8px 0; }
.oport-condicoes { display: flex; flex-direction: column; gap: 1.5rem; }
.oport-img { width: 100%; border-radius: 12px; cursor: pointer; transition: transform 0.3s; box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.oport-img:hover { transform: scale(1.02); }
.oport-cta-text { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1rem; }
.btn-large { padding: 1rem 2rem; font-size: 1.05rem; }
.revenda-gallery { margin-top: 2rem; }
.revenda-gallery h3 { color: #f0d080; font-size: 1.3rem; margin-bottom: 1rem; }
@media (max-width: 768px) {
  .revenda-intro { grid-template-columns: 1fr; }
  .revenda-oportunidade { grid-template-columns: 1fr; }
  .construtora-stats { grid-template-columns: repeat(2, 1fr); }
}
