/* ==========================================================================
   RESIDENCIAL MANHATTAN - ITU/SP | LANDING PAGE DESIGN SYSTEM
   Identidade Visual: Azul-Marinho (#001A33), Ciano (#41DCE5), Dourado (#D6A84A)
   Menu e Rodapé: Brancos (#FFFFFF)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Cores Principais */
  --navy-dark: #001A33;
  --navy-deep: #000F21;
  --navy-card: #00264A;
  --navy-light: #0A2E52;
  
  --cyan-primary: #41DCE5;
  --cyan-dark: #27BCC5;
  --cyan-glow: rgba(65, 220, 229, 0.25);

  --gold-primary: #D6A84A;
  --gold-light: #F3C973;
  --gold-glow: rgba(214, 168, 74, 0.25);

  --whatsapp-green: #25D366;
  --whatsapp-dark: #1DA851;
  --whatsapp-glow: rgba(37, 211, 102, 0.35);

  /* Tons Neutros */
  --white: #FFFFFF;
  --bg-light: #F4F7FA;
  --bg-card-light: #FFFFFF;
  --slate-900: #0F172A;
  --slate-800: #1E293B;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;

  /* Fontes */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Transições e Sombras */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0, 26, 51, 0.06);
  --shadow-md: 0 10px 25px -5px rgba(0, 26, 51, 0.1);
  --shadow-lg: 0 20px 40px -15px rgba(0, 26, 51, 0.18);
  --shadow-gold: 0 10px 30px -5px rgba(214, 168, 74, 0.3);
  --shadow-cyan: 0 10px 30px -5px rgba(65, 220, 229, 0.3);
  --shadow-whatsapp: 0 10px 30px -5px rgba(37, 211, 102, 0.4);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

/* Reset Básico */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--slate-800);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 70px;
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Utilitários de Layout */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

/* Títulos das Seções */
.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(214, 168, 74, 0.12);
  border: 1px solid rgba(214, 168, 74, 0.3);
  color: var(--gold-primary);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-tag.cyan {
  background: rgba(65, 220, 229, 0.12);
  border-color: rgba(65, 220, 229, 0.3);
  color: var(--cyan-primary);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy-dark);
  margin-bottom: 16px;
}

.section-title.light {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--slate-600);
}

.section-subtitle.light {
  color: var(--slate-300);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.85rem;
  }
  .section-subtitle {
    font-size: 1rem;
  }
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: var(--white);
  box-shadow: var(--shadow-whatsapp);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -5px rgba(37, 211, 102, 0.5);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
  color: var(--navy-dark);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -5px rgba(214, 168, 74, 0.5);
}

.btn-cyan {
  background: linear-gradient(135deg, var(--cyan-primary) 0%, var(--cyan-dark) 100%);
  color: var(--navy-dark);
  box-shadow: var(--shadow-cyan);
}

.btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -5px rgba(65, 220, 229, 0.5);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* --------------------------------------------------------------------------
   CABEÇALHO (HEADER) BRANCO (MENU BRANCO)
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #FFFFFF;
  border-bottom: 1px solid var(--slate-200);
  transition: var(--transition-normal);
  padding: 12px 0;
  box-shadow: 0 2px 10px rgba(0, 26, 51, 0.05);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 0;
  box-shadow: 0 10px 25px rgba(0, 26, 51, 0.08);
}

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

.brand-logo {
  display: flex;
  align-items: center;
}

.brand-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  color: var(--navy-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--cyan-dark);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--cyan-dark);
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-cta .btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--navy-dark);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 6px;
}

@media (max-width: 991px) {
  .mobile-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    border-bottom: 1px solid var(--slate-200);
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .header-cta .btn {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   HERO - PRIMEIRA DOBRA
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 130px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  background-color: var(--navy-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s infinite alternate linear;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0, 26, 51, 0.88) 0%,
    rgba(0, 26, 51, 0.82) 50%,
    rgba(0, 15, 33, 0.96) 100%
  );
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 50px;
  align-items: center;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, rgba(214, 168, 74, 0.25) 0%, rgba(65, 220, 229, 0.25) 100%);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(214, 168, 74, 0.2);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--cyan-primary);
  background: linear-gradient(90deg, var(--cyan-primary), #A5F3FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--slate-300);
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 650px;
}

/* Feature Cards Highlights */
.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 35px;
}

@media (max-width: 576px) {
  .hero-highlights {
    grid-template-columns: 1fr;
  }
}

.highlight-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  padding: 16px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition-normal);
}

.highlight-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--cyan-primary);
  transform: translateY(-2px);
}

.highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(65, 220, 229, 0.2), rgba(0, 26, 51, 0.5));
  border: 1px solid rgba(65, 220, 229, 0.4);
  color: var(--cyan-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.highlight-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.highlight-text span {
  font-size: 0.85rem;
  color: var(--slate-300);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.hero-code {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--slate-400);
  background: rgba(0, 0, 0, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1.05rem;
  }
}

/* --------------------------------------------------------------------------
   FORMULÁRIO DE CAPTAÇÃO RÁPIDA
   -------------------------------------------------------------------------- */
.lead-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.lead-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--gold-primary), var(--cyan-primary));
}

