/* ==========================================================================
   DESIGN SYSTEM - ALTO PADRÃO MINIMALISTA, FLUIDO E EDITORIAL
   ========================================================================== */

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

:root {
  /* Paleta Alto Padrão (Verde Floresta + Areia / Taupe + Marfim) */
  --primary-color: #1A2717;     /* Verde Floresta Nobre Escuro */
  --accent-color: #43543C;      /* Verde Vallée Editorial */
  --sage-color: #6E7C6A;        /* Verde Sálvia */
  --olive-color: #556250;       /* Verde Oliva */
  --secondary-color: #9E9079;   /* Areia / Taupe Sofisticado */
  
  --bg-light: #F7F6F0;          /* Off-white / Marfim Editorial (Fundo da página) */
  --bg-dark: #EFECE4;           /* Verde Sálvia Claríssimo para seções alternadas */
  --bg-card: #FFFFFF;           /* Branco Puro */
  
  --text-color: #22251F;        /* Grafite Profundo */
  --text-light: #647060;       /* Verde Suave para Subtextos */
  --text-white: #FFFFFF;        /* Branco */

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --border-radius-sm: 10px;
  --border-radius-md: 20px;
  --border-radius-lg: 32px;
  --border-radius-pill: 100px;
  
  --box-shadow-soft: 0 12px 36px rgba(26, 39, 23, 0.04);
  --box-shadow-medium: 0 24px 50px rgba(26, 39, 23, 0.07);
  --transition-fast: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-color);
  background-color: var(--bg-light);
  line-height: 1.7;
  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);
}

ul {
  list-style: none;
}

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

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

/* ==========================================================================
   TYPOGRAPHY & MINIMALIST UTILITIES
   ========================================================================== */

h1, h2, h3, h4, .font-heading {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 16px;
  background: transparent;
  border: 1px solid rgba(67, 84, 60, 0.25);
  color: var(--accent-color);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: var(--border-radius-pill);
  margin-bottom: 14px;
}

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

.section-header h2 {
  font-size: 2.6rem;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 400;
  line-height: 1.65;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 1px;
  border-radius: var(--border-radius-pill);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--text-white);
  box-shadow: 0 10px 30px rgba(26, 39, 23, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(26, 39, 23, 0.35);
  background: var(--accent-color);
}

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

.btn-outline:hover {
  color: var(--text-white);
  background: var(--primary-color);
}

/* ==========================================================================
   HEADER MINIMALIST GLASSMORPHISM
   ========================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition-fast);
  background: rgba(247, 246, 240, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26, 39, 23, 0.06);
}

.header.scrolled {
  padding: 10px 0;
  background: rgba(247, 246, 240, 0.96);
  box-shadow: 0 8px 30px rgba(26, 39, 23, 0.05);
}

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

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

.agency-logo-img {
  height: 48px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  transition: var(--transition-fast);
}

.header.scrolled .agency-logo-img {
  height: 38px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  color: var(--text-color);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--primary-color);
  transition: var(--transition-fast);
}

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

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

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: transparent;
  color: var(--primary-color);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   SEÇÃO 1: HERO (REPOSITONADO & FLUIDO PARA DESKTOP E SMARTPHONE)
   ========================================================================== */

.hero-split-full {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 85px 0 40px 0;
  background: var(--bg-light);
  color: var(--text-color);
  overflow: hidden;
}

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

.hero-flex-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 620px;
}

.hero-property-logo-wrapper {
  margin-bottom: 20px;
}

.hero-property-logo {
  height: 52px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
}

.hero-headline {
  font-size: 3.6rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 18px;
  line-height: 1.12;
}

.hero-mobile-image-box {
  display: none;
}

