:root {
  --bg-dark: #020202;
  --bg-card: #0a0a0a;
  --bg-card-hover: #111111;
  --primary: #d4af37; /* Imperial Gold */
  --primary-dark: #b8860b;
  --primary-glow: rgba(212, 175, 55, 0.25);
  --accent: #f9f6ec; /* Soft white highlight */
  --accent-bright: #ffffff;
  --gold: #d4af37; /* Premium Gold */
  --gold-dark: #a6790d;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --text-main: #f4f1e6;
  --text-muted: #cfc9bb;
  --border: rgba(212, 175, 55, 0.25);
  --border-hover: rgba(212, 175, 55, 0.6);
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --font-main: "Space Grotesk", sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #000;
}
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 50% -20%, rgba(212, 175, 55, 0.05), transparent 70%),
    radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.03), transparent 60%);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Grain Texture Overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3 {
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease 0.2s both;
}

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

.text-highlight {
  background: linear-gradient(135deg, var(--gold) 0%, #fff 60%, var(--gold) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  color: var(--text-main);
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  position: relative;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #fff 0%, var(--gold) 50%, #fff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-shadow: 0 0 10px var(--gold-glow);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.2rem;
  border-radius: 0; /* Sharp edges */
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #000;
  box-shadow: 
    0 5px 20px rgba(212, 175, 55, 0.3),
    0 0 20px rgba(212, 175, 55, 0.1);
  font-weight: 700;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.btn.primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  transition: 0.6s ease;
}

.btn.primary:hover::after {
  left: 100%;
}

.btn.primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 50%, #f5e6c1 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn.primary:hover::before {
  opacity: 1;
}

.btn.primary:hover {
  box-shadow: 
    0 8px 30px rgba(212, 175, 55, 0.4),
    0 0 40px rgba(212, 175, 55, 0.3);
  transform: translateY(-3px);
}

.btn.primary:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 15px rgba(212, 175, 55, 0.3);
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}

.btn.ghost:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.btn-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(0,0,0,0.5);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.btn-icon:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000;
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
  transform: scale(1.05);
}

/* Header - Sticky and Beautiful */
.header {
  padding-top: 0;
  min-height: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 5rem;
  background: radial-gradient(ellipse at top, rgba(212, 175, 55, 0.05) 0%, transparent 60%),
              radial-gradient(ellipse at bottom, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
}

.nav {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  right: auto;
  max-width: 1200px;
  width: calc(100% - 2rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, rgba(10, 15, 10, 0.85) 0%, rgba(5, 5, 5, 0.9) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid;
  border-image: linear-gradient(90deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.3)) 1;
  border-radius: 50px;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.1);
}

.nav.scrolled {
  padding: 0.8rem 1.8rem;
  background: rgba(10, 15, 10, 0.9);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  top: 0.5rem;
}

.nav::after {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}

.nav.scrolled::after {
  opacity: 0.3;
}

/* Hero content needs padding for fixed nav */
.hero-centered {
  padding-top: 10rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--gold) 0%, #fff 50%, var(--gold) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.15em;
  position: relative;
  transition: var(--transition);
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.logo:hover::after {
  width: 100%;
}

.logo i {
  background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 50%, var(--gold) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.8rem;
  transition: var(--transition);
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4)) drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.logo:hover i {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
}

.nav.scrolled .logo {
  font-size: 1.3rem;
}

.nav.scrolled .logo i {
  font-size: 1.6rem;
}

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

.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.nav-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transition: var(--transition);
  box-shadow: 0 0 10px var(--primary);
}

.nav-links a:hover::before,
.nav-links a.active::before {
  opacity: 1;
  top: -8px;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.btn-nav {
  padding: 0.7rem 1.5rem;
  border: 1px solid;
  border-image: linear-gradient(135deg, rgba(212, 175, 55, 0.4), rgba(212, 175, 55, 0.3)) 1;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.05));
  background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.75rem !important;
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.btn-nav::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 100%);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: -1;
  border-radius: 50%;
}

.btn-nav:hover::before {
  width: 300px;
  height: 300px;
}

.btn-nav:hover {
  color: #000 !important;
  border-color: var(--gold);
  background: transparent;
  box-shadow: 
    0 0 25px rgba(212, 175, 55, 0.4),
    0 0 15px rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
  -webkit-text-fill-color: #000;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

/* CENTERED HERO */
.hero-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
    padding-top: 8rem;
}

.hero-text-content {
    max-width: 900px;
    margin: 0 auto;
}

.eyebrow-centered {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.3em;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: block;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-sub {
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto;
    color: var(--text-muted);
    font-weight: 300;
    animation: fadeInUp 1s ease 0.4s both;
}

.video-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 3rem auto 4rem;
    position: relative;
}

@keyframes pulse-glow {
  0% { 
    box-shadow: 
      0 0 30px rgba(212, 175, 55, 0.3),
      0 0 20px rgba(212, 175, 55, 0.2),
      inset 0 0 30px rgba(0, 0, 0, 0.5);
  }
  50% { 
    box-shadow: 
      0 0 60px rgba(212, 175, 55, 0.5),
      0 0 40px rgba(212, 175, 55, 0.4),
      inset 0 0 30px rgba(0, 0, 0, 0.5);
  }
  100% { 
    box-shadow: 
      0 0 30px rgba(212, 175, 55, 0.3),
      0 0 20px rgba(212, 175, 55, 0.2),
      inset 0 0 30px rgba(0, 0, 0, 0.5);
  }
}

.video-border {
    padding: 4px;
    background: linear-gradient(135deg, var(--gold), var(--primary), var(--gold), var(--primary), var(--gold));
    background-size: 300% 300%;
    border-radius: 2px;
    animation: pulse-glow 4s infinite ease-in-out, gradientShift 10s ease infinite;
    position: relative;
    box-shadow: 
      0 0 40px rgba(212, 175, 55, 0.3),
      0 0 20px rgba(212, 175, 55, 0.2),
      inset 0 0 30px rgba(0, 0, 0, 0.5);
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.video-border::before {
  content: '';
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.1) 50%, transparent 70%);
  z-index: -1;
  animation: rotate 25s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.video-border video {
    display: block;
    width: 100%;
    background: #000;
    transition: transform 0.3s ease;
}

