/* ==========================================================================
   ESTILOS OFICIAIS — ELIZÂNGELA VIEIRA CORRETORA DE IMÓVEIS
   Design System Premium: Roxo Real & Dourado Nobre com Alta Conversão
   ========================================================================== */

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

:root {
  /* Paleta Principal - Roxo Real & Violeta */
  --purple-950: #2e1065;
  --purple-900: #3b0764;
  --purple-800: #581c87;
  --purple-700: #6b21a8;
  --purple-600: #7c3aed;
  --purple-500: #8b5cf6;
  --purple-400: #a78bfa;
  --purple-200: #ddd6fe;
  --purple-100: #f3e8ff;
  --purple-50:  #faf5ff;

  /* Dourado & Champagne */
  --gold-600: #b45309;
  --gold-500: #d97706;
  --gold-400: #f59e0b;
  --gold-300: #fbbf24;
  --gold-100: #fef3c7;
  --gold-50:  #fffbeb;

  /* Urgência & Conversão */
  --urgent-red: #dc2626;
  --urgent-orange: #ea580c;
  --gradient-urgent: linear-gradient(135deg, #f97316 0%, #dc2626 100%);
  --gradient-purple: linear-gradient(135deg, #7c3aed 0%, #4c1d95 100%);
  --gradient-purple-gold: linear-gradient(135deg, #581c87 0%, #7c3aed 50%, #d97706 100%);
  --gradient-hero: linear-gradient(135deg, rgba(46, 16, 101, 0.96) 0%, rgba(88, 28, 135, 0.94) 60%, rgba(124, 58, 237, 0.88) 100%);

  /* Cores Neutras */
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;
  --white:     #ffffff;

  /* WhatsApp Oficial */
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;

  /* Tipografia & Espaçamento */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 6px 18px rgba(88, 28, 135, 0.08);
  --shadow-lg: 0 14px 30px rgba(88, 28, 135, 0.12);
  --shadow-xl: 0 24px 48px rgba(88, 28, 135, 0.18);
  --shadow-glow: 0 0 25px rgba(124, 58, 237, 0.35);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--slate-800);
  background-color: #faf7fc;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

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

/* ==========================================================================
   TOP ALERT / STICKY MARQUEE TICKER
   ========================================================================== */
.top-announcement {
  background: var(--gradient-urgent);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
  height: 40px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 120;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 14px rgba(220, 38, 38, 0.35);
  overflow: hidden;
  white-space: nowrap;
}

.top-announcement .marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
  will-change: transform;
}

.top-announcement:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-right: 22px;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.marquee-item .badge-pill {
  background: rgba(255, 255, 255, 0.28);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.marquee-sep {
  opacity: 0.6;
  font-size: 1.1rem;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   HEADER & NAVBAR (FIXO ABAIXO DA BARRA SUPERIOR)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 40px;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 110;
  border-bottom: 1px solid rgba(124, 58, 237, 0.12);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 25px rgba(88, 28, 135, 0.1);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

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

.brand-avatar {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--purple-600);
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.3);
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--purple-900);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.brand-name span {
  color: var(--purple-600);
}

.brand-tagline {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--gold-600);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

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

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--slate-700);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--purple-700);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--purple-600);
  transition: width 0.2s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-toggle {
  display: none;
  background: transparent;
  font-size: 1.6rem;
  color: var(--purple-900);
  padding: 4px;
}

/* ==========================================================================
   BUTTONS & CTAs
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
  font-size: 0.95rem;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-purple);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.45);
  color: var(--white);
}

.btn-urgent {
  background: var(--gradient-urgent);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.35);
  animation: pulse-urgent 2.5s infinite;
}

.btn-urgent:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.5);
  color: var(--white);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  color: var(--white);
}

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

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-purple {
  background: transparent;
  color: var(--purple-700);
  border: 1.5px solid var(--purple-600);
}

.btn-outline-purple:hover {
  background: var(--purple-50);
  color: var(--purple-900);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

@keyframes pulse-urgent {
  0%, 100% {
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.35);
  }
  50% {
    box-shadow: 0 6px 30px rgba(234, 88, 12, 0.65);
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  background: var(--gradient-hero);
  color: var(--white);
  padding: 70px 0 80px;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 15% 25%, rgba(217, 119, 6, 0.22) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(124, 58, 237, 0.35) 0%, transparent 45%);
  pointer-events: none;
}

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

.hero-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fed7aa;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title .highlight-gold {
  background: linear-gradient(135deg, #fde68a 0%, #fbbf24 60%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #e9d5ff;
  margin-bottom: 30px;
  max-width: 580px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
}

.hero-pill i {
  color: #fbbf24;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 0.85rem;
  color: #d8b4fe;
}

.hero-guarantee i {
  color: #34d399;
  font-size: 1.1rem;
}

/* Hero Card da Elizângela */
.hero-broker-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.hero-broker-img-wrap {
  position: relative;
  width: 100%;
  max-height: 380px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 18px;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.2) 0%, rgba(46, 16, 101, 0.8) 100%);
}

