* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
}

/* ================= HEADER ================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,0,0,0.55);
  z-index: 1000;
}

.logo {
  font-size: 42px;
  font-weight: bold;
}

.logo span:first-child {
  color: #f5b82e;
}

.nav a {
  color: #fff;
  margin: 0 20px;
  font-size: 14px;
  letter-spacing: 2px;
  text-decoration: none;
}

.home-btn {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 8px 24px;
  border-radius: 20px;
}
/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
}

/* ===== NAV MOBILE ===== */
.nav-mobile {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.95);
  flex-direction: column;
}

.nav-mobile a {
  padding: 16px 40px;
  color: #fff;
  text-decoration: none;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.nav-mobile.open {
  display: flex;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}
/* ================= HERO ================= */
.property-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.property-hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}

/* ================= LOGO BG ================= */
.property-logo-bg {
  padding: 140px 40px;
  background: url("../assets/placeholders/Fondo.png") center/cover no-repeat;
  text-align: center;
}

.property-logo-bg img {
  max-width: 420px;
  width: 100%;
}

/* ================= FRASE ================= */
.property-highlight {
  padding: 80px 40px;
  text-align: center;
  font-size: 20px;
  background: linear-gradient(
    to right,
    #f5b82e,
    #ffffff 50%,
    #f5b82e
  );
}

/* ===== WRAPPER CENTRADOR (CLAVE) ===== */
.property-goal-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* ===== BLOQUE NUESTRA META (CORREGIDO Y RESPONSIVE) ===== */
.property-goal,
.property-goal * {
  box-sizing: border-box;
}

/* CONTENEDOR PRINCIPAL */
.property-goal {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 40px;
  align-items: center;

  /* bordes superior e inferior */
  border-top: 12px solid #ffffff;
  border-bottom: 12px solid #ffffff;

  padding-top: 24px;
  padding-bottom: 24px;
}

/* IMAGEN */
.property-goal-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* TEXTO */
.property-goal-content {
  max-width: 340px;
}

/* TITULO */
.property-goal-content h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #000;
}

/* #1 */
.property-goal-content .rank {
  font-size: 112px;
  font-weight: 800;
  line-height: 1;
  color: #f5b82e;
  margin-bottom: 22px;
}

/* COPY */
.property-goal-content .copy p {
  font-size: 23px;
  line-height: 1.35;
  margin-bottom: 6px;
  color: #000;
}

/* DESTACADO */
.property-goal-content .highlight {
  font-size: 30px;
  font-weight: 800;
  color: #f5b82e;
  margin: 8px 0;
}

/* ===== SOLO DESKTOP ===== */
@media (min-width: 1024px) {
  .property-goal {
    padding-left: 100px; /* desplazamiento solo en desktop */
  }
}

/* ===== MOBILE / TABLET ===== */
@media (max-width: 1023px) {
  .property-goal {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-left: 0;
  }

  .property-goal-content {
    max-width: 100%;
  }

  .property-goal-content .rank {
    font-size: 80px;
  }
}

/* ===== GESTIÓN INTEGRAL BLOQUE 5  ===== */
.property-management {
  background: #000;
  color: #fff;
  padding: 100px 0 60px;
}

.property-management-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 60px;
}

/* GRID PRINCIPAL */
.property-management-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

/* COLUMNA */
.pm-column {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* ITEM */
.pm-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.pm-item img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  margin-top: 4px;
}

.pm-item p {
  font-size: 15px;
  line-height: 1.5;
  color: #dcdcdc;
}

/* DIVISOR */
.pm-divider {
  margin-top: 80px;
  height: 2px;
  width: 100%;
  background: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .property-management-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .property-management-title {
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  .property-management {
    padding: 80px 0 40px;
  }

  .property-management-title {
    font-size: 26px;
  }

  .pm-item img {
    width: 30px;
    height: 30px;
  }
}

/* ===== BLOQUE CONOCER PROPIEDADES ===== */
.properties-cta {
  padding: 100px 0;
  text-align: center;
  background: #ffffff;
}

.properties-cta-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.3;
  margin-bottom: 40px;
  color: #000;
}

/* BOTONES */
.properties-cta-actions {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 30px;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* HOVER */
.cta-btn:hover {
  background: #f5b82e;
  color: #000;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .properties-cta {
    padding: 80px 0;
  }

  .properties-cta-title {
    font-size: 22px;
  }

  .properties-cta-actions {
    gap: 24px;
  }

  .cta-btn {
    padding: 12px 28px;
    font-size: 13px;
  }
}




/* ================= CONTACT STRIP ================= */
.property-contact-strip {
  padding: 100px 80px;
}

.strip-line {
  height: 3px;
  width: 80%;
  background: #000;
  margin-bottom: 60px;
}

.strip-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.strip-social img {
  width: 42px;
  margin-left: 20px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .property-about,
  .property-support {
    grid-template-columns: 1fr;
  }

  .property-services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .strip-content {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .property-services-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CTA RENTA / VENTA - MOBILE STACK ===== */
@media (max-width: 600px) {
  .properties-cta-actions {
    flex-direction: column;   /* 🔑 uno debajo del otro */
    align-items: center;
    gap: 16px;
  }

  .cta-btn {
    width: 220px;             /* mismo ancho */
    text-align: center;
  }
}
/* =========================
   VARIABLES
========================= */
:root {
  --gray-dark: #4b515c;
  --gray-medium: #6b6f78;
  --gray-light: #f2f2f2;
  --yellow: #f5b82e;
  --white: #ffffff;
  --black: #000000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}
/* =========================
   FOOTER
========================= */
.footer {
  background: var(--gray-dark);
  color: var(--white);
  padding: 80px 0;
}

/* GRID REAL */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

/* COLUMNA */
.footer-col h4 {
  margin-bottom: 20px;
  font-size: 16px;
}

.footer-col p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #e0e0e0;
}

/* SUBSCRIBE */
.footer-subscribe input {
  width: 100%;
  padding: 14px;
  border: none;
  font-size: 14px;
}

/* =========================
   RESPONSIVE FOOTER
========================= */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-subscribe {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-subscribe {
    grid-column: auto;
  }
}
/* ================= FOOTER ================= */
.footer {
  background: #4b515c;
  color: #fff;
  padding: 80px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer h4 {
  margin-bottom: 20px;
  font-size: 16px;
  color: #fff;
}

.footer a {
  font-size: 14px;
  margin-bottom: 8px;
  color: #e0e0e0;
  display: block;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #f5b82e;
}

.footer-subscribe input {
  width: 100%;
  padding: 14px;
  border: none;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-subscribe {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .footer-subscribe {
    grid-column: auto;
  }
}