.hero-subhead {
  font-size: 1.15rem;
  color: var(--text-color);
  margin-bottom: 28px;
  max-width: 580px;
  font-weight: 400;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Imagem 100% Altura da Seção no Desktop */
.hero-media-full {
  position: absolute;
  top: 0;
  right: 0;
  width: 55vw;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-featured-full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  display: block;
}

.hero-image-blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(to right, var(--bg-light) 0%, rgba(247, 246, 240, 0.85) 50%, transparent 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  mask-image: linear-gradient(to right, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 0%, transparent 100%);
}

/* ==========================================================================
   SEÇÃO 2: O EMPREENDIMENTO
   ========================================================================== */

.features-section {
  padding: 60px 0;
  background: var(--bg-light);
}

.diferenciais-split-wrapper {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.diferenciais-media-side {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(26, 39, 23, 0.1);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.diferenciais-media-side:hover {
  transform: translateY(-6px);
}

.diferenciais-img-rounded {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  display: block;
}

.diferenciais-text-side {
  display: flex;
  flex-direction: column;
}

.diferenciais-text-side h2 {
  font-size: 2.6rem;
  color: var(--primary-color);
  margin-bottom: 14px;
}

.diferenciais-list-side {
  display: flex;
  flex-direction: column;
}

.diferencial-list-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(26, 39, 23, 0.08);
}

.diferencial-list-row:last-child {
  border-bottom: none;
}

.diferencial-list-num {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--secondary-color);
  font-weight: 500;
  min-width: 26px;
  line-height: 1.2;
}

.diferencial-list-info h3 {
  font-size: 1.15rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 3px;
}

.diferencial-list-info p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* ==========================================================================
   SEÇÃO 3: DIFERENCIAIS / LAZER
   ========================================================================== */

.lazer-section {
  padding: 60px 0;
  background: var(--bg-dark);
}

.lazer-boxed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.lazer-card-boxed {
  background: #FFFFFF;
  border: 1px solid rgba(26, 39, 23, 0.08);
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 10px 30px rgba(26, 39, 23, 0.04);
  transition: var(--transition-smooth);
}

.lazer-card-boxed:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(26, 39, 23, 0.08);
  border-color: rgba(67, 84, 60, 0.2);
}

.lazer-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(67, 84, 60, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.lazer-card-boxed h3 {
  font-size: 1.15rem;
  color: var(--primary-color);
  margin-bottom: 6px;
  font-weight: 500;
}

.lazer-card-boxed p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* ==========================================================================
   SEÇÃO GALERIA DE FOTOS (CARROSSEL HORIZONTAL LIMPO)
   ========================================================================== */

.gallery-section {
  padding: 60px 0;
  background: var(--bg-light);
}

.gallery-carousel-wrapper {
  position: relative;
  width: 100%;
}

.gallery-carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 4px 16px 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-carousel-track::-webkit-scrollbar {
  display: none;
}

.gallery-carousel-track .gallery-item {
  flex: 0 0 360px;
  scroll-snap-align: start;
  border-radius: var(--border-radius-md);
  height: 290px;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(26, 39, 23, 0.12);
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(26, 39, 23, 0.15);
  transition: var(--transition-fast);
}

.carousel-control:hover {
  background: var(--primary-color);
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.08);
}

.carousel-prev { left: -20px; }
.carousel-next { right: -20px; }

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 290px;
  cursor: pointer;
  box-shadow: var(--box-shadow-soft);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26, 39, 23, 0.88) 0%, rgba(26, 39, 23, 0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0.85;
  transition: var(--transition-fast);
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-category {
  font-size: 0.72rem;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 4px;
}

.gallery-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  color: var(--text-white);
  font-weight: 500;
}

.gallery-zoom-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1rem;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition-fast);
}

.gallery-item:hover .gallery-zoom-icon {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox Modal com Setas < > Flutuantes sobre a Imagem no Modo Ampliado */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(26, 39, 23, 0.96);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

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

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2100;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--text-white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--accent-color);
  color: var(--text-white);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2100;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  font-size: 1.7rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-nav:hover {
  background: #FFFFFF;
  color: var(--primary-color);
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ==========================================================================
   SEÇÃO 4: PLANTAS / LOTES
   ========================================================================== */

.plans-section {
  padding: 60px 0;
  background: var(--bg-light);
}

.lotes-clean-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

/* Moldura e Bordas Arredondadas do Carrossel de Masterplans */
.lotes-masterplan-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(26, 39, 23, 0.03);
  border: 1px solid rgba(26, 39, 23, 0.08);
  padding: 14px;
  box-shadow: 0 16px 48px rgba(26, 39, 23, 0.05);
}

.lotes-carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
  pointer-events: none;
  z-index: 10;
}

.lotes-nav-btn {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(26, 39, 23, 0.12);
  color: var(--primary-color);
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(26, 39, 23, 0.15);
  transition: var(--transition-fast);
}

.lotes-nav-btn:hover {
  background: var(--primary-color);
  color: #FFFFFF;
  transform: scale(1.08);
}

