/* Design System & Variables */
:root {
  --color-bg-primary: #07111B;      /* Azul escuro profundo e misterioso */
  --color-bg-secondary: #0D1E2D;    /* Variação para cards e profundidade */
  --color-bg-tertiary: #13273A;     /* Tom para elementos mais claros */
  --color-gold-matte: #C5A880;      /* Dourado escovado, refinado e fosco */
  --color-gold-hover: #D4BD9B;      /* Dourado com leve brilho no hover */
  --color-ice-white: #F4F6F9;       /* Branco gelo para textos e títulos */
  --color-light-grey: #A1A8B3;      /* Cinza claro para descrições secundárias */
  --color-border: rgba(197, 168, 128, 0.15); /* Bordas douradas ultra discretas */
  --color-glass-bg: rgba(13, 30, 45, 0.6);
  --color-glass-border: rgba(197, 168, 128, 0.08);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', sans-serif;
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  background-color: var(--color-bg-primary);
  color: var(--color-ice-white);
  font-family: var(--font-sans);
  min-height: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  color: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-bg-secondary);
  border: 2px solid var(--color-bg-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-matte);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section-padding {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

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

.section-subtitle {
  color: var(--color-gold-matte);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  margin-bottom: 1.2rem;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 3.25rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* Glassmorphism */
.glass-panel {
  background: var(--color-glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-glass-border);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-gold-matte);
  color: #07111B;
  padding: 1.1rem 2.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--color-gold-matte);
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(197, 168, 128, 0.15);
}

.btn-primary:hover {
  background-color: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(197, 168, 128, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--color-ice-white);
  padding: 1.1rem 2.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(244, 246, 249, 0.25);
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  border-color: var(--color-gold-matte);
  color: var(--color-gold-matte);
  transform: translateY(-2px);
}

/* NAVBAR */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 95px;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(244, 246, 249, 0.05);
}

.header.scrolled {
  background-color: rgba(7, 17, 27, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(197, 168, 128, 0.15);
  height: 80px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.logo-wrapper {
  display: flex;
  align-items: center;
  transition: var(--transition-fast);
}

.logo-wrapper:hover {
  transform: scale(1.02);
}

.logo-img {
  height: 44px;
  width: auto;
  max-width: 220px;
  display: block;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 500;
  color: var(--color-light-grey);
}

.nav-link:hover {
  color: var(--color-gold-matte);
}

.schedule-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--color-gold-matte);
  padding: 0.7rem 1.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--color-gold-matte);
  transition: var(--transition-smooth);
}

.schedule-btn:hover {
  background-color: var(--color-gold-matte);
  color: #07111B;
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.2);
}

.mobile-toggle {
  display: none;
  color: var(--color-ice-white);
  font-size: 1.8rem;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
  background-color: #0d1e2d;
  border-bottom: 1px solid var(--color-border);
  z-index: 99;
  padding: 2rem;
}

.mobile-menu.open {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.mobile-nav-link {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-ice-white);
}

.mobile-schedule-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  border: 1px solid var(--color-gold-matte);
  padding: 0.85rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold-matte);
}

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(7, 17, 27, 0.55) 0%,
    rgba(7, 17, 27, 0.8) 50%,
    var(--color-bg-primary) 100%
  );
  z-index: 2;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-tagline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--color-gold-matte);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  font-weight: 300;
  color: var(--color-ice-white);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-light-grey);
  line-height: 1.7;
  margin-bottom: 3.5rem;
  max-width: 600px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.scroll-indicator {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.scroll-mouse {
  width: 20px;
  height: 32px;
  border: 1px solid rgba(244, 246, 249, 0.3);
  border-radius: 10px;
  position: relative;
}

.scroll-wheel {
  width: 2px;
  height: 6px;
  background-color: var(--color-gold-matte);
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 1px;
  animation: scrollAnim 1.8s infinite ease-in-out;
}

@keyframes scrollAnim {
  0% { opacity: 0; top: 6px; }
  30% { opacity: 1; }
  100% { opacity: 0; top: 18px; }
}

.scroll-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-light-grey);
  font-weight: 500;
}

.hero-portrait-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.portrait-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 540px;
  border: 1px solid var(--color-border);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.portrait-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  transition: var(--transition-smooth);
}

.hero-portrait-container:hover .portrait-wrapper img {
  transform: scale(1.03);
}

.portrait-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  padding: 1.6rem 2.2rem;
  z-index: 5;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  max-width: 290px;
}

.portrait-badge h4 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
  letter-spacing: 0.05em;
}

.portrait-badge p {
  font-size: 0.75rem;
  color: var(--color-light-grey);
}

.badge-line {
  height: 1px;
  background-color: var(--color-border);
  margin: 0.8rem 0;
}

.badge-footer {
  color: var(--color-gold-matte) !important;
  font-weight: 500;
  font-size: 0.7rem !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* CONCIERGE IA CHAT UI */
.concierge-section {
  position: relative;
  z-index: 15;
  margin-top: -60px; /* Leve overlap com a Hero para fluidez visual */
  margin-bottom: 5rem;
}

.concierge-card {
  border: 1px solid rgba(197, 168, 128, 0.25);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.6);
  background: linear-gradient(135deg, rgba(13, 30, 45, 0.9) 0%, rgba(7, 17, 27, 0.99) 100%);
  display: flex;
  flex-direction: column;
  height: 650px; /* Altura fixa premium para a área do chat */
  overflow: hidden;
}

.concierge-header {
  padding: 1.6rem 2.5rem;
  border-bottom: 1px solid rgba(197, 168, 128, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(7, 17, 27, 0.4);
}

.concierge-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.concierge-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--color-gold-matte);
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 15px rgba(197, 168, 128, 0.25);
}

.concierge-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
}

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