.hero-broker-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.hero-broker-card:hover .hero-broker-img {
  transform: scale(1.03);
}

.broker-tag-status {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(37, 211, 102, 0.92);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.broker-tag-status .pulse-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.broker-card-meta h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.broker-card-meta p {
  color: #fbbf24;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 14px;
}

.broker-card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.broker-stat-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
}

.broker-stat-item span {
  font-size: 0.72rem;
  color: #d8b4fe;
  text-transform: uppercase;
  font-weight: 600;
}

/* ==========================================================================
   INTERACTIVE QUICK CREDIT ANALYSIS BAR (FUNIL 30 MIN)
   ========================================================================== */
.analysis-strip-section {
  position: relative;
  z-index: 10;
  margin-top: -38px;
  margin-bottom: 60px;
}

.analysis-strip-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 26px 32px;
  box-shadow: 0 16px 40px rgba(88, 28, 135, 0.12);
  border: 2px solid var(--purple-200);
}

.analysis-strip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--slate-200);
}

.analysis-strip-header h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--purple-900);
  display: flex;
  align-items: center;
  gap: 10px;
}

.analysis-strip-header .badge-speed {
  background: var(--purple-100);
  color: var(--purple-800);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

.analysis-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) 1.2fr;
  gap: 14px;
  align-items: end;
}

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

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--slate-700);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--purple-200);
  background: var(--purple-50);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--slate-800);
  font-weight: 600;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--purple-600);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section {
  padding: 75px 0;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--purple-700);
  background: var(--purple-100);
  padding: 5px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 900;
  color: var(--purple-950);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* ==========================================================================
   PROPERTIES / EMPREENDIMENTOS CARDS
   ========================================================================== */
.property-card-featured {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--purple-100);
  margin-bottom: 48px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card-featured:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--purple-300);
}

.property-grid-featured {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
}

.property-media-wrap {
  position: relative;
  background: var(--purple-900);
  min-height: 380px;
  overflow: hidden;
}

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

.property-card-featured:hover .property-main-img {
  transform: scale(1.04);
}

.property-badge-active {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.property-badge-urgency {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gradient-urgent);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
  z-index: 2;
}

.property-thumbs-bar {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 6px;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  z-index: 3;
}

.thumb-item {
  width: 60px;
  height: 44px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  cursor: pointer;
  border: 1.5px solid transparent;
  opacity: 0.75;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.thumb-item:hover, .thumb-item.active {
  border-color: var(--gold-400);
  opacity: 1;
  transform: scale(1.08);
}

.property-content {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.property-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--purple-700);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.property-name {
  font-family: var(--font-heading);
  font-size: 1.95rem;
  font-weight: 900;
  color: var(--purple-950);
  line-height: 1.2;
  margin-bottom: 12px;
}

.property-desc {
  font-size: 0.96rem;
  color: var(--slate-600);
  margin-bottom: 20px;
  line-height: 1.6;
}

.property-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 14px;
  margin-bottom: 24px;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-800);
}

.feature-pill i {
  color: var(--purple-600);
  font-size: 1rem;
}

.property-pricing-box {
  background: var(--purple-50);
  border: 1.5px solid var(--purple-200);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.pricing-info .price-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--purple-800);
  text-transform: uppercase;
}

.pricing-info .price-val {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--purple-950);
  line-height: 1.1;
}

.pricing-benefit-tag {
  background: var(--gold-100);
  color: var(--gold-700);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.property-actions-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ==========================================================================
   UPCOMING / VALIDATION PROPERTIES GRID
   ========================================================================== */
.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.upcoming-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--purple-100);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.upcoming-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--purple-300);
}

.upcoming-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--purple-900);
}

.upcoming-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.upcoming-card:hover .upcoming-img {
  transform: scale(1.05);
}

.badge-upcoming {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.badge-class {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--purple-900);
  color: #fbbf24;
  border: 1px solid #fbbf24;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.upcoming-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.upcoming-city {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--purple-700);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.upcoming-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--purple-950);
  margin-bottom: 10px;
}