.video-border:hover video {
    transform: scale(1.01);
}

.hero-lead-capture {
    width: 100%;
    max-width: 800px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.9) 50%, rgba(0, 0, 0, 0.95) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--gold), var(--primary), var(--gold)) 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    box-shadow: 
      0 20px 60px rgba(0, 0, 0, 0.8),
      0 0 40px rgba(212, 175, 55, 0.2),
      0 0 30px rgba(212, 175, 55, 0.1),
      inset 0 1px 0 rgba(212, 175, 55, 0.1);
    border-radius: 12px;
}

.hero-lead-capture::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.05), transparent 70%);
  border-radius: 12px;
  pointer-events: none;
}

.hero-lead-capture:focus-within {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.1);
}

.hero-cta-button {
  text-decoration: none;
  display: inline-flex;
  width: auto;
  min-width: 300px;
  justify-content: center;
}

.lead-text {
    background: linear-gradient(90deg, #fff 0%, var(--gold) 50%, #fff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    font-size: 0.9rem;
}

.inline-form {
    display: flex;
    gap: 0; /* Connected inputs */
    width: 100%;
    flex-wrap: wrap;
}

.inline-form input {
    flex: 1;
    min-width: 250px;
    background: #0e0e0e;
    border: 1px solid #222;
    padding: 1.2rem 1.5rem;
    color: #fff;
    font-size: 1rem;
    border-radius: 25px; /* Bordas bem arredondadas no hero */
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    
    /* Texto mais limpo */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.05em;
    caret-color: var(--primary);
}

.inline-form input::placeholder {
    color: #555;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.inline-form input:focus::placeholder {
    opacity: 0;
    transform: translateX(10px);
}

.inline-form input:focus {
    border-color: var(--primary);
    background: #111111;
    outline: none;
    z-index: 2;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2), 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
    color: #ffffff;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Animação ao digitar no hero form */
.inline-form input.typing {
    animation: heroInputPulse 0.2s ease;
}

@keyframes heroInputPulse {
  0%, 100% {
    transform: translateY(-2px);
  }
  50% {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.25), 0 5px 15px rgba(0, 0, 0, 0.3);
  }
}

/* Typing indicator - sutil pulsação */
.inline-form input:focus:not(.typing) {
    animation: pulseInputSubtle 2s infinite;
}

@keyframes pulseInputSubtle {
  0%, 100% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15), 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.25), 0 5px 15px rgba(0, 0, 0, 0.3);
  }
}

/* Estilo para mobile - touch feedback */
@media (hover: none) and (pointer: coarse) {
  input:active,
  textarea:active {
    transform: scale(0.995);
    transition: transform 0.1s ease;
  }
  
  .btn:active {
    transform: scale(0.96) !important;
    transition: transform 0.1s ease;
  }
  
  .property-card:active,
  .feature-card:active {
    transform: scale(0.98);
    transition: transform 0.2s ease;
  }
}

.inline-form button {
    white-space: nowrap;
    flex-grow: 0;
    border: 1px solid var(--primary);
    border-radius: 25px; /* Bordas arredondadas no botão também */
}

.privacy-note {
    font-size: 0.75rem;
    color: #555;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Sections */
.section {
  padding: 8rem 0;
  border-top: 1px solid;
  border-image: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.3), transparent) 1;
  position: relative;
}

.section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.section-header {
  max-width: 700px;
  margin-bottom: 5rem;
  position: relative;
  padding-bottom: 1.5rem;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--primary));
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header.center::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-header.center .eyebrow {
  justify-content: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

/* Grid-2 para properties */
.properties .grid-3 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1000px;
  margin: 0 auto;
}

/* Features */
.feature-card {
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  box-shadow: inset 0 1px 0 rgba(212, 175, 55, 0.05);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.05) 50%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--gold);
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(212, 175, 55, 0.3),
    0 0 20px rgba(212, 175, 55, 0.15);
}

.feature-card .icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(10, 10, 10, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  border: 2px solid rgba(212, 175, 55, 0.3);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(212, 175, 55, 0.1);
}

.icon-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover .icon-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.1) 100%);
  border-color: var(--gold);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5), 0 0 15px rgba(212, 175, 55, 0.3);
}

.feature-card:hover .icon-box i {
  background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card:hover .icon-box::before {
  opacity: 1;
}

.feature-card:hover .icon-box i {
  animation: iconPulse 1s ease infinite;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Property Cards */
.property-card {
  background: linear-gradient(180deg, #000000 0%, #050505 50%, #000000 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  will-change: transform;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(212, 175, 55, 0.05);
}

.property-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.property-card:hover::before {
  left: 100%;
}

.property-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.9),
    0 0 50px rgba(212, 175, 55, 0.4),
    0 0 30px rgba(212, 175, 55, 0.2);
  background: linear-gradient(180deg, #000000 0%, #050505 50%, #000000 100%);
}

@media (prefers-reduced-motion: reduce) {
  .property-card,
  .feature-card,
  .btn,
  .reveal {
    transition: none;
  }
  
  .property-card:hover {
    transform: none;
  }
}

.card-image-container {
  height: 260px;
  width: 100%;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.card-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.property-card:hover .card-image-container img {
  transform: scale(1.08);
}

.card-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: inline-block;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: var(--transition);
  border-radius: 4px;
}

.property-card:hover .card-tag {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 0 15px var(--gold-glow);
}

.feature-list {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: auto; /* Pushes footer to bottom */
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.feature-list i {
  color: var(--primary);
  font-size: 1.1rem;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 20px var(--gold-glow);
  letter-spacing: 0.05em;
  transition: var(--transition);
  background: linear-gradient(135deg, var(--gold) 0%, #f5e6c1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.property-card:hover .price {
  transform: scale(1.08);
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
}

/* Blueprint */
.blueprint-wrapper {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(5, 5, 5, 0.95) 50%, rgba(0, 0, 0, 0.95) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid;
  border-image: linear-gradient(135deg, rgba(212, 175, 55, 0.4), rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.4)) 1;
  padding: 5rem 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 
    inset 0 0 50px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(212, 175, 55, 0.15),
    inset 0 2px 0 rgba(212, 175, 55, 0.1);
}

.blueprint-wrapper::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, rgba(212, 175, 55, 0.03) 50%, transparent 70%);
  pointer-events: none;
  animation: rotate 30s linear infinite;
}

.blueprint-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.blueprint-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-left: 2px solid;
  border-image: linear-gradient(180deg, var(--gold), var(--primary), transparent) 1;
  padding-left: 1.5rem;
  position: relative;
}

