/* ============================================================
   DESTINO ABRIL — Premium Real Estate
   Paleta: Negro (#0a0a0a) + Dorado (#c9a84c, #d4af37, #f5d47b)
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Variables de Diseño --- */
:root {
  /* Colores principales */
  --gold: #d4af37;
  --gold-light: #f5d47b;
  --gold-dark: #c9a84c;
  --gold-dim: rgba(212, 175, 55, 0.15);
  --black: #0a0a0a;
  --black-light: #141414;
  --black-card: #1a1a1a;
  --black-elevated: #222222;
  --white: #f0ece2;
  --white-pure: #ffffff;
  --gray: #888888;
  --gray-light: #aaaaaa;
  --gray-dark: #555555;
  --success: #2ecc71;
  --danger: #e74c3c;
  --warning: #f39c12;
  
  /* Tipografía */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Espaciado */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --border-radius: 16px;
  --border-radius-sm: 8px;
  
  /* Efectos */
  --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.15);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.4);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  color: var(--gold-light);
}

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Heading Styles --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1.2;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-title h2 span {
  color: var(--gold);
}

.section-title p {
  font-size: 1.1rem;
  color: var(--gray-light);
  max-width: 600px;
  margin: 0 auto;
}

.gold-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin: 20px auto;
  border-radius: 2px;
}

/* ============================================================
   NAVEGACIÓN
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

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

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 50%;
  mix-blend-mode: lighten;
}

.navbar-logo span {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.navbar-links a {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 4px;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

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

.navbar-links a:hover {
  color: var(--gold);
}

.navbar-cta {
  padding: 10px 28px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black) !important;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
  color: var(--black) !important;
}

.navbar-cta::after {
  display: none !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 2px;
}

/* ============================================================
   HERO — con logo animado
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/hero-bg.png') center/cover no-repeat;
  filter: brightness(0.55);
  transform: scale(1.05);
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.1) 0%,
    rgba(10, 10, 10, 0.3) 50%,
    rgba(10, 10, 10, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 24px;
}

/* --- LOGO ANIMADO --- */
.hero-logo {
  width: 320px;
  height: 320px;
  margin: 0 auto 40px;
  position: relative;
  animation: logoEntrance 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  opacity: 0;
}

@keyframes logoEntrance {
  0% {
    opacity: 0;
    transform: scale(0.5) translateY(40px);
    filter: blur(10px);
  }
  60% {
    opacity: 1;
    transform: scale(1.05) translateY(-5px);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: circle(42% at 50% 50%); /* Tijera geométrica para ignorar el cuadrado externo del JPG */
  transform: scale(1.15); /* Acerca el centro del logo para que pierda el borde negro exterior */
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
  mix-blend-mode: lighten;
  animation: logoFloat 6s ease-in-out infinite, logoGlow 4s ease-in-out infinite alternate;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(0.5deg); }
  50% { transform: translateY(-15px) rotate(0deg); }
  75% { transform: translateY(-8px) rotate(-0.5deg); }
}

@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3))
           drop-shadow(0 0 60px rgba(212, 175, 55, 0.1));
  }
  100% {
    filter: drop-shadow(0 0 35px rgba(212, 175, 55, 0.6))
           drop-shadow(0 0 80px rgba(212, 175, 55, 0.2));
  }
}

/* Anillo dorado giratorio detrás del logo */
.hero-logo::before {
  content: '';
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--gold);
  border-right-color: rgba(212, 175, 55, 0.3);
  animation: logoRing 8s linear infinite;
}

.hero-logo::after {
  content: '';
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-bottom-color: rgba(212, 175, 55, 0.2);
  border-left-color: rgba(212, 175, 55, 0.1);
  animation: logoRing 12s linear infinite reverse;
}

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

/* Partículas doradas alrededor del logo */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  animation: particleFloat var(--duration) var(--delay) ease-in-out infinite;
  opacity: 0;
}

@keyframes particleFloat {
  0%, 100% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  20% {
    opacity: 0.8;
    transform: translateY(-20px) scale(1);
  }
  80% {
    opacity: 0.3;
    transform: translateY(-100px) scale(0.5);
  }
}

