/* Nova Terra Propiedades - Estilos principales */

:root {
  --gold: #D4AF37;
  --gold-dark: #B68C2A;
  --black-deep: #0A0A0A;
  --black-graphite: #1A1A1A;
  --white-pearl: #F4F4F4;
  --text-muted: #C0C0C0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--black-deep);
  color: var(--white-pearl);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  background: var(--black-deep);
}

.section.section-alt {
  background: var(--black-graphite);
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  color: var(--gold);
}

.section-subtitle {
  max-width: 600px;
  color: var(--text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: none;
  background: var(--gold);
  color: var(--black-deep);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black-deep);
}

.btn-nav {
  padding: 0.55rem 1.3rem;
  font-size: 0.75rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,175,55,0.16);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  min-height: 85px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  overflow: hidden;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.logo-subtitle {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links a {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid transparent;
  color: var(--text-muted);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-color: var(--gold);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-dropdown > a::after {
  content: '';
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
  transition: transform 0.25s ease;
}

.nav-dropdown:hover > a::after {
  transform: rotate(-135deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--black-graphite);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 0.6rem;
  padding: 0.75rem 0 0.5rem;
  padding-top: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: translateX(-50%) translateY(8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  z-index: 100;
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1rem;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-dropdown-menu a:hover {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white-pearl);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-cta-mobile {
  display: none;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--black-deep);
}

.hero-carousel {
  position: relative;
}

.hero-slide {
  display: none;
  position: relative;
  min-height: 72vh;
}

.hero-slide.is-active {
  display: flex;
  align-items: center;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 6s ease;
}

.hero-slide.is-active .hero-slide-bg {
  animation: heroZoom 8s ease forwards;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.55) 50%, rgba(10,10,10,0.75) 100%);
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0 4rem;
  max-width: 720px;
  margin: 0;
}

.hero-slide-content .hero-title {
  font-size: 3rem;
  font-weight: 800;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.hero-slide-content .hero-text {
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}

.hero-slide-content .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: var(--white-pearl);
}

.hero-slide-content .btn-outline:hover {
  background: var(--white-pearl);
  color: var(--black-deep);
  border-color: var(--white-pearl);
}

.hero-carousel-controls {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-dots {
  display: flex;
  gap: 0.6rem;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(212,175,55,0.5);
}

.hero-dot:hover {
  border-color: var(--gold);
  background: var(--gold-dark);
}

.hero-arrows {
  display: flex;
  gap: 0.6rem;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(0,0,0,0.3);
  color: var(--white-pearl);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.hero-arrow:hover {
  background: var(--gold);
  color: var(--black-deep);
  border-color: var(--gold);
}

.hero-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-highlight {
  color: var(--gold);
}

.hero-text {
  max-width: 520px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.8rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}


.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.services {
  background: var(--black-graphite);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.8rem;
}

.card {
  border-radius: 18px;
  border: 1px solid rgba(212,175,55,0.22);
  background: radial-gradient(circle at top, rgba(255,255,255,0.02), transparent 55%),
              #111111;
  padding: 1.8rem 1.6rem;
}

.card-title {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.property-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.25);
  background: #111111;
}

.property-card-img {
  position: relative;
}

.property-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.property-card-status {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold, #d4af37);
  color: #111;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

.property-card-operation {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  color: #fff;
}

.property-card-operation.is-venta {
  background: rgba(17,17,17,0.85);
  border: 1px solid var(--gold, #d4af37);
  color: var(--gold, #d4af37);
}

.property-card-operation.is-arriendo {
  background: #2e7d32;
}

.property-body {
  padding: 1.4rem 1.5rem 1.6rem;
}

.property-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.property-price {
  font-weight: 700;
  color: var(--gold);
}

.property-location {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.property-type {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.property-title {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.property-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
}

.property-card-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(212,175,55,0.12);
}

.property-card-values div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.property-card-values dt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.property-card-values dd {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
}

.benefit-item {
  padding: 1.6rem 1.4rem;
  border-radius: 16px;
  border: 1px solid rgba(212,175,55,0.22);
  background: #101010;
  font-size: 0.95rem;
}

.benefit-icon {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  color: var(--gold);
}

.benefit-card {
  padding: 1.8rem 1.4rem;
  border-radius: 16px;
  border: 1px solid rgba(212,175,55,0.22);
  background: #101010;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.benefit-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.benefit-card .benefit-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.8rem;
}

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white-pearl);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.step-number {
  width: 2.4rem;
  height: 2.4rem;
  min-width: 2.4rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black-deep);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white-pearl);
  margin-bottom: 0.25rem;
}

.step-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.owner-section {
  background: linear-gradient(135deg, #050505, #141414);
  border-top: 1px solid rgba(212,175,55,0.3);
  border-bottom: 1px solid rgba(212,175,55,0.28);
}

.owner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.8rem;
  align-items: center;
}

.owner-badge {
  margin-bottom: 1.2rem;
}

.owner-text {
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

.owner-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.owner-highlights span::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--gold);
  margin-right: 0.5rem;
}

.owner-card {
  border-radius: 24px;
  border: 1px solid rgba(212,175,55,0.3);
  padding: 1.6rem 1.8rem;
  background: radial-gradient(circle at top, rgba(212,175,55,0.09), transparent 60%),
              #050505;
}

.owner-card h3 {
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

.owner-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.testimonials {
  background: var(--black-graphite);
}

.testimonials .container > p {
  max-width: 600px;
  color: var(--text-muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.testimonial-card {
  border-radius: 20px;
  border: 1px solid rgba(212,175,55,0.3);
  background: #101010;
  padding: 1.8rem 1.6rem;
  position: relative;
}

.quote-mark {
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.8rem;
}

.testimonial-card > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.4rem;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  overflow: hidden;
}

.testimonial-name {
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.contact-quick-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
}

.form {
  display: grid;
  gap: 1.2rem;
}

.field-group {
  display: grid;
  gap: 0.4rem;
}

label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

input,
select,
textarea {
  background: #050505;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.25);
  padding: 0.9rem 1.1rem;
  color: var(--white-pearl);
  font-size: 0.9rem;
  outline: none;
}

textarea {
  border-radius: 18px;
  min-height: 130px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #555;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-full {
  width: 100%;
  text-align: center;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.contact-form-wrapper {
  background: #0e0e0e;
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 20px;
  padding: 2.5rem;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  background: #0e0e0e;
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 14px;
  transition: border-color 0.25s ease;
}

.contact-info-card:hover {
  border-color: var(--gold);
}

.contact-info-icon {
  font-size: 1.4rem;
  min-width: 2rem;
  text-align: center;
}

.contact-info-card strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.15rem;
}

.contact-info-card span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.whatsapp-hint {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.whatsapp-hint strong {
  color: var(--gold);
}

.footer {
  border-top: 1px solid rgba(212,175,55,0.22);
  background: linear-gradient(180deg, #080808 0%, #030303 100%);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1.2rem;
}

.footer-about {
  max-width: 320px;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.25);
  background: rgba(212,175,55,0.06);
  font-size: 1rem;
  color: var(--text-muted);
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.footer-social-link:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,0.15);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-title {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
  font-size: 0.88rem;
}

.footer-links a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--white-pearl);
}

.footer-links span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-wa-btn {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.55rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.footer-wa-btn:hover {
  background: #1fb855;
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(212,175,55,0.12);
  padding-top: 1.8rem;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom-right {
  color: rgba(192,192,192,0.5);
  font-style: italic;
}

.footer-dev {
  text-align: center;
  padding: 1rem 0;
  margin-top: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(192,192,192,0.4);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-dev strong {
  color: rgba(212,175,55,0.6);
  font-weight: 600;
}

.floating-whatsapp,
.floating-top {
  position: fixed;
  right: 1.5rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp {
  bottom: 1.5rem;
  padding: 0.85rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 4px 12px rgba(0,0,0,0.3);
  animation: whatsappPulse 2.5s infinite;
}

.floating-whatsapp span {
  margin-left: 0.4rem;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 4px 12px rgba(0,0,0,0.3); }
  50% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55), 0 4px 16px rgba(0,0,0,0.3); }
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5), 0 6px 16px rgba(0,0,0,0.3);
  animation: none;
}

.floating-whatsapp-bubble {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  background: #fff;
  color: #1a1a1a;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(6px);
  animation: bubbleShow 8s infinite;
  pointer-events: none;
}

.floating-whatsapp-bubble::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 20px;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: 2px 2px 4px rgba(0,0,0,0.08);
}

@keyframes bubbleShow {
  0%, 70%, 100% { opacity: 0; transform: translateY(6px); }
  75%, 95% { opacity: 1; transform: translateY(0); }
}

.floating-top {
  bottom: 5rem;
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
  background: var(--black-graphite);
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.4);
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.floating-top:hover {
  transform: translateY(-3px);
  background: var(--gold);
  color: var(--black-deep);
  box-shadow: 0 12px 32px rgba(212,175,55,0.3);
}

.socials {
  display: flex;
  gap: 0.8rem;
}

.social-pill {
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.35);
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
}

.page-hero {
  padding: 3.5rem 0 2.5rem;
  background: radial-gradient(circle at 20% 50%, rgba(212,175,55,0.14), transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(212,175,55,0.06), transparent 50%),
              linear-gradient(180deg, #080808 0%, #050505 100%);
  border-bottom: 1px solid rgba(212,175,55,0.2);
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.page-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-intro {
  max-width: 580px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.page-layout {
  padding: 3.5rem 0 4.5rem;
}

.page-grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 2.5rem;
}

.page-section-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-section-text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.chip-row {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip {
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.3);
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.properties-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.filter-pill {
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.3);
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.filter-pill.active {
  background: var(--gold);
  color: var(--black-deep);
}

.service-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.service-kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-short-description {
  font-size: 1.05rem;
  color: var(--white-pearl);
}

.service-long-description {
  margin-top: 1rem;
  line-height: 1.75;
}

.service-intro-image {
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.24);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.34);
}

.service-intro-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.service-faq-section,
.service-contact-section {
  margin-top: 4rem;
}

.service-section-head {
  max-width: 720px;
  margin-bottom: 1.8rem;
}

.service-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-faq-item {
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 18px;
  padding: 1.5rem;
  background: #101010;
}

.service-faq-item h3 {
  margin-bottom: 0.6rem;
  color: var(--gold);
  font-size: 1rem;
}

.service-faq-item p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.service-contact-section .contact-form-wrapper {
  max-width: 860px;
}

.property-detail {
  background: radial-gradient(circle at 18% 0%, rgba(212,175,55,0.12), transparent 34%),
              linear-gradient(180deg, #050505 0%, var(--black-deep) 100%);
}

.property-detail-hero {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 430px;
  max-height: none;
  overflow: hidden;
  border-bottom: 1px solid rgba(212,175,55,0.22);
}

.property-detail-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.property-detail-hero-overlay {
  position: relative;
  z-index: 1;
  min-height: 430px;
  display: flex;
  align-items: center;
  padding: 2.5rem 0 5rem;
  background: linear-gradient(90deg, rgba(5,5,5,0.94) 0%, rgba(5,5,5,0.62) 52%, rgba(5,5,5,0.22) 100%),
              linear-gradient(180deg, rgba(5,5,5,0.1) 0%, rgba(5,5,5,0.9) 100%);
}

.property-detail-hero-content {
  width: 100%;
  max-width: 860px;
}

.property-detail-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(212,175,55,0.42);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  margin-bottom: 1rem;
  background: rgba(212,175,55,0.12);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.property-detail-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}

.property-detail-hero p {
  max-width: 680px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.property-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.property-detail-meta strong {
  color: var(--gold);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.property-detail-meta span {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.38rem 0.85rem;
  color: var(--white-pearl);
  background: rgba(255,255,255,0.06);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.property-detail-content {
  padding: 0 0 5rem;
}

.property-detail-summary {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: -2.7rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(212,175,55,0.22);
  border-radius: 22px;
  background: rgba(212,175,55,0.22);
  box-shadow: 0 22px 60px rgba(0,0,0,0.34);
}

.property-detail-summary div {
  padding: 1.35rem 1rem;
  background: rgba(18,18,18,0.96);
  text-align: center;
}

.property-detail-summary strong {
  display: block;
  color: var(--gold);
  font-size: 1.3rem;
}

.property-detail-summary span {
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.property-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.7fr);
  gap: 2rem;
  align-items: start;
}

.property-detail-main,
.property-detail-sidebar {
  display: grid;
  gap: 1.5rem;
  min-width: 0;
}

/* Evita que el carrusel ensanche la columna y quede debajo del sidebar */
.property-detail-main > *,
.property-detail-card,
.prop-carousel,
.prop-carousel-stage,
.prop-thumbs-wrap,
.prop-carousel-thumbs {
  min-width: 0;
  max-width: 100%;
}

.property-detail-main {
  overflow: hidden;
}

.property-detail-card {
  overflow: hidden;
}

.property-detail-sidebar {
  position: sticky;
  top: 110px;
  z-index: 3;
  min-width: 0;
}

.property-detail-card {
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 22px;
  padding: 1.6rem;
  background: linear-gradient(180deg, rgba(26,26,26,0.98), rgba(12,12,12,0.98));
  box-shadow: 0 18px 46px rgba(0,0,0,0.24);
}

.property-detail-card p {
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.property-detail-section-head {
  margin-bottom: 1.2rem;
}

.property-detail-section-head span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.property-detail-section-head h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.15;
}

.property-detail-gallery {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(212,175,55,0.16);
  background: #050505;
}

.property-detail-gallery-track {
  position: relative;
  min-height: 460px;
}

.property-detail-gallery-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.property-detail-gallery-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.property-detail-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 50%;
  background: rgba(10,10,10,0.68);
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.25s ease, transform 0.25s ease;
}

.property-detail-gallery-arrow:hover {
  background: var(--gold);
  color: var(--black-deep);
}

.property-detail-gallery-arrow--prev {
  left: 1rem;
}

.property-detail-gallery-arrow--next {
  right: 1rem;
}

.property-detail-gallery-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0.55rem;
}

.property-detail-gallery-dots button {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(212,175,55,0.7);
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
}

.property-detail-gallery-dots button.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--gold);
}

