@media (max-width: 600px) {
  #property-root h1 {
    font-size: 1.25rem;
    line-height: 1.3;
    margin-top: 0.7rem;
    margin-bottom: 0.2rem;
  }
}
/* Modal de imagen ampliada */
.image-modal-bg {
  position: fixed;
  z-index: 9999;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .2s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.image-modal-content {
  background: transparent;
  border-radius: 12px;
  max-width: 96vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.image-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}
.image-modal-close:hover {
  background: #2ecc71;
}
.image-modal-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 70vh;
  overflow: hidden;
  margin-bottom: 1.2rem;
}
.image-modal-img {
  max-width: 90vw;
  max-height: 70vh;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  background: #fff;
  transition: transform 0.2s;
  cursor: zoom-in;
}
.image-modal-thumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}
.image-modal-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border 0.18s;
  background: #fff;
  flex-shrink: 0;
}
.image-modal-thumb.active {
  border: 2px solid #2ecc71;
  box-shadow: 0 2px 8px rgba(44,204,113,0.12);
}
@media (max-width: 600px) {
  .image-modal-img {
    max-width: 98vw;
    max-height: 48vh;
  }
  .image-modal-thumbs {
    gap: 6px;
  }
  .image-modal-thumb {
    width: 38px;
    height: 38px;
  }
}
/* Carrusel de propiedad detalle */
.property-carousel {
  margin-bottom: 1.5rem;
  background: #fff;
  box-shadow: 0 4px 24px 0 rgba(44,204,113,0.08), 0 1.5px 8px 0 rgba(0,0,0,0.06);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.property-carousel #main-image {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: box-shadow 0.2s;
}
.carousel-thumbnails {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-start;
  margin: 1rem 0 0.5rem 0;
  min-width: max-content;
  padding: 8px 0;
  flex-direction: row;
  box-sizing: border-box;
}