.form-header {
  text-align: center;
  margin-bottom: 24px;
}

.form-header .form-logo {
  height: 42px;
  width: auto;
  margin: 0 auto 14px auto;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.3;
}

.form-subtitle {
  font-size: 0.88rem;
  color: var(--slate-500);
  margin-top: 4px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--slate-700);
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--slate-200);
  background: var(--bg-light);
  font-size: 0.95rem;
  color: var(--slate-800);
  transition: var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--cyan-dark);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--cyan-glow);
}

.form-radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.radio-btn {
  position: relative;
}

.radio-btn input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-btn label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-700);
  cursor: pointer;
  transition: var(--transition-fast);
}

.radio-btn input:checked + label {
  border-color: var(--navy-dark);
  background: var(--navy-dark);
  color: var(--cyan-primary);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--slate-600);
  margin-top: 4px;
}

.form-checkbox input {
  margin-top: 3px;
  accent-color: var(--navy-dark);
}

.form-privacy-note {
  font-size: 0.78rem;
  color: var(--slate-500);
  text-align: center;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* --------------------------------------------------------------------------
   SOBRE O EMPREENDIMENTO
   -------------------------------------------------------------------------- */
.about-section {
  background: var(--white);
  position: relative;
}

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

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.about-image-wrapper:hover img {
  transform: scale(1.03);
}

.about-badge-floating {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(0, 26, 51, 0.92);
  backdrop-filter: blur(12px);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(65, 220, 229, 0.3);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.about-badge-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--cyan-primary);
  line-height: 1;
}

.about-badge-label {
  font-size: 0.85rem;
  color: var(--slate-300);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content .section-title {
  text-align: left;
}

.about-text {
  font-size: 1.08rem;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 24px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  background: var(--bg-light);
  padding: 20px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold-primary);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy-dark);
}

.stat-desc {
  font-size: 0.9rem;
  color: var(--slate-600);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   BENEFÍCIOS (GRID DE CARDS)
   -------------------------------------------------------------------------- */
.benefits-section {
  background: var(--bg-light);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  background: var(--white);
  padding: 30px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cyan-primary);
}

.benefit-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0, 26, 51, 0.05);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: var(--transition-fast);
}

.benefit-card:hover .benefit-icon-wrap {
  background: var(--navy-dark);
  color: var(--cyan-primary);
}

.benefit-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.benefit-desc {
  font-size: 0.92rem;
  color: var(--slate-600);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   SEÇÃO DE LAZER
   -------------------------------------------------------------------------- */
.leisure-section {
  background: var(--navy-dark);
  color: var(--white);
  position: relative;
}

.leisure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .leisure-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .leisure-grid {
    grid-template-columns: 1fr;
  }
}

.leisure-card {
  background: var(--navy-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-normal);
  cursor: pointer;
  position: relative;
}

.leisure-card:hover {
  transform: translateY(-5px);
  border-color: var(--cyan-primary);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.leisure-img-box {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.leisure-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.leisure-card:hover .leisure-img-box img {
  transform: scale(1.08);
}

.leisure-badge-overlay {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 15, 33, 0.75);
  backdrop-filter: blur(8px);
  color: var(--cyan-primary);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(65, 220, 229, 0.3);
}

.leisure-body {
  padding: 20px;
}

.leisure-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.leisure-title i {
  color: var(--gold-primary);
}

.leisure-cta-wrap {
  text-align: center;
}

/* --------------------------------------------------------------------------
   MORADIA E INVESTIMENTO
   -------------------------------------------------------------------------- */
.lifestyle-section {
  background: var(--white);
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

@media (max-width: 991px) {
  .lifestyle-grid {
    grid-template-columns: 1fr;
  }
}

.lifestyle-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lifestyle-card.housing {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-deep) 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lifestyle-card.investment {
  background: linear-gradient(135deg, #0A2E52 0%, #001A33 100%);
  color: var(--white);
  border: 1px solid rgba(65, 220, 229, 0.2);
}

.lifestyle-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.housing .lifestyle-icon {
  background: rgba(214, 168, 74, 0.15);
  color: var(--gold-primary);
  border: 1px solid rgba(214, 168, 74, 0.3);
}

.investment .lifestyle-icon {
  background: rgba(65, 220, 229, 0.15);
  color: var(--cyan-primary);
  border: 1px solid rgba(65, 220, 229, 0.3);
}

.lifestyle-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.25;
}

.housing .lifestyle-title { color: var(--gold-light); }
.investment .lifestyle-title { color: var(--cyan-primary); }

.lifestyle-text {
  font-size: 1.02rem;
  color: var(--slate-300);
  line-height: 1.6;
  margin-bottom: 24px;
}

.lifestyle-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.lifestyle-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--slate-200);
}