.property-detail-gallery-thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(150px, 1fr);
  gap: 0.75rem;
  margin-top: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) rgba(255,255,255,0.08);
}

.property-detail-gallery-thumbs button {
  position: relative;
  overflow: hidden;
  min-height: 92px;
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 14px;
  background: #080808;
  cursor: pointer;
  opacity: 0.72;
  transition: opacity 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.property-detail-gallery-thumbs button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.22);
  transition: background 0.25s ease;
}

.property-detail-gallery-thumbs button.is-active {
  border-color: var(--gold);
  opacity: 1;
  transform: translateY(-2px);
}

.property-detail-gallery-thumbs button.is-active::after,
.property-detail-gallery-thumbs button:hover::after {
  background: transparent;
}

.property-detail-gallery-thumbs img {
  width: 100%;
  height: 100%;
  min-height: 92px;
  object-fit: cover;
}

.property-detail-feature-grid,
.property-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.property-detail-feature-grid span,
.property-detail-tags span {
  border: 1px solid rgba(212,175,55,0.22);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  color: var(--text-muted);
  background: rgba(212,175,55,0.06);
  font-size: 0.86rem;
}

.property-detail-location {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 1.2rem;
}

.property-detail-map,
.property-detail-video {
  min-height: 190px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212,175,55,0.24);
  border-radius: 18px;
  background: radial-gradient(circle, rgba(212,175,55,0.16), rgba(255,255,255,0.04));
  color: var(--gold);
  text-align: center;
  font-weight: 700;
}