.carousel-thumbnails-scroll {
  width: 100%;
  max-width: 816px;
  margin: 0 auto 1.5rem auto;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #ccc #f9f9f9;
  display: block;
}
.carousel-thumbnails img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.18s;
  flex-shrink: 0;
}
.carousel-thumbnails img[style*="2px solid #2ecc71"] {
  box-shadow: 0 2px 8px rgba(44,204,113,0.12);
}
.carousel-btn {
  font-size: 1.5rem;
  background: rgba(0,0,0,.45);
  color: #fff;
  border: 0;
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  transition: background 0.18s;
}
.carousel-btn:hover {
  background: #2ecc71;
}
@media (max-width: 900px) {
  .property-carousel #main-image {
    height: calc(55vw);
    border-radius: 0px;
  }
  .property-carousel {
    border-radius: 0px;
  }
  .carousel-thumbnails-scroll {
    max-width: 100vw;
  }
  .carousel-thumbnails {
    gap: 8px;
  }
  .carousel-thumbnails img {
    width: 44px;
    height: 44px;
  }
}
@media (min-width: 901px) {
  .property-carousel {
    width: 816px;
    height: 548px;
    max-width: 816px;
    max-height: 548px;
    min-width: 816px;
    min-height: 548px;
    margin: 0 auto 0.5rem auto;
    background: #fff;
    box-shadow: 0 4px 24px 0 rgba(44,204,113,0.08), 0 1.5px 8px 0 rgba(0,0,0,0.06);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .property-carousel #main-image {
    width: 100% !important;
    height: 100% !important;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: none;
    margin: 0;
    display: block;
  }
  .property-carousel .carousel-btn {
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    z-index: 2;
  }
  .property-carousel .carousel-btn.prev {
    left: 18px;
  }
  .property-carousel .carousel-btn.next {
    right: 18px;
  }
  .property-carousel > div[style*="position: absolute"] {
    z-index: 3;
  }
  .property-carousel > div {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
  }
  .carousel-thumbnails {
    width: 816px;
    max-width: 816px;
    margin: 0 auto 1.5rem auto;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
  }
}
/* --- ESTILOS MODERNOS Y RESPONSIVOS YÁVATA INMOBILIARIA --- */
:root{ --nav-height:64px; }
*{ box-sizing: border-box; }
body{ margin:0; padding-top: var(--nav-height); font-family: "Inter", system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; color:#222; font-weight:400; font-style:normal; font-optical-sizing: auto; background:#f8fafc; }

/* NAVBAR */
.site-nav{ position:fixed; top:0; left:0; right:0; width:100%; height:var(--nav-height); background:#000; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border-bottom:1px solid rgba(255,255,255,0.04); z-index:1000; display:flex; align-items:center; color:#2ecc71; }
.site-nav .nav-inner{ max-width:1100px; margin:0 auto; width:100%; display:flex; align-items:center; justify-content:center; gap:2rem; padding:0 1rem; }
.site-nav .logo{ display:flex; align-items:center; padding:0.5rem 1.1rem 0.5rem 0.2rem; }
.site-nav .logo img{ width:64px; height:auto; display:block; transition:width 0.2s; }
.nav-links{ display:flex; gap:1.5rem; list-style:none; margin:0; padding:0; align-items:center; }
.nav-links a{ text-decoration:none; color:white; font-weight:600; padding:6px 8px; }
.nav-links a:hover{ color: #27ae60; border-radius:6px; }
.nav-toggle{ display:none; background:transparent; border:0; padding:6px; cursor:pointer; }
.hamburger{ display:block; width:22px; height:2px; background:#2ecc71; position:relative; transition:all .25s ease-in-out; }
.hamburger::before, .hamburger::after{ content:''; position:absolute; left:0; width:22px; height:2px; background:#2ecc71; transition:all .25s ease-in-out; }
.hamburger::before{ top:-7px; } .hamburger::after{ top:7px; }
.nav-toggle[aria-expanded='true'] .hamburger{ background:transparent; }
.nav-toggle[aria-expanded='true'] .hamburger::before{ transform: rotate(45deg) translate(5px,5px); top:0; }
.nav-toggle[aria-expanded='true'] .hamburger::after{ transform: rotate(-45deg) translate(5px,-5px); top:0; }

/* HERO HOME */
.home_container{ position:relative; min-height:70vh; background-image:url('img/resource/home 4.jpg'); background-size:cover; background-position:center; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:3rem 0; color:#fff;  }
.home_container::before{ content:''; position:absolute; inset:0; background:rgba(0,0,0,0.45); z-index:0; }
.home_container > *{ position:relative; z-index:1; max-width:1100px; }
.home_container h1{ font-size:clamp(2rem,6vw,4rem); margin:0 0 .5rem; font-weight:700; }
.home_container p{ font-size:clamp(1rem,2.2vw,1.25rem); margin:0; opacity:.95; }

/* MODERN SEARCH BAR */
#bar-propiedades {
  z-index: 100;
  margin: auto auto;
}
.modern-search-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f8fafc;
  border-radius: 14px;
  border: 1.5px solid #e0e6ed;
  box-shadow: 0 4px 24px 0 rgba(44,204,113,0.08), 0 1.5px 8px 0 rgba(0,0,0,0.06);
  padding: 0.7rem 1.2rem;
  margin-top: 2rem;
  position: relative;
  width: 100%;
  max-width: 520px;
  transition: box-shadow 0.18s, border 0.18s;
}
.modern-search-bar:focus-within {
  box-shadow: 0 6px 32px 0 rgba(44,204,113,0.13), 0 2px 12px 0 rgba(0,0,0,0.09);
  border-color: #2ecc71;
}
.modern-search-bar input[type="text"] {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1.1rem;
  padding: 0.5rem 0.75rem;
  outline: none;
  color: #222;
}
.modern-search-bar .icon-btn {
  background: none;
  border: none;
  padding: 0.35rem;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.18s;
}
.modern-search-bar .icon-btn:hover {
  background: #e8f8f5;
}
.modern-search-bar svg {
  display: block;
}
.filter-menu {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  border-radius: 14px;
  border: 1.5px solid #e0e6ed;
  padding: 1rem;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.18s, border 0.18s;
}
 .properties-page h1 {
    text-align: center;
    margin-top: 1.2rem;
    margin-bottom: 0.7rem;
  }


.filter-menu.open {
  display: flex;
  box-shadow: 0 6px 32px 0 rgba(44,204,113,0.13), 0 2px 12px 0 rgba(0,0,0,0.09);
  border-color: #2ecc71;
  animation: fadeIn .5s;
}
.filter-menu select, .filter-menu input[type="text"] {
  width: 100%;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  font-size: 1rem;
}
.filter-menu .price-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.filter-menu .price-group span {
  background: #f0f0f0;
  padding: 0.5rem 0.7rem;
  border-radius: 6px;
  color: #2ecc71;
  font-weight: 600;
}

/* PROPERTIES GRID Y CARDS */
.property_container{ display:grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap:1.25rem; align-items:start; padding:1.5rem; margin: 0% 10%; }
@media (min-width: 769px) and (max-width: 1024px){ .property_container{ grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1025px){ .property_container{ grid-template-columns: repeat(4, 1fr); } }
.property_card{ display:block; background:#fff; color:#222; border-radius:8px; overflow:hidden; text-decoration:none; box-shadow:0 6px 18px rgba(0,0,0,0.08); transition:transform .18s ease, box-shadow .18s ease; }
.property_card:hover{ transform:translateY(-6px); box-shadow:0 12px 30px rgba(0,0,0,0.12); }
.property_card .card_img{ position:relative; width:100%; height:220px; overflow:hidden; }
.property_card .card_img img{ width:100%; height:100%; object-fit:cover; display:block; }
.property_card .price{ position:absolute; top:10px; right:10px; background:rgba(0,0,0,0.6); color:#2ecc71; padding:6px 10px; border-radius:6px; font-weight:700; }
.property_card .card_title{ margin:0.75rem 1rem 0.25rem; font-size:1.05rem; }
.property_card .card_desc{ margin:0 1rem 1rem; color:#555; font-size:.95rem; }

/* Ver más button */
.ver-mas-btn {
  display: block;
  margin: 0 auto 3rem auto;
  padding: .75rem 1.5rem;
  background: #2ecc71;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background .2s;
  text-align: center;
  max-width: 320px;
  box-shadow: 0 2px 12px rgba(44,204,113,0.08);
}
.ver-mas-btn:hover {
  background: #27ae60;
}

/* SOBRE NOSOTROS */
.about-page {
  background: #f8fafc;
  min-height: 100vh;
}
.about-hero {
  background: linear-gradient(90deg, #2ecc71 0%, #27ae60 100%);
  color: #fff;
  text-align: center;
  padding: 3.5rem 1rem 2.2rem 1rem;
}
.about-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.about-desc {
  font-size: 1.18rem;
  opacity: 0.97;
  margin: 0 auto;
  max-width: 600px;
}
.about-cards-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2.5rem 1rem 3rem 1rem;
}
.about-cards {
  display: flex;
  gap: 2.5rem;
  max-width: 900px;
  width: 100%;
  justify-content: center;
}
.about-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px 0 rgba(44,204,113,0.08), 0 1.5px 8px 0 rgba(0,0,0,0.06);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 370px;
  text-align: center;
}
.about-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 12px rgba(44,204,113,0.10);
}
.about-card h2 {
  font-size: 1.18rem;
  margin: 0.5rem 0 0.2rem 0;
  color: #222;
}
.about-card p {
  color: #555;
  font-size: 1.02rem;
  margin: 0;
}
@media (max-width: 900px) {
  .about-cards {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  .about-cards-section {
    padding: 1.5rem 0.5rem 2rem 0.5rem;
  }
}

/* CONTACTO */
.modern-contact {
  display: flex;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 2.5rem auto 2.5rem auto;
  padding: 0 1rem;
  align-items: flex-start;
}
.modern-contact-info {
  flex: 1 1 320px;
  max-width: 340px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px 0 rgba(44,204,113,0.08), 0 1.5px 8px 0 rgba(0,0,0,0.06);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-card h2 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.contact-phone a {
  color: #2ecc71;
  font-size: 1.18rem;
  font-weight: 600;
  text-decoration: none;
}
.contact-email a {
  color: #222;
  text-decoration: underline;
  font-size: 1.05rem;
}
.contact-extra {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-extra-block h3 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.contact-extra-block p {
  color: #555;
  font-size: 0.98rem;
  margin: 0;
}
.modern-contact-form {
  flex: 2 1 520px;
  min-width: 0;
}
.form-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px 0 rgba(44,204,113,0.08), 0 1.5px 8px 0 rgba(0,0,0,0.06);
  padding: 2rem 2rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-card h2 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: #2ecc71;
}
.form-card iframe {
  border: none;
  min-height: 600px;
  width: 100%;
  background: #fff;
}
@media (max-width: 900px) {
  .modern-contact {
    flex-direction: column;
    gap: 2rem;
    margin: 1.5rem 0;
  }
  .modern-contact-info, .modern-contact-form {
    max-width: 100%;
    width: 100%;
  }
  .form-card {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
}
.contact-hero {
  background: linear-gradient(90deg, #2ecc71 0%, #27ae60 100%);
  color: #fff;
  text-align: center;
  padding: 3.5rem 1rem 2.2rem 1rem;
}
.contact-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.contact-hero p {
  font-size: 1.15rem;
  opacity: 0.97;
  margin: 0 auto;
  max-width: 520px;
}

/* FOOTER */
.site-footer{ background:#0b0b0b; color:#fff; padding:2rem 1rem; }
.site-footer .footer-inner{ max-width:1100px; margin:0 auto; display:flex; justify-content:space-between; gap:1rem; align-items:flex-start; }
.footer-info{ display:flex; flex-direction:column; gap:.5rem; }
.footer-logo{ width:64px; height:auto; }
.footer-info h3{ margin:0; font-size:1.1rem; }
.footer-info p{ margin:0; color:#cfcfcf; font-size:.95rem; }
.footer-contact h4{ margin:0 0 .5rem 0; }
.footer-contact p{ margin:0 0 .75rem 0; }
.footer-contact a{ color:#2ecc71; text-decoration:none; }
.footer-social{ display:flex; gap:.6rem; }
.social-link{ display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; background:rgba(255,255,255,0.05); border-radius:8px; }
.social-link svg{ display:block; }
@media (max-width: 1024px){ .property_card .card_img{ height:200px; } }
@media (max-width: 768px){
  .nav-toggle{ display:block; }
  .site-nav .nav-inner{ justify-content:center; }
  .site-nav .logo{ margin-right:.75rem; }
  .nav-links{ display:none !important; }
  .nav-links.open{ display:flex !important; flex-direction:column; gap:2rem; align-items:center; position:absolute; top:var(--nav-height); left:0; right:0; background:black; animation: fadeIn .8s; min-height:100vh; padding:.75rem 0;padding-top: 10rem; box-shadow:0 8px 20px rgba(0,0,0,0.2); }
  .nav-links a{ color:white; }
  .site-footer .footer-inner{ flex-direction:column; align-items:center; text-align:center; justify-content:center; }
  .footer-info, .footer-contact {
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    display: flex;
    flex-direction: column;
  }
  .footer-social {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;
    gap: .6rem;
    margin-top: 0.5rem;
  }
  .property_container{ padding:.75rem; gap:.75rem; }
}
@media (max-width: 480px){
  .home_container{ min-height:40vh; padding:2rem 0; }
  .home_container::before{ background:rgba(0,0,0,0.55); }
  .property_card .card_img{ height:140px; }
}
/*# sourceMappingURL=style.css.map */