.blueprint-item::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 0;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

.blueprint-item i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 50%, var(--gold) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4)) drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,0.1);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0a0a0a 0%, #000 100%);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 2rem;
  font-family: monospace;
  font-size: 1.3rem;
  box-shadow: 
    0 0 20px rgba(0,0,0,0.5),
    0 0 30px var(--gold-glow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.step-number::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, var(--gold), var(--gold-dark), var(--gold));
  background-size: 200% 200%;
  animation: borderFlow 3s ease infinite;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
}

@keyframes borderFlow {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.step:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
    0 0 30px rgba(0,0,0,0.7),
    0 0 50px rgba(212, 175, 55, 0.6);
}

.step:hover .step-number::before {
  opacity: 1;
}

/* Why Choose / Commitment Cards */
.why-choose {
  background: 
    linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(5, 5, 5, 0.95) 50%, rgba(0, 0, 0, 0.98) 100%),
    radial-gradient(ellipse at center, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
  position: relative;
}

.why-choose::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--primary), var(--gold), transparent);
  opacity: 0.6;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.commitment-card {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(5, 5, 5, 0.8) 50%, rgba(0, 0, 0, 0.9) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2.5rem;
  border: 1px solid rgba(212, 175, 55, 0.25);
  position: relative;
  height: 100%;
  transition: var(--transition);
  overflow: hidden;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(212, 175, 55, 0.1);
}

.commitment-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.05) 50%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.commitment-card:hover::before {
  opacity: 1;
}

.commitment-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 5, 0.9) 50%, rgba(0, 0, 0, 0.95) 100%);
  box-shadow: 
    0 15px 50px rgba(0, 0, 0, 0.8),
    0 0 50px rgba(212, 175, 55, 0.3),
    0 0 30px rgba(212, 175, 55, 0.15);
}

.commitment-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.03) 100%);
  border: 2px solid;
  border-image: linear-gradient(135deg, var(--primary), var(--gold)) 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: var(--transition);
  position: relative;
}

.commitment-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
}

.commitment-icon i {
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.commitment-card:hover .commitment-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
    0 0 30px rgba(212, 175, 55, 0.2),
    0 0 30px var(--gold-glow);
}

.commitment-card:hover .commitment-icon::before {
  opacity: 0.5;
  animation: rotate 20s linear infinite;
}

.commitment-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #fff;
}

.commitment-card > p {
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.commitment-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.commitment-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #999;
  font-size: 0.9rem;
  transition: var(--transition);
}

.commitment-features i {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.commitment-card:hover .commitment-features li {
  color: #bbb;
}


/* Contact */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(5, 5, 5, 0.95) 50%, rgba(0, 0, 0, 0.95) 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 2px solid;
  border-image: linear-gradient(135deg, rgba(212, 175, 55, 0.4), rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.4)) 1;
  padding: 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 0 50px rgba(212, 175, 55, 0.2),
    inset 0 1px 0 rgba(212, 175, 55, 0.1);
}

.contact-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 50%, transparent 70%);
  pointer-events: none;
  animation: rotate 40s linear infinite;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-link-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(5, 5, 5, 0.3) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition);
  word-break: break-word;
  position: relative;
  overflow: hidden;
}

.contact-link-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--gold), var(--primary));
  transition: height 0.3s ease;
}

