/* ================= RESET ================= */





* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background: #fff;
  color: #000;
  line-height: 1.7;
}

/* ================= TOP BAR ================= */
.top-bar {
  background: #fff;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
}

.top-bar-container {
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  gap: 25px;
  color: #555;
}

.top-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-info i {
  color: #F29F05;
}

.top-social {
  display: flex;
  gap: 10px;
}

.social-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
}

.social-circle.fb { background: #1877f2; }
.social-circle.ig {
  background: linear-gradient(45deg,#f09433,#dc2743,#bc1888);
}

/* ================= HEADER ================= */
header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  position: relative; /* 🔥 CLAVE */
}

.logo img {
  height: 48px;
}

/* ================= NAV DESKTOP ================= */
.nav-menu {
  margin-left: auto;
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: #1e1e1e;
  font-size: 15px;
  font-weight: 500;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #F29F05;
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: #F29F05;
}

/* ================= BOTÓN NAV ================= */
.nav-btn {
  background: #1e1e1e;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.nav-btn:hover {
  background: #F29F05;
  color: #000 !important;
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #1e1e1e;
  border-radius: 2px;
}

/* ================= HERO ================= */
.page-heading {
  height: 380px;
  background: url("../assets/images/hero-quienes-somos.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.page-heading::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.page-heading h3 {
  color: #fff;
  font-size: 48px;
  z-index: 1;
  text-transform: uppercase;
}

.page-heading h3 span {
  color: #F29F05;
}

/* ================= CONTENIDO ================= */
.single-property {
  padding: 80px 0;
}

.container {
  max-width: 1140px;
  margin: auto;
  padding: 0 20px;
}

.row {
  display: flex;
  gap: 40px;
}

.col-lg-8 { flex: 2; }
.col-lg-4 { flex: 1; }

.main-image img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 30px;
}

.main-content h4 {
  font-size: 24px;
  margin-bottom: 20px;
  position: relative;
}

.main-content h4::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #F29F05;
  position: absolute;
  left: 0;
  bottom: -8px;
}

.main-content p {
  color: #444;
  margin-bottom: 18px;
}

/* ================= FOOTER ================= */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 25px 10px;
  margin-top: 80px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    flex-direction: column;
    border-top: 1px solid #eee;
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    padding: 15px;
    border-bottom: 1px solid #eee;
  }

  .nav-btn {
    margin: 15px;
    text-align: center;
  }

  .row {
    flex-direction: column;
  }

  .page-heading h3 {
    font-size: 34px;
    text-align: center;
  }
}




/* ================= HEADER ================= */
header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  position: relative;
}

.logo img {
  height: 46px;
}

/* ================= NAV DESKTOP ================= */
.nav-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: #1e1e1e;
  font-size: 15px;
  font-weight: 500;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #F29F05;
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #F29F05;
}

/* BOTÓN RESERVAR DESKTOP */
.nav-btn {
  background: #1e1e1e;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  white-space: nowrap;
}

.nav-btn:hover {
  background: #F29F05;
  color: #000 !important;
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #1e1e1e;
  border-radius: 2px;
}

/* ================= MOBILE MENU (IGUAL A LA IMAGEN) ================= */
@media (max-width: 768px) {

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: #fff;

    flex-direction: column;
    align-items: flex-start;
    padding: 25px 22px;

    gap: 0;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    z-index: 1000;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .nav-menu a {
    width: 100%;
    font-size: 17px;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
    color: #222;
  }

  .nav-menu a.active {
    color: #F29F05;
    font-weight: 600;
  }

  /* BOTÓN RESERVAR MOBILE (ABAJO GRANDE) */
  .nav-btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 18px;
    border-radius: 999px;
    background: #F29F05;
    color: #000 !important;
    font-size: 18px;
    font-weight: 600;
    border-bottom: none;
  }
}





/* ================= TEXTO CORPORATIVO ================= */

.main-content p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--gris-texto);
  margin-bottom: 20px;
}

.main-content strong {
  color: var(--amarillo);
  font-weight: 600;
}

/* TÍTULO SECCIÓN */
.main-content h4 {
  color: var(--negro);
  font-weight: 700;
}

.main-content h4::after {
  background: var(--amarillo);
}



.category {
  background: rgba(242,159,5,0.15);
  color: var(--amarillo);
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
}




.info-table {
  background: linear-gradient(180deg, #ffffff, #fafafa);
  border-left: 4px solid var(--amarillo);
}

.info-table p {
  color: #333;
  line-height: 1.8;
}


/* ================= PAGE HEADING ================= */

.page-heading {
  position: relative;
  height: 380px;
  background: url("../assets/images/hero-quienes-somos.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-heading::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.page-heading-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

/* TÍTULO */
.page-heading h3 {
  font-size: clamp(28px, 5vw, 48px); /* 🔥 responsive real */
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.2;
}

/* MARCA */
.page-heading h3 span {
  display: block;
  margin-top: 8px;
  color: #F29F05;
  font-weight: 800;
  letter-spacing: 1px;
}