.lotes-carousel-tabs {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.lote-tab-btn {
  padding: 8px 20px;
  border-radius: var(--border-radius-pill);
  background: rgba(67, 84, 60, 0.08);
  color: var(--text-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lote-tab-btn.active, .lote-tab-btn:hover {
  background: var(--primary-color);
  color: #FFFFFF;
}

.lotes-masterplan-img {
  width: 100%;
  max-height: 640px;
  object-fit: contain;
  border-radius: 20px;
  display: block;
  transition: transform 0.4s ease;
}

.lotes-masterplan-img:hover {
  transform: scale(1.02);
}

/* Diagramação e Espaçamentos do Lado do Texto */
.lotes-details-side {
  display: flex;
  flex-direction: column;
  padding-left: 8px;
}

.lote-category-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.lote-title-heading {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 16px;
  line-height: 1.25;
  font-family: var(--font-heading);
  font-weight: 500;
}

.plan-description {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.plan-highlights-list {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.plan-highlights-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--primary-color);
  font-size: 0.98rem;
  line-height: 1.5;
}

.plan-highlights-list li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(67, 84, 60, 0.12);
  color: var(--accent-color);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
}

.lote-price-box {
  background: #FFFFFF;
  border: 1px solid rgba(26, 39, 23, 0.08);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 28px;
  box-shadow: 0 10px 28px rgba(26, 39, 23, 0.04);
}

.lote-price-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sage-color);
  font-weight: 700;
  margin-bottom: 4px;
}

.lote-price-value {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 500;
  color: var(--primary-color);
  line-height: 1.1;
}

/* ==========================================================================
   SEÇÃO 5: FORMULÁRIO DE CAPTURA DE LEAD
   ========================================================================== */

.lead-section {
  padding: 60px 0;
  background: var(--bg-dark);
  color: var(--text-color);
  position: relative;
}

.lead-container-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.lead-info-side h2 {
  font-size: 2.6rem;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.lead-info-side p {
  color: var(--text-color);
  font-size: 1.1rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

.lead-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  color: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--box-shadow-soft);
}

.benefit-text {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--primary-color);
}