.contact-link-item:hover,
.contact-link-item:focus {
  background: linear-gradient(135deg, rgba(10, 10, 5, 0.6) 0%, rgba(5, 5, 0, 0.4) 100%);
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.contact-link-item:hover::before {
  height: 100%;
}

.contact-link-item i {
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

input, textarea {
  width: 100%;
  background: #0e0e0e;
  border: 1px solid #222;
  padding: 1.2rem;
  font-size: 1rem;
  color: var(--text-main);
  font-family: var(--font-main);
  outline: none;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  z-index: 0;
  border-radius: 8px; /* Bordas arredondadas */
  
  /* Melhor renderização de texto - ULTRA SMOOTH */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' 1;
  font-kerning: normal;
  letter-spacing: 0.05em;
  line-height: 1.6;
  
  /* Efeito de digitação animada */
  animation: textFadeIn 0.3s ease;
}

@keyframes textFadeIn {
  from {
    opacity: 0.7;
    filter: blur(0.5px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

/* Cursor piscando customizado quando focado */
input:focus,
textarea:focus {
  border-color: var(--primary);
  background: linear-gradient(135deg, #0e0e0e 0%, #141414 100%);
  box-shadow: 
    0 0 0 3px rgba(212, 175, 55, 0.1),
    0 0 20px rgba(212, 175, 55, 0.15),
    inset 0 1px 3px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
  caret-color: var(--primary);
  animation: inputGlow 2s ease infinite;
}

@keyframes inputGlow {
  0%, 100% {
    box-shadow: 
      0 0 0 3px rgba(212, 175, 55, 0.1),
      0 0 20px rgba(212, 175, 55, 0.15),
      inset 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 
      0 0 0 3px rgba(212, 175, 55, 0.15),
      0 0 30px rgba(212, 175, 55, 0.25),
      inset 0 1px 3px rgba(0, 0, 0, 0.3);
  }
}

input::placeholder,
textarea::placeholder {
  color: #555;
  opacity: 1;
  transition: all 0.3s ease;
  font-style: italic;
}

input:focus::placeholder,
textarea:focus::placeholder {
  color: #666;
  opacity: 0.7;
}

/* Efeito de digitação smooth - texto mais limpo e brilhante */
input:not(:placeholder-shown),
textarea:not(:placeholder-shown) {
  font-weight: 500;
  color: #ffffff;
  background: linear-gradient(135deg, #0e0e0e 0%, #121212 100%);
  text-shadow: 
    0 0 2px rgba(255, 255, 255, 0.1),
    0 0 10px rgba(212, 175, 55, 0.08);
  letter-spacing: 0.08em;
}

/* Animação ao digitar - cada caractere aparece suavemente */
input.typing,
textarea.typing {
  animation: typingEffect 0.15s ease;
}

@keyframes typingEffect {
  0% {
    opacity: 0.8;
    transform: translateY(0);
  }
  50% {
    opacity: 0.9;
    transform: translateY(-1px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

input.error, textarea.error {
  border-color: var(--accent-bright);
  background: rgba(179, 0, 0, 0.05);
  animation: shakeError 0.5s ease;
}

@keyframes shakeError {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

.form-error {
  display: block;
  color: var(--accent-bright);
  font-size: 0.75rem;
  margin-top: 0.5rem;
  min-height: 1rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.form-error:not(:empty) {
  opacity: 1;
  transform: translateY(0);
  animation: errorSlideIn 0.3s ease;
}

@keyframes errorSlideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Floating Label Animation */
.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-group label {
  position: absolute;
  left: 1.2rem;
  top: -0.7rem;
  color: #888;
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
  background: #050505;
  padding: 0 0.5rem;
  z-index: 1;
}

.form-group input:focus + label,
.form-group textarea:focus + label {
  color: var(--primary);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Animated character effect */
.form-group label span {
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  will-change: transform, color;
}

.form-group input:focus + label span,
.form-group textarea:focus + label span {
  animation: labelWave 0.6s ease forwards;
  color: var(--primary);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

@keyframes labelWave {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  25% {
    transform: translateY(-5px) scale(1.1);
  }
  50% {
    transform: translateY(2px) scale(0.95);
  }
  75% {
    transform: translateY(-2px) scale(1.05);
  }
}

/* Label animada quando input está preenchido */
.form-group input.typing + label span,
.form-group textarea.typing + label span {
  animation: labelPulse 0.3s ease;
}

@keyframes labelPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Ripple effect on input focus */
.form-group {
  overflow: visible;
}

.form-group input,
.form-group textarea {
  position: relative;
  overflow: hidden;
}

.form-group input::before,
.form-group textarea::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.form-group input:focus::before,
.form-group textarea:focus::before {
  width: 300px;
  height: 300px;
}

/* Glowing border effect */
.form-group::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent-bright), var(--primary));
  background-size: 200% 100%;
  transition: width 0.4s ease;
  z-index: 2;
  animation: borderGradient 2s linear infinite;
  border-radius: 0 0 8px 8px;
}

@keyframes borderGradient {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}

.form-group:focus-within::after {
  width: 100%;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Input typing effect */
.form-group input:not(:placeholder-shown),
.form-group textarea:not(:placeholder-shown) {
  background: linear-gradient(to right, #0e0e0e 0%, #121212 100%);
}

/* Character counter effect */
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer - Sticky and Beautiful */
.footer {
  position: relative;
  padding: 3rem 0 2rem;
  background: 
    linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(5, 5, 5, 0.95) 50%, rgba(0, 0, 0, 1) 100%),
    radial-gradient(ellipse at top, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  border-top: 2px solid;
  border-image: linear-gradient(90deg, transparent, var(--gold), var(--primary), var(--gold), transparent) 1;
  font-size: 0.85rem;
  color: #666;
  margin-top: 8rem;
  overflow: hidden;
  box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.8), 0 0 60px rgba(212, 175, 55, 0.1);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--primary), var(--gold), transparent);
  animation: footerLineGlow 3s infinite ease-in-out;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.6), 0 0 20px rgba(212, 175, 55, 0.3);
}

@keyframes footerLineGlow {
  0%, 100% {
    opacity: 0.3;
    width: 50%;
  }
  50% {
    opacity: 1;
    width: 80%;
  }
}

/* Animated dots */
.footer::before {
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Particles effect (optional subtle background) */
.footer-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.footer-particles span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--primary);
  opacity: 0;
  animation: particleFloat 10s infinite;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-100px) translateX(100px);
    opacity: 0;
  }
}

.footer::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, rgba(212, 175, 55, 0.03) 50%, transparent 70%);
  pointer-events: none;
  animation: rotate 50s linear infinite;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 968px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
}

.footer-brand {
  text-align: left;
}

.footer-brand strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  letter-spacing: 0.15em;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3)) drop-shadow(0 0 20px rgba(212, 175, 55, 0.2));
}

.footer-brand p {
  color: #888;
  font-size: 0.8rem;
  margin: 0;
  font-style: italic;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #888;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  position: relative;
  transition: var(--transition);
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(5, 5, 5, 0.3) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  text-decoration: none;
}

.footer-social-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--gold), var(--primary));
  transition: height 0.3s ease;
  border-radius: 8px 0 0 8px;
}

.footer-social-link:hover,
.footer-social-link:focus {
  background: linear-gradient(135deg, rgba(10, 10, 5, 0.6) 0%, rgba(5, 5, 0, 0.4) 100%);
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
  color: var(--gold);
}

.footer-social-link:hover::before {
  height: 100%;
}

.footer-social-link i {
  font-size: 1.3rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
  transition: var(--transition);
}