.concierge-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-ice-white);
  font-weight: 500;
}

.concierge-status {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #55efc4;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.concierge-status::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #55efc4;
  border-radius: 50%;
  box-shadow: 0 0 8px #55efc4;
  display: inline-block;
}

.concierge-badge-dila {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-matte);
  border: 1px solid rgba(197, 168, 128, 0.3);
  padding: 0.4rem 0.9rem;
  font-weight: 600;
}

.chat-history {
  flex-grow: 1;
  padding: 2.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.chat-message {
  max-width: 80%;
  display: flex;
  flex-direction: column;
  animation: messageFadeIn 0.5s ease forwards;
}

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

.chat-message.user {
  align-self: flex-end;
}

.chat-message.cris {
  align-self: flex-start;
  width: 100%;
}

.message-bubble {
  padding: 1.2rem 1.6rem;
  line-height: 1.6;
  font-size: 0.95rem;
  font-weight: 300;
}

.chat-message.user .message-bubble {
  background-color: rgba(197, 168, 128, 0.08);
  border: 1px solid rgba(197, 168, 128, 0.3);
  color: var(--color-ice-white);
  border-bottom-right-radius: 0;
}

.chat-message.cris .message-bubble {
  background-color: rgba(244, 246, 249, 0.03);
  border: 1px solid rgba(244, 246, 249, 0.08);
  color: var(--color-light-grey);
  border-bottom-left-radius: 0;
  max-width: 90%;
}

.chat-message.cris .message-bubble strong {
  color: var(--color-ice-white);
}

.message-time {
  font-size: 0.65rem;
  color: rgba(161, 168, 179, 0.4);
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.chat-message.user .message-time {
  align-self: flex-end;
}

.chat-message.cris .message-time {
  align-self: flex-start;
}

/* Typing indicator */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.2rem;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-gold-matte);
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out;
  opacity: 0.4;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-4px); opacity: 1; }
}

.chat-controls {
  padding: 1.8rem 2.5rem;
  border-top: 1px solid rgba(244, 246, 249, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background-color: rgba(7, 17, 27, 0.3);
}

.chat-input-row {
  display: flex;
  border: 1px solid rgba(197, 168, 128, 0.2);
  background-color: rgba(7, 17, 27, 0.6);
  transition: var(--transition-fast);
}

.chat-input-row:focus-within {
  border-color: var(--color-gold-matte);
  box-shadow: 0 0 15px rgba(197, 168, 128, 0.15);
}

.chat-input {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.2rem 1.6rem;
  color: var(--color-ice-white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
}

.chat-input::placeholder {
  color: rgba(161, 168, 179, 0.4);
}

.chat-send-btn {
  background-color: var(--color-gold-matte);
  color: #07111B;
  padding: 0 2rem;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.chat-send-btn:hover {
  background-color: var(--color-gold-hover);
}

.chat-suggestions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
}

.chat-suggestion-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(161, 168, 179, 0.55);
}

.chat-tag {
  background-color: rgba(244, 246, 249, 0.03);
  border: 1px solid rgba(244, 246, 249, 0.08);
  padding: 0.45rem 1rem;
  font-size: 0.75rem;
  color: var(--color-light-grey);
  transition: var(--transition-fast);
  cursor: pointer;
}

.chat-tag:hover {
  border-color: var(--color-gold-matte);
  color: var(--color-gold-matte);
  background-color: rgba(197, 168, 128, 0.03);
}

/* RENDERING RESULTS IN CHAT */
.chat-results-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  margin-top: 1.5rem;
}

.chat-property-card {
  display: flex;
  background-color: rgba(7, 17, 27, 0.45);
  border: 1px solid rgba(197, 168, 128, 0.15);
  overflow: hidden;
  transition: var(--transition-smooth);
  width: 100%;
}

.chat-property-card:hover {
  border-color: var(--color-gold-matte);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.chat-property-image {
  width: 260px;
  height: 180px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.chat-property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-property-details {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.chat-property-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.chat-property-location {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold-matte);
  font-weight: 600;
}

.chat-property-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-ice-white);
}

.chat-property-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--color-ice-white);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.chat-property-desc {
  font-size: 0.75rem;
  color: var(--color-light-grey);
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.chat-property-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.chat-property-btn-dila {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-light-grey);
  border: 1px solid rgba(244, 246, 249, 0.15);
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.chat-property-btn-dila:hover {
  border-color: var(--color-ice-white);
  color: var(--color-ice-white);
}

.chat-property-btn-wa {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #07111B;
  background-color: var(--color-gold-matte);
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.chat-property-btn-wa:hover {
  background-color: var(--color-gold-hover);
}


/* SEÇÃO 2: Diferenciais */
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.diferencial-card {
  padding: 4rem 3rem;
  transition: var(--transition-smooth);
  border-color: rgba(197, 168, 128, 0.08);
}

.diferencial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 168, 128, 0.35);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.diferencial-icon-wrapper {
  width: 64px;
  height: 64px;
  background-color: rgba(197, 168, 128, 0.04);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-matte);
  margin-bottom: 2.5rem;
  transition: var(--transition-fast);
}

.diferencial-card:hover .diferencial-icon-wrapper {
  background-color: var(--color-gold-matte);
  color: #07111B;
  box-shadow: 0 0 20px rgba(197, 168, 128, 0.3);
}

.diferencial-card-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 300;
  margin-bottom: 1.2rem;
  color: var(--color-ice-white);
}

.diferencial-card-desc {
  font-size: 0.85rem;
  color: var(--color-light-grey);
  line-height: 1.7;
  font-weight: 300;
}

/* SEÇÃO 3: Imóveis em Destaque */
.featured-section {
  background-color: var(--color-bg-secondary);
}