.lead-form-card {
  background: #FFFFFF;
  border-radius: var(--border-radius-lg);
  padding: 38px 32px;
  box-shadow: var(--box-shadow-medium);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: #F7F6F0;
  border: 1px solid rgba(26, 39, 23, 0.1);
  border-radius: 12px;
  color: var(--text-color);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input::placeholder {
  color: var(--sage-color);
}

.form-input:focus {
  border-color: var(--primary-color);
  background: #FFFFFF;
  box-shadow: 0 0 16px rgba(26, 39, 23, 0.1);
}

.form-submit-btn {
  width: 100%;
  padding: 16px;
  margin-top: 8px;
  font-size: 0.9rem;
}

.form-privacy {
  margin-top: 16px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ==========================================================================
   SUCCESS MODAL
   ========================================================================== */

.success-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(26, 39, 23, 0.88);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.success-modal.active {
  opacity: 1;
  visibility: visible;
}

.success-card {
  background: var(--bg-card);
  color: var(--text-color);
  max-width: 500px;
  width: 90%;
  padding: 44px 34px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.4);
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

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

.success-icon {
  width: 70px;
  height: 70px;
  background: rgba(67, 84, 60, 0.12);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  margin: 0 auto 20px auto;
}

.success-card h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 14px;
}

.success-card p {
  color: var(--text-color);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ==========================================================================
   RODAPÉ EDITORIAL CENTRALIZADO
   ========================================================================== */

.footer {
  background: #EAE7DC;
  color: var(--text-color);
  padding: 44px 0 28px 0;
  border-top: 1px solid rgba(26, 39, 23, 0.08);
  font-size: 0.875rem;
  text-align: center !important;
}

.footer-container-centered {
  display: flex;
  flex-direction: column;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.footer-logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 8px;
  width: 100%;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin: 0 auto !important;
  display: block;
}

#footer-agency-cnpj {
  display: block;
  text-align: center !important;
  width: 100%;
  color: var(--text-color);
}

.footer-legal-notice {
  line-height: 1.65;
  color: var(--text-light);
  font-size: 0.82rem;
  text-align: center !important;
  max-width: 800px;
  margin: 0 auto !important;
}

.footer-bottom-centered {
  display: flex;
  flex-direction: column;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(26, 39, 23, 0.08);
  width: 100%;
  color: var(--text-color);
  font-size: 0.875rem;
}

.footer-bottom-centered div {
  text-align: center !important;
  width: 100%;
}

.footer-signature {
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
  display: inline-block;
}

.footer-signature:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/* ==========================================================================
   RESPONSIVIDADE (MEDIA QUERIES SMARTPHONES & TABLETS)
   ========================================================================== */

@media (max-width: 992px) {
  .desktop-only-media {
    display: none !important;
  }

  .hero-split-full {
    min-height: auto;
    padding: 105px 0 44px 0;
  }

  .hero-flex-wrapper {
    align-items: center;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
  }

  /* Ordem Exata Solicitada pelo Usuário em Smartphones com Espaçamento Adequado:
     1. Logo Vallée Verte
     2. Headline
     3. Imagem
     4. Subhead
     5. Botão
  */
  .hero-order-1 { order: 1; margin-bottom: 22px; width: 100%; display: flex; justify-content: center; }
  .hero-order-2 { order: 2; margin-bottom: 24px; width: 100%; }
  .hero-order-3 { order: 3; margin-bottom: 26px; display: block; width: 100%; }
  .hero-order-4 { order: 4; margin-bottom: 30px; width: 100%; }
  .hero-order-5 { order: 5; width: 100%; display: flex; justify-content: center; }

  .hero-property-logo {
    height: 48px;
    margin: 0 auto;
  }

  .hero-headline {
    font-size: 2.45rem;
    text-align: center;
    line-height: 1.18;
  }

  .hero-mobile-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(26, 39, 23, 0.12);
    display: block;
  }

  .hero-subhead {
    font-size: 1.05rem;
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
    padding: 0 4px;
    text-wrap: pretty;
  }

  .hero-ctas {
    width: 100%;
    justify-content: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 360px;
  }

  /* ALINHAMENTO CENTRALIZADO DOS CARDS DE LAZER NO MOBILE */
  .lazer-card-boxed {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .lazer-card-icon {
    margin: 0 auto 14px auto;
  }

  /* CENTRALIZAÇÃO DA TAG E TÍTULO DA SEÇÃO DE FORMULÁRIO DE LEAD NO MOBILE */
  .lead-info-side {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .lead-info-side .section-badge {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .lead-info-side h2 {
    text-align: center !important;
  }

  .lead-info-side p {
    text-align: center !important;
  }

  .lead-benefits-list {
    align-items: flex-start;
    text-align: left;
    margin: 0 auto;
  }

  /* Demais seções responsivas */
  .diferenciais-split-wrapper { grid-template-columns: 1fr; gap: 32px; }
  .diferenciais-img-rounded { height: 360px; }
  .lotes-clean-container { grid-template-columns: 1fr; gap: 32px; }
  .lotes-details-side { padding-left: 0; }
  .lotes-masterplan-img { max-height: 440px; }
  .gallery-carousel-track .gallery-item { flex: 0 0 280px; height: 240px; }
  .lead-container-grid { grid-template-columns: 1fr; gap: 36px; }
  .carousel-prev { left: 0; }
  .carousel-next { right: 0; }
  .lightbox-prev { left: 12px; width: 48px; height: 48px; font-size: 1.4rem; }
  .lightbox-next { right: 12px; width: 48px; height: 48px; font-size: 1.4rem; }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .header {
    padding: 12px 0;
  }

  .agency-logo-img {
    height: 38px;
  }

  .nav-menu {
    position: fixed;
    top: 62px;
    left: 0;
    width: 100%;
    background: rgba(247, 246, 240, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 28px;
    gap: 18px;
    transform: translateY(-150%);
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(26, 39, 23, 0.1);
  }
  
  .nav-menu.active {
    transform: translateY(0);
  }
  
  .nav-toggle { display: block; }
  
  .hero-split-full { padding: 95px 0 36px 0; }
  
  .hero-order-1 { margin-bottom: 20px; }
  .hero-order-2 { margin-bottom: 22px; }
  .hero-order-3 { margin-bottom: 24px; }
  .hero-order-4 { margin-bottom: 28px; }

  .hero-headline { font-size: 2.15rem; }
  .hero-mobile-img { height: 215px; border-radius: 18px; }

  .hero-subhead {
    font-size: 0.98rem;
    line-height: 1.6;
    padding: 0;
    width: 100%;
    max-width: 100%;
  }

  .section-header h2 { font-size: 1.95rem; }
  .diferenciais-img-rounded { height: 280px; }

  /* PREÇO DOS LOTES & BOTÃO EM 1 ÚNICA LINHA NO SMARTPHONE */
  .lote-price-box {
    padding: 16px 18px !important;
    margin-bottom: 20px !important;
  }

  .lote-price-value {
    font-size: 1.55rem !important;
    white-space: nowrap !important;
    letter-spacing: -0.5px;
  }

  .lote-price-label {
    font-size: 0.68rem !important;
    margin-bottom: 2px !important;
  }

  .lotes-details-side .btn {
    font-size: 0.76rem !important;
    padding: 14px 12px !important;
    white-space: nowrap !important;
    letter-spacing: 0.3px !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-split-full {
    padding: 90px 0 32px 0;
  }

  .hero-order-1 { margin-bottom: 18px; }
  .hero-order-2 { margin-bottom: 20px; }
  .hero-order-3 { margin-bottom: 22px; }
  .hero-order-4 { margin-bottom: 26px; }

  .hero-headline {
    font-size: 1.95rem;
  }

  .hero-subhead {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .lote-price-value {
    font-size: 1.38rem !important;
  }

  .lotes-details-side .btn {
    font-size: 0.70rem !important;
    padding: 14px 10px !important;
  }
}