.hero-content h1 {
  font-size: 3.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  animation: fadeUp 1.2s 0.5s ease both;
}

.hero-content h1 .gold-text {
  color: var(--gold);
  position: relative;
}

.hero-content h1 .gold-text::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.hero-content .tagline {
  font-size: 1.25rem;
  color: var(--gray-light);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 1px;
  animation: fadeUp 1.2s 0.8s ease both;
}

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

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1.2s 1.1s ease both;
}

/* --- Botones --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #FFDF73 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: var(--black);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary::after, .navbar-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: none;
}

.btn-primary:hover::after, .navbar-cta:hover::after {
  animation: knifeShine 0.8s ease;
}

@keyframes knifeShine {
  0% { left: -150%; }
  100% { left: 150%; }
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(212, 175, 55, 0.4);
  color: var(--black);
}

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

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(212, 175, 55, 0.2);
}

/* ============================================================
   BUSCADOR DE PROPIEDADES
   ============================================================ */
.search-section {
  margin-top: 50px; /* Separación para que no tape los botones del hero */
  position: relative;
  z-index: 10;
  padding-bottom: 40px;
}

.search-bar {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 30px 40px;
  display: flex;
  gap: 20px;
  align-items: flex-end;
  flex-wrap: wrap;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  /* transform borrado para evitar choque con arriba */
}

.search-field {
  flex: 1;
  min-width: 180px;
}

.search-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.search-field select,
.search-field input {
  width: 100%;
  padding: 12px 16px;
  background: var(--black-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
}

.search-field select:focus,
.search-field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}

.search-bar .btn {
  min-width: 160px;
  justify-content: center;
}

/* ============================================================
   PROPIEDADES DESTACADAS
   ============================================================ */
.featured-section {
  padding: var(--section-padding);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.property-card {
  background: rgba(20, 20, 20, 0.5);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.property-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-gold);
}

.property-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.property-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.property-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.property-badge.alquiler {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: var(--white);
}

.property-card-body {
  padding: 24px;
}

.property-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.property-location {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.property-features {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--gray-light);
  font-size: 0.85rem;
}

.property-features span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.property-price {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.property-price .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-heading);
}

.property-price .price small {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 400;
}

/* ============================================================
   POR QUÉ DESTINO ABRIL
   ============================================================ */
.why-section {
  padding: var(--section-padding);
  background: transparent;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(20, 20, 20, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--border-radius);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(212, 175, 55, 0.05);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(20,20,20,1) 0%, rgba(30,30,30,1) 100%);
  border: 2px solid var(--gold-dark);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2), inset 0 0 15px rgba(212, 175, 55, 0.2);
  color: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.2rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--black);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.feature-card p {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================================
   FORMULARIO DE CONTACTO / CAPTACIÓN DE LEADS
   ============================================================ */
.contact-section {
  padding: var(--section-padding);
  position: relative;
}

.contact-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info {
  text-align: center;
}

.contact-info h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.8;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  color: var(--white);
}

.contact-details .icon {
  width: 50px;
  height: 50px;
  background: var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-form {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.contact-form .subtitle {
  color: var(--gray);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--black-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form .btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1.05rem;
  margin-top: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black-light);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 0 30px;
}

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

.footer-brand img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 16px;
  mix-blend-mode: lighten;
}

.footer-brand p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--gray-light);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  text-align: center;
  color: var(--gray-dark);
  font-size: 0.85rem;
}

/* ============================================================
   BOTÓN FLOTANTE WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================================
   ANIMACIONES DE SCROLL (Intersection Observer)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
  }

  .navbar-links.open {
    display: flex;
  }

  .navbar-links a {
    font-size: 1.3rem;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-logo {
    width: 160px;
    height: 160px;
  }

  .hero-content .tagline {
    font-size: 1rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .search-bar {
    flex-direction: column;
  }

  .search-field {
    min-width: 100%;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-logo {
    width: 130px;
    height: 130px;
    margin-bottom: 24px;
  }

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

  .contact-form {
    padding: 24px;
  }
}