.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 5rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(244, 246, 249, 0.1);
  color: var(--color-light-grey);
  padding: 0.7rem 1.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--color-gold-matte);
  color: var(--color-gold-matte);
}

.filter-btn.active {
  background-color: var(--color-gold-matte);
  border-color: var(--color-gold-matte);
  color: #07111B;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

/* PROPERTY CARD REFINADO */
.property-card {
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.property-card:hover {
  transform: translateY(-10px);
  border-color: rgba(197, 168, 128, 0.4);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.property-card.fade-out {
  opacity: 0;
  transform: scale(0.95);
  display: none;
}

.card-image-container {
  position: relative;
  width: 100%;
  height: 380px; /* Aumentado para dar mais impacto visual à fotografia */
  overflow: hidden;
}

.card-slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.card-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.5s ease;
}

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

.card-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(7, 17, 27, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(244, 246, 249, 0.12);
  color: var(--color-ice-white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  z-index: 5;
}

.card-image-container:hover .card-slider-btn {
  opacity: 1;
}

.card-slider-btn:hover {
  background-color: var(--color-gold-matte);
  color: #07111B;
  border-color: var(--color-gold-matte);
  box-shadow: 0 0 10px rgba(197, 168, 128, 0.4);
}

.card-slider-btn.prev {
  left: 1rem;
}

.card-slider-btn.next {
  right: 1rem;
}

.card-slider-counter {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background-color: rgba(7, 17, 27, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(244, 246, 249, 0.08);
  color: var(--color-ice-white);
  padding: 0.4rem 0.9rem;
  font-size: 0.65rem;
  font-weight: 500;
  border-radius: 30px;
  letter-spacing: 0.05em;
  z-index: 4;
}

.card-badges {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  z-index: 2;
}

.card-badge {
  background-color: rgba(7, 17, 27, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-gold-matte);
  border: 1px solid var(--color-border);
  padding: 0.4rem 0.9rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 17, 27, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 3;
}

.property-card:hover .card-overlay {
  opacity: 1;
}

.card-details-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-gold-matte);
  color: #07111B;
  padding: 0.95rem 1.8rem;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.3);
}

.card-info {
  padding: 2.2rem; /* Aumentado o padding para mais espaço negativo */
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
}

.card-neighborhood {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-light-grey);
}

.card-price {
  color: var(--color-gold-matte);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 2rem;
  color: var(--color-ice-white);
}

.card-specs {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: auto;
  border-top: 1px solid rgba(244, 246, 249, 0.05);
  padding-top: 1.5rem;
}

.card-spec-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--color-light-grey);
  font-weight: 300;
}

.card-spec-item svg {
  color: var(--color-gold-matte);
}

.empty-properties {
  grid-column: span 3;
  text-align: center;
  padding: 5rem 0;
  color: var(--color-light-grey);
  display: none;
}

/* SEÇÃO 4: Regiões Mais Procuradas */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.region-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.region-card:nth-child(1),
.region-card:nth-child(6) {
  grid-column: span 2;
}

.region-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

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

.region-card:hover .region-image-wrapper img {
  transform: scale(1.06);
}

.region-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(7, 17, 27, 0.9) 0%,
    rgba(7, 17, 27, 0.3) 60%,
    transparent 100%
  );
  z-index: 2;
}

.region-info {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  right: 2.5rem;
  z-index: 3;
}

.region-name {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.region-meta {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  color: var(--color-light-grey);
}

.region-separator {
  margin: 0 0.5rem;
  color: var(--color-gold-matte);
}

/* SEÇÃO 5: Alto Padrão Banner */
.showcase-section {
  position: relative;
  padding: 14rem 0;
  overflow: hidden;
}

.showcase-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.showcase-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 17, 27, 0.95) 0%,
    rgba(7, 17, 27, 0.75) 50%,
    rgba(7, 17, 27, 0.4) 100%
  );
  z-index: 2;
}

.showcase-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
}

.showcase-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--color-gold-matte);
  margin-bottom: 1rem;
  display: block;
  font-weight: 600;
}

.showcase-title {
  font-size: 3.8rem;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.8rem;
}

.showcase-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-light-grey);
  margin-bottom: 3rem;
  font-weight: 300;
}

/* SEÇÃO MAPA ESTILIZADO DE FORTALEZA */
.map-section {
  background-color: var(--color-bg-secondary);
}

.map-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-primary);
  padding: 4rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-svg-wrapper {
  width: 100%;
  max-width: 800px;
  height: auto;
  position: relative;
}

.map-svg {
  width: 100%;
  height: auto;
}

.map-region-pin {
  cursor: pointer;
  transition: var(--transition-smooth);
}

.map-region-pin:hover {
  filter: drop-shadow(0px 0px 8px var(--color-gold-matte));
}

.map-pin-circle {
  fill: var(--color-gold-matte);
  stroke: var(--color-bg-primary);
  stroke-width: 2.5;
  transition: var(--transition-fast);
}

.map-region-pin:hover .map-pin-circle {
  r: 10;
  fill: var(--color-ice-white);
  stroke: var(--color-gold-matte);
}

.map-pin-pulse {
  fill: var(--color-gold-matte);
  opacity: 0.35;
  transform-origin: center;
  animation: mapPulse 2s infinite ease-out;
}

@keyframes mapPulse {
  0% { transform: scale(1); opacity: 0.35; }
  100% { transform: scale(2.2); opacity: 0; }
}

.map-label {
  font-family: var(--font-serif);
  font-size: 11px;
  fill: var(--color-ice-white);
  letter-spacing: 0.05em;
  pointer-events: none;
  font-weight: 500;
  transition: var(--transition-fast);
}

.map-region-pin:hover .map-label {
  fill: var(--color-gold-matte);
  font-size: 12px;
}

.map-legend {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 1px solid rgba(244, 246, 249, 0.05);
  width: 100%;
  padding-top: 2.5rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--color-light-grey);
}