.footer-social-link:hover i {
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
  transform: scale(1.1);
}

.footer-social-link span {
  transition: var(--transition);
}

.footer-social-link:hover span {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.footer-copy {
  text-align: right;
  color: #555;
  font-size: 0.75rem;
}

/* Floating Social Icons or Additional Elements */
.footer-badge {
  position: absolute;
  bottom: 1rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #111111, #0a0a0a);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--primary);
  animation: floatBadge 3s ease-in-out infinite;
  cursor: pointer;
  transition: var(--transition);
}

.footer-badge:hover {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  transform: translateY(-5px);
}

@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Scroll to top button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.9) 100%);
  border: 2px solid rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  backdrop-filter: blur(10px);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(212, 175, 55, 0.2);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 100%);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 
    0 8px 30px rgba(212, 175, 55, 0.5),
    0 0 40px rgba(212, 175, 55, 0.4);
}

.scroll-to-top i {
  background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.5rem;
  transition: var(--transition);
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.scroll-to-top:hover i {
  color: #000;
  animation: arrowBounce 0.6s ease infinite;
}

@keyframes arrowBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Social Media Floating Buttons */
.social-floating {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
  animation: socialSlideIn 0.6s ease 0.5s both;
}

@keyframes socialSlideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.social-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.whatsapp-btn,
.instagram-btn {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.whatsapp-btn:hover,
.instagram-btn:hover {
  background: linear-gradient(135deg, #000, var(--gold));
  border-color: var(--gold);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.4);
}

.whatsapp-btn i,
.instagram-btn i {
  font-size: 1.8rem;
  color: var(--gold);
  transition: var(--transition);
}

.whatsapp-btn:hover i,
.instagram-btn:hover i {
  color: #000;
}

/* Tooltip para social buttons */
.social-btn::before {
  content: attr(aria-label);
  position: absolute;
  left: 70px;
  padding: 0.5rem 1rem;
  background: rgba(10, 15, 10, 0.95);
  color: #fff;
  font-size: 0.85rem;
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  transform: translateX(-10px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.social-btn:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.social-btn::after {
  content: '';
  position: absolute;
  left: 62px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid rgba(212, 175, 55, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-btn:hover::after {
  opacity: 1;
}

/* FAQ Section */
.faq {
  background: 
    linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(5, 5, 5, 0.95) 50%, rgba(10, 15, 10, 0.95) 100%),
    radial-gradient(ellipse at bottom, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
  position: relative;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--primary), var(--gold), transparent);
  opacity: 0.6;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(5, 5, 5, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--gold), var(--primary), var(--accent-bright));
  transition: height 0.3s ease;
  border-radius: 12px 0 0 12px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.faq-item.open::before {
  height: 100%;
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 
    0 5px 25px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(212, 175, 55, 0.2);
  transform: translateX(5px);
  background: linear-gradient(135deg, rgba(5, 5, 0, 0.7) 0%, rgba(10, 10, 5, 0.5) 50%, rgba(5, 5, 0, 0.7) 100%);
}

.faq-item.open {
  background: linear-gradient(135deg, rgba(10, 10, 5, 0.9) 0%, rgba(15, 15, 10, 0.8) 50%, rgba(10, 10, 5, 0.9) 100%);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 
    0 5px 30px rgba(0, 0, 0, 0.7), 
    0 0 50px rgba(212, 175, 55, 0.3),
    0 0 30px rgba(212, 175, 55, 0.15);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.5rem 2rem;
  padding-left: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 600;
  color: #e0e0e0;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-item.open .faq-question {
  color: #fff;
}

.faq-question span {
  flex: 1;
  padding-right: 1rem;
}

.faq-question i {
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent-bright) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0;
  transform: translateY(-10px);
}

.faq-item.open .faq-answer {
  max-height: 600px;
  opacity: 1;
  padding: 0 2rem 1.8rem 2.5rem;
  transform: translateY(0);
  animation: faqAnswerSlide 0.4s ease;
}

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

.faq-answer p {
  color: #bbb;
  line-height: 1.9;
  font-size: 0.95rem;
  margin: 0;
  padding-left: 1.2rem;
  border-left: 3px solid;
  border-image: linear-gradient(180deg, var(--gold), var(--primary)) 1;
  box-shadow: -3px 0 10px rgba(212, 175, 55, 0.2);
}

/* Responsive */
@media (max-width: 968px) {
  .hero-centered { padding: 0 1rem; padding-top: 8rem; }
  .header { padding-bottom: 3rem; }
  .section { padding: 5rem 0; }
  .section-header { margin-bottom: 3rem; }
  
  .nav {
    padding: 1rem 1.5rem;
    top: 0.5rem;
    width: calc(100% - 1rem);
    border-radius: 30px;
  }
  
  .nav.scrolled {
    padding: 0.8rem 1.3rem;
    top: 0.3rem;
  }
  
  .nav-links { display: none; }
  
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 0; 
    left: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    z-index: 998;
    animation: fadeIn 0.3s ease-in-out;
    border-radius: 0;
  }
  
  .nav-links.open a {
    font-size: 1.2rem;
    padding: 1rem 0;
  }
  
  .nav-toggle { 
    display: block; 
    position: relative; 
    z-index: 1001;
    background: transparent;
    border: none;
  }
  
  .inline-form { flex-direction: column; gap: 1rem; }
  .inline-form input, .inline-form button { width: 100%; }
  
  .grid-3,
  .properties .grid-3 {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 100%;
  }
  
  .contact-wrapper { 
    grid-template-columns: 1fr; 
    padding: 2rem; 
    gap: 3rem; 
  }
  
  .contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .blueprint-wrapper { padding: 3rem 1.5rem; }
  .blueprint-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .timeline { grid-template-columns: 1fr; gap: 0; }
  .timeline::before { left: 29px; top: 0; width: 1px; height: 100%; }
  .step { padding-left: 5rem; padding-bottom: 3rem; }
  .step-number { position: absolute; left: 0; top: 0; }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.8rem; }

  /* Modal Responsive */
  .gallery-main { height: 60vh; }
  .modal-content { padding: 1rem; }
  .close-modal { top: 15px; right: 20px; font-size: 30px; }
  .gallery-nav button { width: 50px; height: 50px; font-size: 1.2rem; }
  
  /* Social floating mobile */
  .social-floating {
    left: 1rem;
    bottom: 1rem;
    gap: 0.8rem;
  }
  
  .social-btn {
    width: 52px;
    height: 52px;
  }
  
  .social-btn i {
    font-size: 1.6rem;
  }
  
  /* FAQ mobile */
  .faq-question {
    padding: 1.2rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .faq-item.open .faq-answer {
    padding: 0 1.5rem 1.2rem 1.5rem;
  }
  
  .faq-answer p {
    font-size: 0.9rem;
  }
}

/* Mobile Optimization - Touch Friendly */
@media (max-width: 640px) {
  .container { padding: 0 1rem; }
  .section { padding: 4rem 0; }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }
  
  .hero-centered { padding-top: 7rem !important; }
  .hero-sub { font-size: 1rem; line-height: 1.6; }
  .hero-lead-capture { 
    padding: 1.5rem; 
    gap: 1.2rem;
  }
  
  .nav {
    padding: 0.8rem 1rem;
    top: 0.5rem;
    width: calc(100% - 1rem);
    border-radius: 25px;
  }
  
  .nav .container {
    padding: 0;
  }
  
  .logo {
    font-size: 1.1rem;
  }
  
  .logo i {
    font-size: 1.4rem;
  }
  
  .btn-nav {
    padding: 0.6rem 1.2rem;
    font-size: 0.7rem !important;
    border-radius: 20px;
  }
  
  .btn { 
    padding: 1.1rem 1.8rem; 
    font-size: 0.95rem;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .btn-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  input, textarea {
    padding: 1.3rem 1rem;
    font-size: 16px;
    min-height: 50px;
    border-width: 2px;
    letter-spacing: 0.05em;
    -webkit-tap-highlight-color: transparent;
  }
  
  textarea {
    min-height: 120px;
    padding: 1rem;
  }
  
  .form-group {
    margin-bottom: 1.8rem;
  }
  
  .form-group label {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
  }
  
  .inline-form {
    gap: 0.8rem;
  }
  
  .inline-form input {
    min-height: 52px;
    font-size: 16px;
  }
  
  .inline-form button {
    min-height: 52px;
    padding: 1rem 1.5rem;
    white-space: normal;
    line-height: 1.3;
  }
  
  .feature-card, .property-card { 
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease;
  }
  
  .property-card:active {
    transform: scale(0.98);
  }
  
  .card-content { padding: 1.5rem; }
  
  .card-image-container {
    height: 220px;
  }
  
  .footer {
    padding: 2.5rem 0 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-brand {
    text-align: center;
  }
  
  .footer-brand strong {
    font-size: 1.5rem;
  }
  
  .footer-copy {
    text-align: center;
    font-size: 0.7rem;
  }
  
  .footer-social {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  
  .footer-social-link {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
  
  .scroll-to-top {
    bottom: 1.5rem;
    right: 1rem;
    width: 52px;
    height: 52px;
  }
  
  .scroll-to-top i {
    font-size: 1.4rem;
  }
  
  .step {
    padding-left: 4rem;
  }
  
  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }
  
  .video-wrapper {
    margin: 2rem auto 3rem;
  }
  
  .video-border {
    padding: 2px;
  }
  
  .gallery-nav button {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    -webkit-tap-highlight-color: transparent;
  }
  
  .contact-wrapper {
    padding: 2rem 1.5rem;
    gap: 2rem;
  }
  
  .contact-link-item {
    padding: 1.2rem;
    font-size: 0.9rem;
  }
  
  .blueprint-wrapper {
    padding: 2.5rem 1.5rem;
  }
  
  .nav-links.open a {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
  }
  
  .commitment-card {
    padding: 2rem 1.5rem;
  }
  
  .commitment-icon {
    width: 60px;
    height: 60px;
  }
  
  .commitment-icon i {
    font-size: 1.8rem;
  }
  
  .commitment-card h3 {
    font-size: 1.2rem;
  }
  
  /* Hero animations para mobile - mais rápidas */
  .eyebrow-centered,
  h1,
  .hero-sub {
    animation-duration: 0.6s;
  }
  
  .video-border::before {
    animation: none;
  }
  
  .feature-card::before,
  .property-card::before {
    animation: none;
  }
  
  .form-group::after {
    height: 3px;
  }
  
  .status-msg {
    font-size: 0.85rem;
    padding: 0.8rem;
  }
  
  .form-error {
    font-size: 0.7rem;
  }
  
  .social-floating {
    left: 1rem;
    bottom: 1rem;
    gap: 0.8rem;
  }
  
  .social-btn {
    width: 52px;
    height: 52px;
  }
  
  .social-btn i {
    font-size: 1.6rem;
  }
  
  .faq-question {
    padding: 1.2rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .faq-item.open .faq-answer {
    padding: 0 1.5rem 1.2rem 1.5rem;
  }
  
  .faq-answer p {
    font-size: 0.9rem;
  }
}

/* Landscape mobile */
@media (max-width: 968px) and (orientation: landscape) {
  .hero-centered {
    padding-top: 5rem !important;
  }
  
  .nav-links.open {
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    padding: 2rem;
    gap: 1rem;
  }
  
  .nav-links.open a {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
}

/* Extra small devices */
@media (max-width: 380px) {
  h1 {
    font-size: 1.8rem;
  }
  
  .logo {
    font-size: 1rem;
  }
  
  .logo i {
    font-size: 1.3rem;
  }
  
  .btn {
    padding: 0.9rem 1.2rem;
    font-size: 0.85rem;
  }
  
  input, textarea {
    padding: 1rem 0.8rem;
  }
  
  .inline-form {
    gap: 0.6rem;
  }
  
  .hero-lead-capture {
    padding: 1.2rem;
  }
}

/* Gallery Modal */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto;
    background-color: rgba(0,0,0,0.98); 
    backdrop-filter: blur(10px);
    animation: modalFadeIn 0.3s ease-in-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-width: 1400px;
    position: relative;
    padding: 2rem;
}

.gallery-main {
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
    transition: opacity 0.3s ease;
}

.gallery-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1rem;
    color: var(--text-main);
}

.gallery-nav button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    background: rgba(0,0,0,0.5);
}

.gallery-nav button:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
}

#img-counter {
    font-family: monospace;
    font-size: 1.1rem;
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 1001;
    color: #666;
    background: transparent;
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover,
.close-modal:focus {
    color: #fff;
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Responsive */
@media (max-width: 968px) {
  .hero-centered { padding: 0 1rem; padding-top: 8rem; }
  .header { padding-bottom: 3rem; }
  .section { padding: 5rem 0; }
  .section-header { margin-bottom: 3rem; }
  
  .nav {
    padding: 1rem 1.5rem;
    top: 0.5rem;
    width: calc(100% - 1rem);
    border-radius: 30px;
  }
  
  .nav.scrolled {
    padding: 0.8rem 1.3rem;
    top: 0.3rem;
  }
  
  .nav-links { display: none; } /* Use JS toggle */
  
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 100%;
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    z-index: 999;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  .nav-links.open a {
    font-size: 1.2rem;
    padding: 1rem 0;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  .nav-toggle { display: block; position: relative; z-index: 1000; }
  
  .inline-form { flex-direction: column; gap: 1rem; }
  .inline-form input, .inline-form button { width: 100%; }
  
  .grid-3,
  .properties .grid-3 {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 100%;
  }
  
  .contact-wrapper { 
    grid-template-columns: 1fr; 
    padding: 2rem; 
    gap: 3rem; 
  }
  
  .contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .blueprint-wrapper { padding: 3rem 1.5rem; }
  .blueprint-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .timeline { grid-template-columns: 1fr; gap: 0; }
  .timeline::before { left: 29px; top: 0; width: 1px; height: 100%; }
  .step { padding-left: 5rem; padding-bottom: 3rem; }
  .step-number { position: absolute; left: 0; top: 0; }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.8rem; }

  /* Modal Responsive */
  .gallery-main { height: 60vh; }
  .modal-content { padding: 1rem; }
  .close-modal { top: 15px; right: 20px; font-size: 30px; }
  .gallery-nav button { width: 50px; height: 50px; font-size: 1.2rem; }
}

/* Mobile Optimization - Touch Friendly */
@media (max-width: 640px) {
  .container { padding: 0 1rem; }
  .section { padding: 4rem 0; }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }
  
  .hero-centered { padding-top: 6rem !important; }
  .hero-sub { font-size: 1rem; line-height: 1.6; }
  .hero-lead-capture { 
    padding: 1.5rem; 
    gap: 1.2rem;
  }
  
  .nav .container {
    padding: 0 1rem;
  }
  
  .logo {
    font-size: 1.2rem;
  }
  
  .logo i {
    font-size: 1.5rem;
  }
  
  /* Botões otimizados para toque */
  .btn { 
    padding: 1.1rem 1.8rem; 
    font-size: 0.95rem;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .btn-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  /* Inputs otimizados para mobile */
  input, textarea {
    padding: 1.3rem 1rem;
    font-size: 16px; /* Evita zoom no iOS */
    min-height: 50px;
    border-width: 2px;
    letter-spacing: 0.05em;
    -webkit-tap-highlight-color: transparent;
  }
  
  textarea {
    min-height: 120px;
    padding: 1rem;
  }
  
  .form-group {
    margin-bottom: 1.8rem;
  }
  
  .form-group label {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
  }
  
  .inline-form {
    gap: 0.8rem;
  }
  
  .inline-form input {
    min-height: 52px;
    font-size: 16px;
  }
  
  .inline-form button {
    min-height: 52px;
    padding: 1rem 1.5rem;
    white-space: normal;
    line-height: 1.3;
  }
  
  /* Cards otimizados */
  .feature-card, .property-card { 
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease; /* Mais rápido em mobile */
  }
  
  .property-card:active {
    transform: scale(0.98);
  }
  
  .card-content { padding: 1.5rem; }
  
  .card-image-container {
    height: 220px;
  }
  
  /* Footer otimizado */
  .footer {
    padding: 2.5rem 0 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-brand {
    text-align: center;
  }
  
  .footer-brand strong {
    font-size: 1.5rem;
  }
  
  .footer-copy {
    text-align: center;
    font-size: 0.7rem;
  }
  
  .footer-social {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  
  .footer-social-link {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
  
  /* Scroll to top - touch friendly */
  .scroll-to-top {
    bottom: 1.5rem;
    right: 1rem;
    width: 52px;
    height: 52px;
  }
  
  .scroll-to-top i {
    font-size: 1.4rem;
  }
  
  /* Timeline mobile */
  .step {
    padding-left: 4rem;
  }
  
  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }
  
  /* Video otimizado */
  .video-wrapper {
    margin: 2rem auto 3rem;
  }
  
  .video-border {
    padding: 2px;
  }
  
  /* Gallery modal mobile */
  .gallery-nav button {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    -webkit-tap-highlight-color: transparent;
  }
  
  /* Contact wrapper mobile */
  .contact-wrapper {
    padding: 2rem 1.5rem;
    gap: 2rem;
  }
  
  .contact-link-item {
    padding: 1.2rem;
    font-size: 0.9rem;
  }
  
  /* Blueprint mobile */
  .blueprint-wrapper {
    padding: 2.5rem 1.5rem;
  }
  
  /* Melhor touch feedback */
  .nav-links.open a {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
  }
  
  /* Commitment cards mobile */
  .commitment-card {
    padding: 2rem 1.5rem;
  }
  
  .commitment-icon {
    width: 60px;
    height: 60px;
  }
  
  .commitment-icon i {
    font-size: 1.8rem;
  }
  
  .commitment-card h3 {
    font-size: 1.2rem;
  }
  
  /* Hero animations para mobile - mais rápidas */
  .eyebrow-centered,
  h1,
  .hero-sub {
    animation-duration: 0.6s;
  }
  
  /* Reduz animações complexas em mobile para melhor performance */
  .video-border::before {
    animation: none;
  }
  
  .feature-card::before,
  .property-card::before {
    animation: none;
  }
  
  /* Otimiza formulário mobile */
  .form-group::after {
    height: 3px; /* Borda mais visível em mobile */
  }
  
  /* Status messages mobile */
  .status-msg {
    font-size: 0.85rem;
    padding: 0.8rem;
  }
  
  .form-error {
    font-size: 0.7rem;
  }
}

/* Landscape mobile */
@media (max-width: 968px) and (orientation: landscape) {
  .hero-centered {
    padding-top: 5rem !important;
  }
  
  .nav-links.open {
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    padding: 2rem;
    gap: 1rem;
  }
  
  .nav-links.open a {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
}

/* Extra small devices */
@media (max-width: 380px) {
  h1 {
    font-size: 1.8rem;
  }
  
  .logo {
    font-size: 1rem;
  }
  
  .logo i {
    font-size: 1.3rem;
  }
  
  .btn {
    padding: 0.9rem 1.2rem;
    font-size: 0.85rem;
  }
  
  input, textarea {
    padding: 1rem 0.8rem;
  }
  
  .inline-form {
    gap: 0.6rem;
  }
  
  .hero-lead-capture {
    padding: 1.2rem;
  }
  
  /* Social floating mobile */
  .social-floating {
    left: 1rem;
    bottom: 1rem;
    gap: 0.8rem;
  }
  
  .social-btn {
    width: 52px;
    height: 52px;
  }
  
  .social-btn i {
    font-size: 1.6rem;
  }
  
  /* FAQ mobile */
  .faq-question {
    padding: 1.2rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .faq-item.open .faq-answer {
    padding: 0 1.5rem 1.2rem 1.5rem;
  }
  
  .faq-answer p {
    font-size: 0.9rem;
  }
}

/* Animations */
.reveal { 
  opacity: 0; 
  transform: translateY(40px); 
  transition: all 1s ease-out; 
}

.reveal.active { 
  opacity: 1; 
  transform: translateY(0); 
}

.reveal.delay-100 { 
  transition-delay: 0.1s; 
}

.reveal.delay-200 { 
  transition-delay: 0.2s; 
}

.reveal.delay-300 { 
  transition-delay: 0.3s; 
}

/* Loading State */
.btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn.loading {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.btn.full-width {
  width: 100%;
  justify-content: center;
}

/* Status Messages */
.status-msg {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  opacity: 0;
  transform: scale(0.95);
  display: none;
}

.status-msg.success,
.status-msg.error {
  display: block;
  animation: statusFadeIn 0.3s ease forwards;
}

@keyframes statusFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.status-msg.success {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold);
}

.status-msg.error {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Focus Visible for Accessibility */
*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Skip to main content link (accessibility) */
.skip-to-main {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 1em;
  background-color: var(--bg-dark);
  color: var(--primary);
  text-decoration: none;
  border: 2px solid var(--primary);
}

.skip-to-main:focus {
  left: 50%;
  transform: translateX(-50%);
  top: 1rem;
}

/* Mobile-specific styles */
body.is-mobile {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-text-size-adjust: 100%;
}

body.is-mobile input,
body.is-mobile textarea {
  /* Garante que não há zoom no iOS */
  font-size: 16px;
}

body.is-scrolling * {
  pointer-events: none;
}

/* Efeito de "glow" ao digitar - cada letra brilha */
@keyframes charGlow {
  0% {
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.1);
  }
  50% {
    text-shadow: 
      0 0 4px rgba(255, 255, 255, 0.2),
      0 0 8px rgba(212, 175, 55, 0.1);
  }
  100% {
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.1);
  }
}

/* Input com cursor customizado brilhante */
input:focus::after,
textarea:focus::after {
  content: '';
  animation: cursorBlink 1s infinite;
}

@keyframes cursorBlink {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}

/* Capture Page Styles */
.capture-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 50% -20%, rgba(212, 175, 55, 0.05), transparent 70%),
    radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.03), transparent 60%);
  position: relative;
}

.capture-page::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.capture-container {
  width: 100%;
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.capture-header {
  text-align: center;
  margin-bottom: 3rem;
}

.capture-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold) 0%, #fff 50%, var(--gold) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  text-decoration: none;
  transition: var(--transition);
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
}

.capture-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.capture-logo i {
  background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 50%, var(--gold) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.8rem;
  transition: var(--transition);
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
}

.capture-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff 0%, var(--gold) 50%, #fff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.capture-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin: 0;
}

.capture-form {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.9) 50%, rgba(0, 0, 0, 0.95) 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 2px solid;
  border-image: linear-gradient(135deg, var(--gold), var(--primary), var(--gold)) 1;
  padding: 3rem;
  position: relative;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(212, 175, 55, 0.2),
    0 0 30px rgba(212, 175, 55, 0.1),
    inset 0 1px 0 rgba(212, 175, 55, 0.1);
  border-radius: 12px;
}

.capture-form::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.05), transparent 70%);
  border-radius: 12px;
  pointer-events: none;
}

.capture-form .privacy-note {
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .capture-page {
    padding: 1rem;
  }
  
  .capture-form {
    padding: 2rem 1.5rem;
  }
  
  .capture-header h1 {
    font-size: 1.8rem;
  }
  
  .capture-subtitle {
    font-size: 1rem;
  }
}