.upcoming-desc {
  font-size: 0.88rem;
  color: var(--slate-600);
  margin-bottom: 18px;
}

/* ==========================================================================
   WHY ELIZÂNGELA / ABOUT ME
   ========================================================================== */
.about-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--purple-50) 100%);
  border-top: 1px solid var(--purple-100);
  border-bottom: 1px solid var(--purple-100);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
}

.about-image-card {
  position: relative;
}

.about-main-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
}

.about-badge-floating {
  position: absolute;
  bottom: -20px;
  right: -15px;
  background: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--purple-200);
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-badge-floating .icon-star {
  font-size: 2rem;
  color: var(--gold-400);
}

.about-badge-floating strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--purple-950);
}

.about-badge-floating span {
  font-size: 0.8rem;
  color: var(--slate-600);
  font-weight: 600;
}

.about-text .section-tag {
  margin-bottom: 10px;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--purple-950);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.02rem;
  color: var(--slate-700);
  margin-bottom: 18px;
  line-height: 1.7;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0 34px;
}

.pillar-item {
  background: var(--white);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--purple-100);
  box-shadow: var(--shadow-sm);
}

.pillar-item i {
  font-size: 1.5rem;
  color: var(--purple-600);
  margin-bottom: 8px;
  display: block;
}

.pillar-item strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--purple-950);
  display: block;
  margin-bottom: 4px;
}

.pillar-item span {
  font-size: 0.82rem;
  color: var(--slate-600);
}

/* ==========================================================================
   HOW IT WORKS (PASSO A PASSO)
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1.5px solid var(--purple-100);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition-normal);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--purple-400);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  background: var(--gradient-purple);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--purple-950);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.92rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* ==========================================================================
   SOLD OUT / PROVA SOCIAL
   ========================================================================== */
.soldout-section {
  background: var(--slate-900);
  color: var(--white);
  padding: 60px 0;
}

.soldout-header {
  text-align: center;
  margin-bottom: 36px;
}

.soldout-header h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.soldout-header p {
  color: #cbd5e1;
  font-size: 0.95rem;
}

.soldout-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.soldout-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.soldout-pill .badge-sold {
  background: var(--urgent-red);
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--purple-100);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--purple-300);
}

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

.faq-question i {
  font-size: 1.2rem;
  color: var(--purple-600);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

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

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

/* ==========================================================================
   FINAL CTA / FOOTER
   ========================================================================== */
.cta-banner-section {
  background: var(--gradient-purple);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(245, 158, 11, 0.25) 0%, transparent 65%);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.cta-banner-content h2 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-banner-content p {
  font-size: 1.15rem;
  color: #f3e8ff;
  margin-bottom: 32px;
}

.site-footer {
  background: var(--slate-950);
  color: #94a3b8;
  padding: 60px 0 30px;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-brand p {
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}

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

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

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.82rem;
  color: #64748b;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.floating-whatsapp-btn {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: var(--transition-normal);
  animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp:hover .floating-whatsapp-btn {
  transform: scale(1.1);
}

.floating-whatsapp-label {
  background: var(--slate-900);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

@keyframes pulse-whatsapp {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 8px 36px rgba(37, 211, 102, 0.75);
  }
}

/* ==========================================================================
   LIGHTBOX MODAL (PHOTO VIEWER)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.modal-container {
  position: relative;
  max-width: 960px;
  width: 100%;
  background: var(--slate-950);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.modal-header {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
}

.modal-close-btn {
  background: transparent;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  padding: 4px;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.modal-close-btn:hover {
  opacity: 1;
}

.modal-body {
  padding: 20px;
  text-align: center;
}

.modal-img-display {
  max-height: 65vh;
  width: auto;
  margin: 0 auto;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.modal-caption {
  margin-top: 14px;
  color: #cbd5e1;
  font-size: 0.92rem;
  font-weight: 600;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 30px;
  }

  .hero-pills {
    justify-content: center;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-guarantee {
    justify-content: center;
  }

  .hero-broker-card {
    max-width: 420px;
    margin: 0 auto;
  }

  .property-grid-featured {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .about-pillars {
    text-align: left;
  }

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

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

  .section-title {
    font-size: 1.95rem;
  }

  .nav-menu {
    position: fixed;
    top: 78px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 78px);
    background: var(--white);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    transition: left 0.3s ease;
    box-shadow: var(--shadow-xl);
  }

  .nav-menu.open {
    left: 0;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-actions .btn {
    display: none;
  }

  .property-content {
    padding: 24px 18px;
  }

  .property-features-list {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp-label {
    display: none;
  }
}