.legend-color-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-gold-matte);
  box-shadow: 0 0 6px var(--color-gold-matte);
}

/* SEÇÃO 6: Nossos Números */
.numbers-section {
  background-color: var(--color-bg-secondary);
  border-bottom: 1px solid var(--color-border);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.number-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.number-value {
  font-size: 3.8rem;
  font-weight: 300;
  color: var(--color-gold-matte);
  margin-bottom: 0.5rem;
}

.number-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-light-grey);
  font-weight: 600;
}

/* SEÇÃO 7: Depoimentos (Editorial Minimalist) */
.testimonials-editorial {
  position: relative;
  background-color: var(--color-bg-primary);
}

.testimonials-editorial .section-title-wrapper {
  margin-bottom: 6rem;
}

.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slide {
  text-align: center;
  padding: 0 2rem;
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: slideFadeIn 0.8s ease;
}

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

.editorial-stars {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 2.5rem;
}

.editorial-stars svg {
  color: var(--color-gold-matte);
  fill: var(--color-gold-matte);
}

.editorial-text {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 400;
  color: var(--color-ice-white);
  margin-bottom: 3rem;
  font-style: italic;
}

.editorial-author-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.editorial-name {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
  color: var(--color-ice-white);
}

.editorial-role {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold-matte);
  font-weight: 600;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 4rem;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(244, 246, 249, 0.15);
  color: var(--color-light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.slider-arrow:hover {
  border-color: var(--color-gold-matte);
  color: var(--color-gold-matte);
}

/* SEÇÃO 8: Como funciona */
.how-it-works-section {
  background-color: var(--color-bg-secondary);
}

.timeline {
  position: relative;
  width: 100%;
}

.progress-line {
  position: absolute;
  top: 40px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, rgba(197, 168, 128, 0.05) 0%, rgba(197, 168, 128, 0.4) 50%, rgba(197, 168, 128, 0.05) 100%);
  z-index: 1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.icon-outer {
  position: relative;
  margin-bottom: 2rem;
}

.icon-inner {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-matte);
  transition: var(--transition-smooth);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.step-card:hover .icon-inner {
  border-color: var(--color-gold-matte);
  color: #07111B;
  background-color: var(--color-gold-matte);
  box-shadow: 0 10px 30px rgba(197, 168, 128, 0.35);
  transform: scale(1.05);
}

.step-card svg {
  color: inherit;
  transition: var(--transition-fast);
}

.step-number {
  position: absolute;
  bottom: -5px;
  right: -5px;
  font-size: 0.75rem;
  font-weight: 700;
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  color: var(--color-light-grey);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.step-card:hover .step-number {
  color: var(--color-gold-matte);
  border-color: var(--color-gold-matte);
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  color: var(--color-ice-white);
}

.step-desc {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--color-light-grey);
  max-width: 220px;
  font-weight: 300;
}

/* SEÇÃO 9: Sobre (Evolução Visual & Texto Curto) */
.about-section {
  position: relative;
  background-color: var(--color-bg-primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-heading {
  font-family: var(--font-serif);
  font-size: 3.25rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2.2rem;
  color: var(--color-ice-white);
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-light-grey);
  margin-bottom: 3.5rem;
  font-weight: 300;
}

.about-signature {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--color-gold-matte);
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  height: 580px;
  border: 1px solid var(--color-border);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

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

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

/* SEÇÃO 10: Blog */
.blog-section {
  background-color: var(--color-bg-secondary);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.blog-card {
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 168, 128, 0.3);
}

.blog-image-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

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

.blog-card:hover .blog-image-wrapper img {
  transform: scale(1.05);
}

.blog-content {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  font-size: 0.75rem;
  color: var(--color-gold-matte);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.blog-separator {
  margin: 0 0.5rem;
}

.blog-title {
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--color-ice-white);
}

.blog-excerpt {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--color-light-grey);
  margin-bottom: 2rem;
  font-weight: 300;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gold-matte);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.blog-link:hover {
  color: var(--color-gold-hover);
}

/* SEÇÃO FINAL: CTA */
.cta-section {
  position: relative;
  padding: 12rem 0;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle,
    rgba(7, 17, 27, 0.75) 0%,
    rgba(7, 17, 27, 0.95) 100%
  );
  z-index: 2;
}

.cta-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  margin: 0 auto;
}

.cta-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--color-gold-matte);
  margin-bottom: 1.5rem;
  display: block;
  font-weight: 600;
}

.cta-title {
  font-size: 3.8rem;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 2rem;
  color: var(--color-ice-white);
}

.cta-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--color-light-grey);
  margin-bottom: 3.5rem;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  justify-content: center;
}

/* FOOTER (Evolução Clean) */
.footer {
  background-color: #04090e;
  border-top: 1px solid rgba(197, 168, 128, 0.08);
  padding-top: 6rem;
  padding-bottom: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 5rem;
  margin-bottom: 5rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  margin-bottom: 1.8rem;
  transition: var(--transition-fast);
}

.footer-logo:hover {
  transform: scale(1.02);
}

.footer-logo-img {
  height: 48px;
  width: auto;
  max-width: 240px;
  display: block;
}

.footer-about {
  font-size: 0.85rem;
  color: var(--color-light-grey);
  line-height: 1.7;
  margin-bottom: 2.2rem;
  font-weight: 300;
}

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

.social-link {
  width: 44px;
  height: 44px;
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-matte);
  transition: var(--transition-fast);
}

.social-link:hover {
  background-color: var(--color-gold-matte);
  color: #07111B;
  border-color: var(--color-gold-matte);
  box-shadow: 0 0 15px rgba(197, 168, 128, 0.2);
}

