* {
  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
  );
}

/* ================= PROPERTY ABOUT (FINAL) ================= */
.property-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 160px 100px;
}

/* IZQUIERDA */
.property-about-left {
  display: flex;
  flex-direction: column;
}

.property-about-left img {
  width: 100%;
  display: block;
}

.property-about-left p {
  margin-top: 40px;
  font-size: 16px;
  line-height: 1.9;
}

/* DERECHA (BACKGROUND, NO IMG) */
.property-about-right {
  background-image: url("../assets/placeholders/investment2@4x.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* GRÁFICO DECORATIVO */
.property-about-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/placeholders/graph-bg.png") right center no-repeat;
  background-size: contain;
  opacity: 0.15;
  pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .property-about {
    grid-template-columns: 1fr;
    padding: 100px 40px;
  }

  .property-about-right {
    min-height: 300px;
    background-size: contain;
  }
}





/* ================= SERVICES ================= */
.property-services {
  padding: 140px 80px;
  text-align: center;
}

.property-services h2 {
  font-size: 42px;
  margin-bottom: 100px; /* más aire como en el diseño */
}

/* GRID */
.property-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 80px;
  align-items: flex-start;
}

/* ITEM */
.property-service-item {
  max-width: 260px;
  margin: 0 auto;
}

.property-service-item img {
  width: 64px;
  margin-bottom: 30px;
}

/* TITULO (el <p> que ya tienes) */
.property-service-item p {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

/* TEXTO DESCRIPTIVO (segundo <p> si lo agregas luego) */
.property-service-item p + p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #555;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .property-services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

@media (max-width: 600px) {
  .property-services-grid {
    grid-template-columns: 1fr;
  }
}


/* ================= SUPPORT ================= */
.property-support {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 160px 100px;
}

.property-support-image img {
  width: 100%;
}

.property-support-item {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.property-support-item img {
  width: 48px;
}

/* ================= 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;
  }
}
/* =========================
   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;
  }
}