.lifestyle-checklist li i {
  color: var(--cyan-primary);
}

.housing .lifestyle-checklist li i {
  color: var(--gold-primary);
}

/* --------------------------------------------------------------------------
   CONDIÇÕES DE LANÇAMENTO
   -------------------------------------------------------------------------- */
.launch-conditions-section {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
}

.launch-box {
  background: var(--navy-card);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  box-shadow: var(--shadow-gold);
  position: relative;
}

.launch-box::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 4px;
  background: var(--cyan-primary);
  border-radius: 2px;
}

.launch-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.launch-text {
  font-size: 1.15rem;
  color: var(--slate-300);
  max-width: 700px;
  margin: 0 auto 35px auto;
}

.launch-highlights-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.launch-item-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  text-align: center;
}

.launch-item-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold-primary);
}

.launch-item-badge span {
  font-size: 0.85rem;
  color: var(--slate-300);
}

.launch-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   LOCALIZAÇÃO E MAPA
   -------------------------------------------------------------------------- */
.location-section {
  background: var(--bg-light);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 991px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

.location-info .section-title {
  text-align: left;
}

.location-description {
  font-size: 1.05rem;
  color: var(--slate-600);
  margin-bottom: 24px;
  line-height: 1.6;
}

.location-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.location-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--slate-700);
  font-weight: 600;
}

.location-points li i {
  color: var(--gold-primary);
  font-size: 1.2rem;
  margin-top: 2px;
}

.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-200);
  height: 400px;
  position: relative;
  background: var(--slate-200);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --------------------------------------------------------------------------
   FAQ - PERGUNTAS FREQUENTES
   -------------------------------------------------------------------------- */
.faq-section {
  background: var(--white);
}

.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-light);
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--navy-dark);
  box-shadow: var(--shadow-sm);
  background: var(--white);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--slate-200);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--navy-dark);
  color: var(--cyan-primary);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 24px;
  font-size: 0.98rem;
  color: var(--slate-600);
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px 24px;
}

/* --------------------------------------------------------------------------
   CTA FINAL DE ENCERRAMENTO
   -------------------------------------------------------------------------- */
.final-cta-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-dark) 100%);
  color: var(--white);
  position: relative;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 60px;
  align-items: center;
}

@media (max-width: 991px) {
  .final-cta-grid {
    grid-template-columns: 1fr;
  }
}

.final-cta-content .section-title {
  text-align: left;
  color: var(--white);
}

.final-cta-text {
  font-size: 1.15rem;
  color: var(--slate-300);
  margin-bottom: 30px;
  line-height: 1.6;
}

.whatsapp-direct-card {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 24px;
  border-radius: var(--radius-md);
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.whatsapp-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   RODAPÉ BRANCO (FOOTER BRANCO)
   -------------------------------------------------------------------------- */
.footer {
  background: #FFFFFF;
  color: var(--slate-700);
  padding-top: 60px;
  padding-bottom: 30px;
  border-top: 1px solid var(--slate-200);
  box-shadow: 0 -4px 20px rgba(0, 26, 51, 0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.footer-brand img {
  height: 54px;
  width: auto;
  margin-bottom: 16px;
}

.footer-slogan {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 12px;
}

.footer-creci {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--slate-600);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 16px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--slate-700);
}

.footer-contact-list li a {
  color: var(--slate-700);
}

.footer-contact-list li a:hover {
  color: var(--navy-dark);
}

.footer-contact-list li i {
  color: var(--cyan-dark);
}

.footer-bottom {
  border-top: 1px solid var(--slate-200);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--slate-600);
}

.footer-disclaimer {
  max-width: 900px;
  margin: 0 auto 16px auto;
  line-height: 1.5;
  color: var(--slate-600);
}

/* --------------------------------------------------------------------------
   ELEMENTOS DE CONVERSÃO FLUTUANTES
   -------------------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 85px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-whatsapp);
  transition: var(--transition-normal);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  background: var(--whatsapp-dark);
}

.floating-whatsapp::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--whatsapp-green);
  opacity: 0.6;
  z-index: -1;
  animation: pulsePing 2s infinite;
}

@keyframes pulsePing {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

@media (min-width: 992px) {
  .floating-whatsapp {
    bottom: 30px;
  }
}

/* Barra Fixa Mobile */
.mobile-fixed-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 998;
  background: #FFFFFF;
  border-top: 1px solid var(--slate-200);
  padding: 10px 16px;
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .mobile-fixed-bar {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .mobile-fixed-bar .btn {
    flex: 1;
    padding: 12px 10px;
    font-size: 0.88rem;
  }
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  background: rgba(0, 15, 33, 0.95);
  backdrop-filter: blur(16px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: var(--white);
  font-size: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

.lightbox-caption {
  color: var(--white);
  font-family: var(--font-heading);
  text-align: center;
  margin-top: 12px;
  font-size: 1.1rem;
}