.footer-heading {
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 2.2rem;
  letter-spacing: 0.05em;
  color: var(--color-ice-white);
}

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

.footer-links a {
  font-size: 0.85rem;
  color: var(--color-light-grey);
}

.footer-links a:hover {
  color: var(--color-gold-matte);
  padding-left: 4px;
}

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

.contact-item {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--color-light-grey);
  line-height: 1.6;
  font-weight: 300;
}

.contact-icon {
  color: var(--color-gold-matte);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(244, 246, 249, 0.05);
  padding-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--color-light-grey);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-signature {
  color: rgba(161, 168, 179, 0.35);
}

/* Animations Trigger classes (Observer) */
.animate-fade-in {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE DESIGN - MEDIA QUERIES */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 3.6rem;
  }

  .portrait-wrapper {
    height: 480px;
  }

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

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

  .about-grid {
    gap: 3rem;
  }

  .about-image-wrapper {
    height: 480px;
  }
}

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

  .hero-content {
    text-align: center;
    align-items: center;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    max-width: 100%;
  }

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

  .scroll-indicator {
    display: none;
  }

  .hero-portrait-container {
    margin-top: 2rem;
  }

  .portrait-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
    width: calc(100% - 40px);
    max-width: 320px;
  }

  .cris-ia-card {
    padding: 2rem;
  }

  .cris-ia-suggestions {
    justify-content: center;
  }

  .featured-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .category-filters {
    justify-content: center;
  }

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

  .region-card:nth-child(1),
  .region-card:nth-child(6) {
    grid-column: span 1;
  }

  .map-container {
    padding: 2.5rem;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 3rem;
  }

  .editorial-text {
    font-size: 1.4rem;
  }

  .timeline .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 3rem;
  }

  .progress-line {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-content {
    text-align: center;
    align-items: center;
  }

  .about-image-wrapper {
    max-width: 480px;
    margin: 0 auto;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .header {
    height: 75px;
  }
  
  .mobile-toggle {
    display: block;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions .schedule-btn {
    display: none;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .hero-buttons a {
    width: 100%;
  }

  .portrait-wrapper {
    height: 380px;
  }

  .cris-ia-input-wrapper {
    flex-direction: column;
  }

  .cris-ia-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 1.2rem;
  }

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

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

  .card-image-container {
    height: 300px;
  }

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

  .region-card {
    height: 280px;
  }

  .showcase-title {
    font-size: 2.6rem;
  }

  .map-container {
    padding: 1.5rem;
  }

  .number-value {
    font-size: 2.8rem;
  }

  .editorial-text {
    font-size: 1.2rem;
    line-height: 1.5;
  }

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

  .timeline .step-card {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .icon-outer {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .step-desc {
    max-width: 100%;
  }

  .about-heading {
    font-size: 2.6rem;
  }

  .cta-title {
    font-size: 2.6rem;
  }

  .footer {
    padding-top: 4rem;
  }
}

/* PREMIUM LOADING SCREEN */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loading-logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.loading-logo {
  width: 180px;
  height: auto;
  animation: logoPulse 2.2s infinite ease-in-out;
}

.loading-bar-container {
  width: 140px;
  height: 1px;
  background-color: rgba(197, 168, 128, 0.15);
  position: relative;
  overflow: hidden;
}

.loading-bar {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--color-gold-matte);
  animation: barLoad 1.8s infinite cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 8px var(--color-gold-matte);
}

@keyframes logoPulse {
  0%, 100% { transform: scale(0.98); opacity: 0.7; }
  50% { transform: scale(1.02); opacity: 1; }
}

@keyframes barLoad {
  0% { left: -100%; }
  50% { left: 0; }
  100% { left: 100%; }
}

/* SHIMMER EFFECT KEYFRAMES */
.shimmer-logo {
  position: relative;
  overflow: hidden;
}

.shimmer-logo::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(244, 227, 200, 0.25) 50%,
    transparent 100%
  );
  transform: skewX(-25deg);
  transition: 0.75s;
}

.shimmer-logo:hover::after {
  left: 150%;
  transition: 0.75s ease-in-out;
}

/* MINI BUSCADOR INTELIGENTE - PREMIUM */
.search-card-container {
  max-width: 1000px;
  margin: -3rem auto 2.5rem auto;
  padding: 2.5rem;
  background: rgba(7, 17, 27, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(197, 168, 128, 0.2);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 10;
  border-radius: 4px;
}

.search-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: flex-end;
}

.search-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.search-field-group label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold-matte);
  font-weight: 600;
}

.search-field-group select,
.search-field-group input {
  background-color: rgba(244, 246, 249, 0.03);
  border: 1px solid rgba(244, 246, 249, 0.12);
  color: var(--color-ice-white);
  padding: 0.9rem 1rem;
  font-size: 0.85rem;
  font-family: inherit;
  transition: all 0.3s ease;
  width: 100%;
  border-radius: 2px;
}

.search-field-group select:focus,
.search-field-group input:focus {
  outline: none;
  border-color: var(--color-gold-matte);
  background-color: rgba(197, 168, 128, 0.05);
  box-shadow: 0 0 10px rgba(197, 168, 128, 0.2);
}

.search-field-group select option {
  background-color: #07111B;
  color: var(--color-ice-white);
}

.search-advanced-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-light-grey);
  cursor: pointer;
  margin-top: 1.5rem;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.search-advanced-toggle:hover {
  color: var(--color-gold-matte);
}

.search-advanced-panel {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(244, 246, 249, 0.05);
  animation: fadeInDown 0.4s ease;
}

.search-advanced-panel.open {
  display: grid;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  grid-column: span 4;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--color-light-grey);
  cursor: pointer;
  user-select: none;
}