.property-detail-video {
  padding: 2rem;
}

.property-detail-video span {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 0.8rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black-deep);
}

.property-detail-video p {
  max-width: 520px;
  margin: 0.5rem auto 0;
}

.property-detail-contact {
  border-color: rgba(212,175,55,0.42);
}

.property-detail-contact h2 {
  margin-bottom: 0.7rem;
}

.property-detail-whatsapp,
.property-detail-side-btn {
  width: 100%;
  margin-top: 0.75rem;
}

.property-detail-side-btn {
  display: inline-flex;
  justify-content: center;
  padding: 0.82rem 1.4rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.property-detail-list {
  display: grid;
  gap: 0.85rem;
}

.property-detail-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.property-detail-list dt {
  color: var(--text-muted);
}

.property-detail-list dd {
  color: var(--white-pearl);
  font-weight: 700;
  text-align: right;
}

.property-detail-related {
  margin-top: 3rem;
}

@media (max-width: 1024px) {
  .owner-grid,
  .contact-quick-grid,
  .page-grid-2,
  .service-intro-grid,
  .property-detail-layout,
  .property-detail-location {
    grid-template-columns: minmax(0, 1fr);
  }

  .property-detail-sidebar {
    position: static;
  }

  .property-detail-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-form-wrapper {
    padding: 1.8rem 1.4rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .benefits-grid,
  .properties-grid,
  .properties-list-grid,
  .service-faq-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .property-detail-gallery-track {
    min-height: 360px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.6rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .navbar {
    flex-wrap: wrap;
    padding-top: 1.2rem;
  }

  .nav-toggle {
    display: flex;
    order: 2;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    order: 3;
    gap: 0;
    padding: 2rem 0 1rem;
    border-top: 1px solid rgba(212,175,55,0.16);
    margin-top: 1.2rem;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    width: 100%;
    font-size: 0.85rem;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    min-width: 100%;
    background: rgba(212,175,55,0.04);
    border: none;
    border-radius: 8px;
    box-shadow: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    max-height: 300px;
    padding: 0.6rem 0 0.6rem 1.2rem;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    max-height: 0;
  }

  .nav-dropdown.is-open:hover .nav-dropdown-menu {
    max-height: 300px;
  }

  .nav-dropdown-menu a {
    padding: 0.6rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-dropdown-menu a:last-child {
    border-bottom: none;
  }

  .nav-dropdown > a::after {
    transition: transform 0.25s ease;
  }

  .nav-dropdown.is-open > a::after {
    transform: rotate(-135deg);
  }

  .nav-cta-mobile {
    display: inline-flex;
    margin-top: 2.8rem;
    margin-bottom: 1rem;
    color: var(--black-deep) !important;
    border-color: var(--gold) !important;
  }

  .nav-cta {
    display: none;
  }

  .logo {
    order: 1;
    flex: 1;
  }

  .container {
    padding: 0 2rem;
  }

  .hero-slide {
    min-height: 60vh;
  }

  .hero-slide-overlay {
    background: linear-gradient(180deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.6) 40%, rgba(10,10,10,0.85) 100%);
  }

  .hero-slide-content {
    padding: 3rem 2rem 4rem;
    max-width: 100%;
  }

  .hero-slide-content .hero-title,
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.25;
  }

  .hero-kicker {
    font-size: 0.7rem;
  }

  .hero-text {
    font-size: 0.9rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.4rem;
    font-size: 0.8rem;
  }

  .hero-carousel-controls {
    bottom: 1.2rem;
  }

  .hero-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .hero-dot {
    width: 10px;
    height: 10px;
  }

  .cards-grid,
  .benefits-grid,
  .properties-grid,
  .properties-list-grid,
  .service-faq-grid,
  .property-detail-summary,
  .testimonials-grid,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .property-detail-hero {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .property-detail-hero-overlay {
    min-height: 360px;
    align-items: center;
    padding: 1.5rem 0 3.5rem;
  }

  .property-detail-hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 0.65rem;
  }

  .property-detail-hero p {
    display: none;
  }

  .property-detail-meta {
    gap: 0.45rem;
    margin-bottom: 0;
  }

  .property-detail-meta strong {
    font-size: 1.35rem;
  }

  .property-detail-status {
    margin-bottom: 0.55rem;
  }

  .property-detail-hero .breadcrumb {
    margin-bottom: 0.55rem;
  }

  .property-detail-summary {
    margin-top: -1.5rem;
  }

  .property-detail-gallery-track {
    min-height: 260px;
  }

  .property-detail-gallery-thumbs {
    grid-auto-columns: 128px;
  }

  .property-detail-card {
    padding: 1.25rem;
  }

  .service-intro-image img {
    height: 300px;
  }

  .section {
    padding: 3.5rem 0;
  }
}
