/* ═══════════════════════════════════════════════
   Plaza del Parque – Inmobiliaria Hidrocalida
   Stylesheet
   ═══════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #F5F0E8;
  --gold: #C9A84C;
  --gold-lt: #E5C97E;
  --charcoal: #1C1C1E;
  --dark: #111111;
  --mid: #2E2E2E;
  --white: #FFFFFF;
  --text-lt: #F0EAD6;
  --text-md: #7A7060;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 2rem;
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  transition: background 0.3s;
}

nav.scrolled {
  background: rgba(10, 10, 10, 0.97);
}

.nav-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-img {
  height: 100px;
  width: 100px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.18));
  transition: filter 0.2s;
}

.nav-logo-img:hover {
  filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.45));
}

/* ── NAV LINKS ── */
.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.45rem 0.85rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  display: block;
}

.nav-links li a:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-cta {
  background: var(--gold);
  color: var(--dark);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.55rem 1.25rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background .2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold-lt);
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 36px;
  height: 36px;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 6rem;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17, 17, 17, 0.55) 0%, rgba(17, 17, 17, 0.80) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.hero-content h1 span {
  color: var(--gold);
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-lt);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all .2s;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

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

.btn-dark {
  background: var(--dark);
  color: var(--gold);
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-dark:hover {
  background: var(--mid);
  transform: translateY(-2px);
}

/* ── HERO TRUST BAR ── */
.hero-trust {
  margin-top: 3rem;
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
}

.trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
}

.trust-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── DIVIDERS ── */
.divider svg {
  display: block;
  width: 100%;
}

/* ── PROMO ── */
#promo {
  background: var(--gold);
  padding: 3.5rem 2rem;
  text-align: center;
}

#promo h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--dark);
  margin-bottom: 0.75rem;
}

#promo p {
  color: rgba(28, 28, 30, 0.75);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  max-width: 580px;
  margin-inline: auto;
}

/* ── SECTION UTILITIES ── */
.section-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.section-sub {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}

/* ── SERVICES ── */
#servicios {
  background: var(--charcoal);
  padding: 6rem 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 8px;
  padding: 2rem;
  transition: all .25s;
}

.service-card:hover {
  background: rgba(201, 168, 76, 0.07);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.service-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ── WHO WE ARE ── */
#quienes-somos {
  background: var(--cream);
  padding: 6rem 2rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.img-placeholder {
  aspect-ratio: 4/3;
  border-radius: 8px;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(201, 168, 76, 0.3);
  color: rgba(201, 168, 76, 0.45);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
}

.quienes-img {
  aspect-ratio: 4/3;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.text-col .section-label {
  text-align: left;
}

.text-col .section-title {
  text-align: left;
  color: var(--charcoal);
}

.text-col p {
  color: var(--text-md);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.98rem;
}

.highlight-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.highlight-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.65rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

/* ── PROBLEMS ── */
#problemas {
  background: var(--dark);
  padding: 6rem 2rem;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.prob-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

.prob-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.prob-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  line-height: 1.5;
}

.prob-list li::before {
  content: '✕';
  color: rgba(201, 168, 76, 0.5);
  font-size: 0.75rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* ── BENEFITS ── */
#beneficios {
  background: var(--cream);
  padding: 6rem 2rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.benefit-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  border-top: 3px solid var(--gold);
  transition: transform .2s, box-shadow .2s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.88rem;
  color: var(--text-md);
  line-height: 1.6;
}

/* ── VALUE PROP ── */
#propuesta {
  background: var(--charcoal);
  padding: 6rem 2rem;
  text-align: center;
}

.propuesta-inner {
  max-width: 780px;
  margin: 0 auto;
}

#propuesta blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--white);
  line-height: 1.5;
  font-style: italic;
  position: relative;
  padding: 0 2rem;
}

#propuesta blockquote::before {
  content: '"';
  color: var(--gold);
  font-size: 5rem;
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

#propuesta .sub {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  margin-top: 2rem;
}

/* ── HOW WE DO IT ── */
#como-lo-hacemos {
  background: var(--cream);
  padding: 6rem 2rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.step-item {
  text-align: center;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.step-item p {
  font-size: 0.88rem;
  color: var(--text-md);
  line-height: 1.6;
}

/* ── PROPERTIES ── */
#propiedades {
  background: var(--dark);
  padding: 6rem 2rem;
}

.prop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.prop-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 8px;
  overflow: hidden;
  transition: all .25s;
}

.prop-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.prop-img-placeholder {
  height: 220px;
  background: linear-gradient(135deg, #2a2a2a, #1e1e1e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201, 168, 76, 0.35);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── PROPERTY CAROUSEL ── */
.prop-carousel {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel-track img {
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(17, 17, 17, 0.65);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  font-size: 1.8rem;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(4px);
  z-index: 2;
  padding: 0;
}

.carousel-btn:hover {
  background: rgba(201, 168, 76, 0.25);
  border-color: var(--gold);
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.25);
}


.prop-body {
  padding: 1.5rem;
}

.prop-tag {
  display: inline-block;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

.prop-body h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.prop-body p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.prop-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
}

.prop-price span {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
  display: block;
}

/* ── FEATURED PROPERTY (Bodega) ── */
.prop-card--featured {
  position: relative;
  border: 1px solid var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.prop-card--featured:hover {
  background: rgba(201, 168, 76, 0.09);
  transform: translateY(-4px);
}

.prop-featured-label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  z-index: 3;
}


#testimonios {
  background: var(--cream);
  padding: 6rem 2rem;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.testi-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  border-left: 3px solid var(--gold);
}

.testi-card p {
  color: var(--text-md);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testi-author {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--charcoal);
}

.testi-role {
  font-size: 0.8rem;
  color: var(--gold);
}

/* ── FINAL CTA ── */
#cta-final {
  background: var(--dark);
  padding: 6rem 2rem;
  text-align: center;
}

#cta-final h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}

#cta-final h2 span {
  color: var(--gold);
}

#cta-final p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  max-width: 540px;
  margin-inline: auto;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-urgency {
  display: inline-block;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

/* ── FOOTER ── */
footer {
  background: #0A0A0A;
  padding: 2.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

footer .footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.footer-logo-img {
  height: 72px;
  width: 72px;
  object-fit: contain;
  opacity: 0.9;
  filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.2));
}

footer .footer-logo span {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1rem;
}

footer address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

footer .footer-contact a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.88rem;
}

footer .footer-info {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.78rem;
  margin-top: 1.5rem;
  line-height: 1.7;
}

footer .footer-info a {
  color: rgba(201, 168, 76, 0.5);
  text-decoration: none;
}

@media (max-width: 900px) {

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

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  /* Mobile nav menu */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    padding: 1rem 0;
    gap: 0;
  }

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

  .nav-links li a {
    padding: 0.9rem 2rem;
    border-radius: 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .nav-hamburger {
    display: flex;
  }
}

@media (max-width: 640px) {

  .services-grid,
  .benefits-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  nav {
    padding: 0.5rem 1.25rem;
  }

  .nav-logo-img {
    height: 52px;
    width: 52px;
  }

  .nav-cta {
    font-size: 0.78rem;
    padding: 0.45rem 0.9rem;
  }

  .hero-trust {
    gap: 1.5rem;
  }
}