.checkbox-item input {
  display: none;
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(244, 246, 249, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.checkbox-item:hover .checkbox-custom {
  border-color: var(--color-gold-matte);
}

.checkbox-item input:checked + .checkbox-custom {
  background-color: var(--color-gold-matte);
  border-color: var(--color-gold-matte);
}

.checkbox-item input:checked + .checkbox-custom::after {
  content: "✓";
  color: #07111B;
  font-size: 0.7rem;
  font-weight: bold;
}

.search-submit-container {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.search-submit-btn {
  background-color: var(--color-gold-matte);
  color: #07111B;
  border: none;
  padding: 1.1rem 3rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.search-submit-btn:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 168, 128, 0.4);
}

/* CHIPS DE BUSCA RÁPIDA */
.search-chips-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  max-width: 900px;
  margin: 0 auto 5rem auto;
  padding: 0 1rem;
}

.search-chip {
  background-color: rgba(244, 246, 249, 0.02);
  border: 1px solid rgba(244, 246, 249, 0.1);
  color: var(--color-light-grey);
  padding: 0.6rem 1.2rem;
  font-size: 0.75rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}

.search-chip:hover {
  border-color: var(--color-gold-matte);
  color: var(--color-gold-matte);
  background-color: rgba(197, 168, 128, 0.03);
}

.search-chip.active {
  background-color: var(--color-gold-matte);
  border-color: var(--color-gold-matte);
  color: #07111B;
  box-shadow: 0 4px 10px rgba(197, 168, 128, 0.2);
}

/* CONTAINER DE RESULTADOS DINÂMICOS */
.results-section {
  display: none;
  padding-bottom: 7rem;
}

.results-section.active {
  display: block;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid rgba(244, 246, 249, 0.05);
  padding-bottom: 1.5rem;
}

.results-count {
  font-size: 0.9rem;
  color: var(--color-light-grey);
}

.clear-search-btn {
  background: transparent;
  border: none;
  color: var(--color-gold-matte);
  cursor: pointer;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s ease;
}

.clear-search-btn:hover {
  color: var(--color-gold-hover);
}

/* SINGLE PAGE APPLICATION (SPA) - PÁGINA DO IMÓVEL */
.property-detail-view {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #050b11;
  z-index: 5000;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.property-detail-view.open {
  opacity: 1;
  visibility: visible;
}

/* CLOSE AND CONTROL NAVIGATION BUTTONS */
.detail-close-btn {
  position: fixed;
  top: 2rem;
  left: 2rem;
  z-index: 5100;
  background-color: rgba(7, 17, 27, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(244, 246, 249, 0.15);
  color: var(--color-ice-white);
  padding: 0.9rem 1.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 4px;
}

.detail-close-btn:hover {
  background-color: var(--color-gold-matte);
  color: #07111B;
  border-color: var(--color-gold-matte);
  transform: translateX(-4px);
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.3);
}

/* DETALHE HERO / BANNER */
.detail-hero-banner {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.detail-hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 20s infinite alternate ease-in-out;
}

@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.detail-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(7, 17, 27, 0.3) 0%,
    rgba(7, 17, 27, 0.8) 70%,
    #050b11 100%
  );
  z-index: 1;
}

.detail-hero-title-box {
  position: absolute;
  bottom: 4rem;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 2rem;
}

.detail-hero-title-box .container {
  max-width: 1200px;
  margin: 0 auto;
}

.detail-category-badge {
  color: var(--color-gold-matte);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.detail-main-title {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-ice-white);
  max-width: 900px;
}

/* THUMBNAILS GALERIA ELEGANTE */
.detail-gallery-section {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(244, 246, 249, 0.05);
}

.detail-gallery-container {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}

/* Custom scrollbar for gallery list */
.detail-gallery-container::-webkit-scrollbar {
  height: 4px;
}

.detail-gallery-container::-webkit-scrollbar-thumb {
  background-color: rgba(197, 168, 128, 0.3);
}

.detail-gallery-thumb {
  width: 140px;
  height: 90px;
  flex-shrink: 0;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid rgba(244, 246, 249, 0.1);
  transition: all 0.3s ease;
  opacity: 0.6;
}

.detail-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.detail-gallery-thumb:hover {
  opacity: 0.9;
  border-color: rgba(197, 168, 128, 0.4);
}

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

.detail-gallery-thumb.active {
  opacity: 1;
  border-color: var(--color-gold-matte);
  box-shadow: 0 0 10px rgba(197, 168, 128, 0.3);
}

/* GRID PRINCIPAL DO DETALHE */
.detail-grid-section {
  padding: 5rem 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr;
  gap: 5rem;
}

.detail-info-col {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

/* AI REVIEW BLOCK */
.ai-review-box {
  background: linear-gradient(135deg, rgba(197, 168, 128, 0.06) 0%, rgba(7, 17, 27, 0.4) 100%);
  border: 1px solid rgba(197, 168, 128, 0.15);
  padding: 2.5rem;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.ai-review-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--color-gold-matte);
}

.ai-review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ai-review-badge {
  background-color: var(--color-gold-matte);
  color: #07111B;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}

.ai-review-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-ice-white);
}

.ai-review-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-light-grey);
  font-style: italic;
  font-weight: 300;
}

.detail-description-box h3,
.detail-characteristics-box h3,
.detail-map-box h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--color-ice-white);
  border-bottom: 1px solid rgba(244, 246, 249, 0.05);
  padding-bottom: 1rem;
}

.detail-description-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-light-grey);
  font-weight: 300;
}

.detail-characteristics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.detail-characteristic-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--color-light-grey);
}

.detail-characteristic-item svg {
  color: var(--color-gold-matte);
  flex-shrink: 0;
}

/* SIDEBAR COL (STICKY WIDGET) */
.detail-sidebar-col {
  position: relative;
}

.detail-sticky-card {
  position: sticky;
  top: 120px;
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  padding: 3rem;
  border-radius: 4px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.detail-sidebar-price-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold-matte);
  margin-bottom: 0.5rem;
  display: block;
}

.detail-sidebar-price {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--color-ice-white);
  margin-bottom: 2rem;
}

.detail-sidebar-specs {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  border-top: 1px solid rgba(244, 246, 249, 0.05);
  padding-top: 1.5rem;
}

.detail-sidebar-spec-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--color-light-grey);
}

.detail-sidebar-spec-label {
  color: var(--color-light-grey);
}

.detail-sidebar-spec-value {
  color: var(--color-ice-white);
  font-weight: 600;
}

.detail-sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-btn-wa {
  background-color: var(--color-gold-matte);
  color: #07111B;
  border: none;
  padding: 1.1rem;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.3);
}

.detail-btn-wa:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 168, 128, 0.4);
}

.detail-btn-dila {
  background: transparent;
  color: var(--color-ice-white);
  border: 1px solid rgba(244, 246, 249, 0.15);
  padding: 1.1rem;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.detail-btn-dila:hover {
  border-color: var(--color-gold-matte);
  color: var(--color-gold-matte);
}

/* SEÇÃO DE IMÓVEIS SEMELHANTES */
.detail-similar-section {
  padding: 5rem 0;
  background-color: rgba(244, 246, 249, 0.01);
  border-top: 1px solid rgba(244, 246, 249, 0.05);
}

.detail-similar-section h3 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 3.5rem;
  color: var(--color-ice-white);
  text-align: center;
}

/* RESPONSIVE FOR SEARCH AND SPA VIEW */
@media (max-width: 991px) {
  .search-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .search-advanced-panel {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .checkbox-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .detail-sticky-card {
    position: relative;
    top: 0;
  }
  
  .detail-main-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 600px) {
  .search-card-grid {
    grid-template-columns: 1fr;
  }
  
  .search-advanced-panel {
    grid-template-columns: 1fr;
  }
  
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
  
  .detail-characteristics-grid {
    grid-template-columns: 1fr;
  }
  
  .detail-main-title {
    font-size: 2rem;
  }
  
  .detail-close-btn {
    top: 1rem;
    left: 1rem;
    padding: 0.7rem 1.2rem;
    font-size: 0.65rem;
  }
}



/* ============================================================
   CRIS IA — Lista compacta de imóveis no chat (redesign)
   ============================================================ */
.chat-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
  max-width: 580px;
  width: 100%;
}

.chat-list-item {
  display: flex;
  gap: 0.9rem;
  padding: 0.7rem;
  background: rgba(19, 39, 58, 0.55);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  transition: var(--transition-fast);
  animation: cliIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.chat-list-item:nth-child(2) { animation-delay: 0.07s; }
.chat-list-item:nth-child(3) { animation-delay: 0.14s; }
.chat-list-item:nth-child(4) { animation-delay: 0.21s; }
.chat-list-item:nth-child(5) { animation-delay: 0.28s; }

.chat-list-item:hover {
  border-color: rgba(197, 168, 128, 0.45);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

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

.cli-thumb {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  background: var(--color-bg-secondary);
}

.cli-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cli-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.8rem;
}

.cli-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--color-ice-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cli-price {
  color: var(--color-gold-matte);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

.cli-meta {
  font-size: 0.72rem;
  color: var(--color-light-grey);
  letter-spacing: 0.03em;
}

.cli-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.cli-btn {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(244, 246, 249, 0.18);
  border-radius: 4px;
  color: var(--color-ice-white);
  background: transparent;
  transition: var(--transition-fast);
  cursor: pointer;
}

.cli-btn:hover {
  border-color: var(--color-gold-matte);
  color: var(--color-gold-matte);
}

.cli-btn-gold {
  background: var(--color-gold-matte);
  border-color: var(--color-gold-matte);
  color: #07111B;
}

.cli-btn-gold:hover {
  background: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  color: #07111B;
}

.chat-followup {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--color-light-grey);
  line-height: 1.6;
  max-width: 580px;
}

/* Acessibilidade e refinamento */
:focus-visible {
  outline: 2px solid var(--color-gold-matte);
  outline-offset: 2px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

@media (max-width: 560px) {
  .cli-thumb { width: 60px; height: 60px; }
  .cli-name { font-size: 0.85rem; }
  .cli-actions { flex-wrap: wrap; }
  .chat-history { padding: 1.2rem; }
}

/* ============================================================
   JORNADA EMOCIONAL — blocos cinematográficos
   ============================================================ */
.cine-section {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cine-bg {
  position: absolute;
  inset: 0;
}

.cine-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cine-section:hover .cine-bg img {
  transform: scale(1);
}

.cine-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 17, 27, 0.88) 0%, rgba(7, 17, 27, 0.45) 55%, rgba(7, 17, 27, 0.15) 100%);
}

.cine-right .cine-overlay {
  background: linear-gradient(270deg, rgba(7, 17, 27, 0.88) 0%, rgba(7, 17, 27, 0.45) 55%, rgba(7, 17, 27, 0.15) 100%);
}

.cine-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 8rem 0;
}

.cine-right .cine-content {
  margin-left: auto;
  text-align: right;
}

.cine-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 1.8rem;
}

.cine-sub {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--color-light-grey);
  margin-bottom: 3rem;
}

.cine-cta {
  cursor: pointer;
}

/* Faixa de citação (patrimônio) */
.quote-band {
  padding: 9rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-secondary);
}

.quote-band-content {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.quote-band-text {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 3rem;
}

/* ============================================================
   ENCONTRE SEU ESTILO DE VIDA
   ============================================================ */
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.lifestyle-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 2.2rem 1.8rem;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lifestyle-card:hover {
  border-color: rgba(197, 168, 128, 0.5);
  transform: translateY(-4px);
  background: var(--color-bg-tertiary);
}

.ls-emoji {
  font-size: 1.6rem;
  line-height: 1;
}

.ls-label {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-ice-white);
}

/* ============================================================
   UM LITORAL PARA CADA MOMENTO DA VIDA
   ============================================================ */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.region-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.8rem 2.2rem;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-fast);
}

.region-card:hover {
  border-color: rgba(197, 168, 128, 0.5);
  transform: translateY(-4px);
}

.region-word {
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-gold-matte);
  margin-bottom: 0.4rem;
}

.region-name {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-ice-white);
  margin-bottom: 1.2rem;
}

.region-story {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-light-grey);
  margin-bottom: 1.6rem;
}

.region-link {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--color-gold-matte);
  margin-top: auto;
}

.region-card-consult {
  border-style: dashed;
}

/* Responsivo */
@media (max-width: 1024px) {
  .lifestyle-grid { grid-template-columns: repeat(2, 1fr); }
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .lifestyle-grid { grid-template-columns: 1fr 1fr; gap: 0.7rem; }
  .lifestyle-card { padding: 1.5rem 1.2rem; }
  .ls-label { font-size: 0.9rem; }
  .regions-grid { grid-template-columns: 1fr; }
  .cine-section { min-height: 62vh; }
  .cine-content { padding: 5rem 0; }
  .cine-right .cine-content { text-align: left; margin-left: 0; }
  .quote-band { padding: 5rem 0; }
}

/* ============================================================
   BRAND EXPERIENCE — coleções, voz da Cris, leads de seção
   ============================================================ */
.section-lead {
  max-width: 560px;
  margin: 1.4rem auto 0;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-light-grey);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.collection-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.6rem 2.2rem;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-fast);
}

.collection-card:hover {
  border-color: rgba(197, 168, 128, 0.5);
  transform: translateY(-4px);
  background: var(--color-bg-tertiary);
}

.collection-kicker {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-gold-matte);
  margin-bottom: 0.6rem;
}

.collection-name {
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--color-ice-white);
  margin-bottom: 0.9rem;
}

.collection-desc {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-light-grey);
  margin-bottom: 1.6rem;
}

.collection-meta {
  margin-top: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.72rem;
  color: var(--color-light-grey);
  letter-spacing: 0.05em;
}

/* Badge de curadoria pessoal */
.card-badge-cris {
  background: var(--color-gold-matte) !important;
  color: #07111B !important;
  font-weight: 600;
}

/* Fotos reais nos cartões de região */
.region-thumb {
  width: 100%;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.6rem;
  background: var(--color-bg-tertiary);
}

.region-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.region-card:hover .region-thumb img {
  transform: scale(1.06);
}

.quote-band-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-light-grey);
  margin: -1.4rem 0 3rem;
}

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

@media (max-width: 640px) {
  .collections-grid { grid-template-columns: 1fr; }
  .region-thumb { height: 120px; }
}

/* ============================================================
   MOBILE EXPERIENCE — camada de refinamento premium
   ============================================================ */

/* Altura estável em navegadores móveis (barra de URL do Safari/Chrome) */
.hero-section { min-height: 100vh; min-height: 100svh; }
.cine-section { min-height: 78vh; min-height: 78svh; }

/* Barra de ações fixa — apenas mobile */
.mobile-action-bar { display: none; }

@media (max-width: 768px) {
  /* Respiro proporcional ao dispositivo (era 10rem fixo do desktop) */
  .container { padding: 0 1.4rem; }
  .section-padding { padding-top: 5.5rem; padding-bottom: 5.5rem; }
  .section-title-wrapper { margin-bottom: 3rem; }
  .section-title { font-size: 2.2rem; }
  .section-lead { font-size: 0.95rem; }

  /* BUG legado: altura fixa do mapa antigo decapitava os cartões de região */
  .region-card { height: auto; }

  /* Chat como aplicativo */
  .concierge-card { height: min(640px, 80svh); }
  .chat-input { font-size: 16px; padding: 1rem 1.2rem; } /* 16px evita zoom automático do iOS */
  .chat-tag { padding: 0.7rem 1.1rem; min-height: 44px; }
  .cli-btn { min-height: 44px; padding: 0.6rem 0.9rem; }
  .card-slider-btn { width: 44px; height: 44px; }

  .quote-band-text { font-size: 1.35rem; }
  .cta-title { font-size: 2.1rem; }
  .hero-section { padding-top: 100px; }

  /* Espaço para a barra inferior fixa */
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }

  .mobile-action-bar {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 0.6rem;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 900;
    padding: 0.6rem 1rem calc(0.6rem + env(safe-area-inset-bottom));
    background: rgba(7, 17, 27, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--color-border);
  }

  .mab-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    border-radius: 8px;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid rgba(197, 168, 128, 0.4);
    color: var(--color-ice-white);
    background: transparent;
    text-decoration: none;
    transition: var(--transition-fast);
  }

  .mab-primary {
    background: var(--color-gold-matte);
    color: #07111B;
    border-color: var(--color-gold-matte);
  }

  .mab-btn:active { transform: scale(0.97); }

  /* Feedback de toque nos cartões interativos */
  .lifestyle-card:active,
  .region-card:active,
  .collection-card:active,
  .chat-list-item:active { transform: scale(0.985); }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .portrait-wrapper { height: 320px; }
  .chat-send-btn span { display: none; } /* vira botão-ícone, some o risco de overflow */
  .chat-send-btn { padding: 0 1.3rem; min-width: 54px; justify-content: center; }
  .number-value { font-size: 2.3rem; }
  .editorial-text { font-size: 1.05rem; }
  .cine-title { margin-bottom: 1.2rem; }
  .cine-sub { margin-bottom: 2.2rem; }
}
