/* --- Variables CSS --- */
:root {
  --blue-primary: #003764; /* Azul oscuro para textos y overlay */
  --blue-second: #00556f; /* Azul más claro para botones */
  --dark-color: #53575a; /* Gris oscuro para texto */
  --white: #fff;
  --text-dark-blue: #212a3f; /* Texto del logo y botones */
  --border-gray: #dcdcdc; /* Borde de los inputs */
  --background-light: #f4f7f6;
}

/* --- Reseteo y Estilos Globales --- */
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  font-family: "Roboto", sans-serif;
  background: #f4f7f6; /* Un fondo ligeramente gris para que el blanco resalte */
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 80%;
  margin: auto;
  max-width: 1000px;
}

h1,
h2,
h3,
p {
  margin: 0;
  padding: 0;
}

span.bold {
  color: var(--blue-second);
}

/* --- Header y Navegación --- */
#header {
  width: 100%;
  position: relative;
  padding-bottom: 70px;
}

.hidden-login-link {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 5;
  display: block;
}
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--blue-primary);
}

.menu .nav_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px; /* Un poco más de altura */
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 0 5%; /* Usar porcentaje para márgenes */
}

.menu .logo-box {
  display: flex;
  align-items: center;
}

.menu a {
  text-decoration: none;
  color: var(--blue-primary);
  cursor: pointer;
}

.menu .logo-box img {
  max-height: 50px; /* Ajustar al nuevo tamaño del nav */
}

.menu .list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.menu .list li a {
  margin: 0 15px; /* Espaciado entre links */
  transition: 0.3s ease;
  padding: 5px 7px;
  font-weight: 600; /* Un poco más de peso */
  font-size: 16px;
  color: var(--text-dark-blue);
}

.menu .list li a.activo,
.menu .list li a:hover {
  color: var(--blue-second);
}

.menu .list .contact-item {
  margin-left: 15px;
}
.menu .list li a.btn_nav_inline {
  padding: 10px 15px;
  background-color: var(--blue-second);
  color: var(--white);
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s ease;
  border: 1px solid var(--blue-second);
}

.menu .list li a.btn_nav_inline:hover {
  background-color: var(--white);
  color: var(--blue-second);
  opacity: 1;
}

.menu .list li a.btn_nav_inline .fa-phone {
  margin-right: 8px;
}

/* --- Banner / Hero Section --- */
.banner {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 600px;
  background-image: url("../img/banner_3.jpg");
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}

.banner .banner-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2; /* Por encima del overlay */
}

.info-banner h1 {
  color: var(--white);
  font-size: 55px;
  font-weight: 700;
  line-height: 1.2;
}

.info-banner p {
  color: var(--white);
  font-size: 25px;
  font-weight: 300;
  margin: 15px 0 30px 0; /* Espaciado */
}

/* Contenedor de botones del banner */
.banner-buttons {
  display: flex;
  gap: 20px; /* Espacio entre botones */
}

/* Estilos base para botones del banner */
.btn {
  text-decoration: none;
  padding: 12px 28px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s ease;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  border: 2px solid var(--white);
}

.btn-primary {
  background: var(--white);
  color: var(--text-dark-blue); /* Botón "Contactanos" */
}

.btn-primary:hover {
  background: #f0f0f0;
  border-color: #f0f0f0;
}

.btn-secondary {
  background: transparent;
  color: var(--white); /* Botón "Ver propiedades" */
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--text-dark-blue);
}

/* --- Formulario de Búsqueda --- */
.search-container {
  position: absolute;
  box-sizing: border-box;
  bottom: 0; /* Alineado al 'bottom' del #header */
  left: 50%;
  width: 80%;
  max-width: 1000px;
  z-index: 10;
  /* Truco para centrar y mover hacia arriba 50% de su propia altura */
  transform: translate(-50%, 10%);

  border-radius: 10px;
  border-bottom: 7px solid var(--blue-primary);
}

.search-form {
  background: var(--white);
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.search-form h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark-blue);
  margin-bottom: 20px;
}

.form-fields {
  display: flex;
  align-items: flex-end; /* Alinea los inputs y el botón por abajo */
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1; /* Ocupa espacio disponible */
}

.form-group label {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.form-group select {
  padding: 10px;
  border: 1px solid var(--border-gray);
  border-radius: 4px;
  font-size: 18px;
  font-family: "Saira", sans-serif;
  background-color: #fcfcfc;
  height: 44px; /* Altura fija */
}

/* Grupo para rango de precio */
.price-range {
  display: flex;
  gap: 10px;
}

.price-range select {
  width: 100%;
}

.form-group.price-range-group {
  flex: 1.5; /* Darle un poco más de espacio */
}

.btn-search {
  padding: 10px 30px;
  height: 44px; /* Misma altura que los selects */
  background: var(--blue-second);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-search:hover {
  opacity: 0.9;
}

/* --- Estilos responsive (Base) --- */

@media only screen and (max-width: 900px) {
  /* ... (Tus estilos de menú hamburguesa irían aquí) ... */

  /* Ajustar el formulario de búsqueda para móviles */
  .form-fields {
    flex-direction: column;
    align-items: stretch; /* Ocupar todo el ancho */
  }

  .form-group.price-range-group {
    flex: 1;
  }

  .btn-search {
    width: 100%; /* Botón de ancho completo */
  }

  .banner {
    height: 70vh;
  }

  .info-banner h1 {
    font-size: 36px;
  }

  .info-banner p {
    font-size: 18px;
  }

  #header {
    /* Ajustar el padding para el formulario en cascada */
    padding-bottom: 300px;
  }
}

@media only screen and (max-width: 640px) {
  .banner-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

  #header {
    padding-bottom: 320px;
  }
}

/********  MAIN PROPIEDADES **********/

/* --- Estilos del Main y Tarjetas de Propiedades --- */
main {
  padding-top: 90px; /* Espacio para que el formulario flotante no se encime */
  padding-bottom: 80px;
}

.section-title {
  font-size: 42px;
  color: var(--blue-primary);
  font-weight: 700;
  margin-bottom: 50px;
  text-align: left;
}

main .btn_container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 50px 0;
}

main .btn_container .btn_propiedades {
  text-decoration: none;
  font-size: 22px;
  padding: 9px 20px;
  text-align: center;
  margin: auto;
  background-color: var(--blue-primary);
  color: var(--white);
  border: 1px solid var(--blue-primary);
  transition: 0.3s ease-in-out;
}
main .btn_container .btn_propiedades:hover {
  color: var(--blue-primary);
  background-color: var(--white);
}

.property-grid {
  display: grid;
  /* Crea 3 columnas de 1 fracción (tamaño flexible) */
  grid-template-columns: repeat(3, 1fr);
  gap: 30px; /* Espacio entre las tarjetas */
}

.property-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.6) 0px 8px 15px;
  overflow: hidden; /* Asegura que la imagen respete los bordes redondeados */
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
  transform: translateY(-5px); /* Efecto de "levantar" la tarjeta */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* --- Contenedor de la Imagen --- */
.card-image-container {
  position: relative;
  width: 100%;
  height: 240px; /* Altura fija para todas las imágenes */
}

.property-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Recorta la imagen para que llene el espacio sin deformarse */
}

.whatsapp-icon {
  text-decoration: none;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 5;
  transition: transform 0.2s ease;
}

.whatsapp-icon i {
  font-size: 30px;
  color: var(--blue-primary);
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}

/* --- Contenido de la Tarjeta --- */
.card-content {
  padding: 20px;
  flex-grow: 1; /* Hace que esta sección crezca para rellenar el espacio */
}

.card-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 20px;
}

/* Iconos dentro de la tarjeta */
.spec-icon {
  width: 20px;
  height: 20px;
  /* Damos un color grisáceo a los íconos de especificaciones */
  filter: invert(36%) sepia(11%) saturate(306%) hue-rotate(167deg)
    brightness(94%) contrast(88%);
}

.card-location .spec-icon {
  /* El ícono de pin lo dejamos en su color original (más oscuro) */
  filter: none;
}

.card-specs {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 columnas */
  row-gap: 15px;
  column-gap: 10px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--dark-color);
}

.spec-item span {
  font-weight: 500;
}

/* --- Pie de la Tarjeta --- */
.card-footer {
  background: var(--blue-primary);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.btn-conocer {
  background: var(--white);
  color: var(--blue-primary);
  padding: 8px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--white);
  transition: 0.3s ease;
}

.btn-conocer:hover {
  background: transparent;
  color: var(--white);
}

/* --- Responsive para las Tarjetas --- */
@media only screen and (max-width: 900px) {
  .property-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columnas en tablet */
  }

  /* Ajustamos el padding del main en móvil donde el formulario ya está en cascada */
  main {
    padding-top: 320px;
  }
}

@media only screen and (max-width: 640px) {
  .property-grid {
    grid-template-columns: 1fr; /* 1 columna en móvil */
  }

  .section-title {
    font-size: 28px;
  }
}

/************ SECCION DE AGENDA *************/
section.agendar {
  width: 100%;
  min-height: 600px;
  background-image: var(--banner-bg-url);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  display: flex;
  justify-content: center;
  align-items: center;
}

.agendar .info_banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.agendar .info_banner h2 {
  color: var(--white);
  font-size: 48px;
}

.agendar .info_banner a {
  text-decoration: none;
  font-size: 24px;
  color: var(--blue-primary);
  background-color: var(--white);
  padding: 10px 20px;
  margin-top: 20px;
}

/* --- Sección Servicios --- */
.services-section {
  padding: 80px 0;
  background-color: var(--white);
}

.text-center {
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: var(--background-light);
  padding: 40px 25px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eaeaea;
  position: relative;
  z-index: 1;
  color: var(--white);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border-color: var(--blue-second);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.5);
  transition: background-color 0.3s ease;
}

.service-card .icon-box {
  width: 70px;
  height: 70px;
  background: var(--blue-second);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 30px;
}

.service-card h3 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
}

.service-card p {
  color: var(--white);
  font-size: 15px;
  line-height: 1.6;
}

/* --- Contacto --- */
.contact-section {
  padding: 80px 0;
  background-color: var(--white);
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Panel Izquierdo Oscuro */
.contact-content {
  flex: 1;
  min-width: 350px;
  background-color: var(--blue-primary);
  padding: 50px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Ajustes de color para fondo oscuro */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-circle {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-circle i {
  font-size: 20px;
  color: var(--white);
}

.info-text h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 5px;
  opacity: 0.9;
}

.info-text p,
.info-text a {
  color: #dcdcdc;
  font-size: 16px;
  text-decoration: none;
  line-height: 1.4;
}

.info-text a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Redes Sociales en panel oscuro */
.social-area {
  margin-top: 50px;
  /* border-top: 1px solid rgba(255,255,255,0.2); */
  padding-top: 20px;
  text-align: center;
}

.social-area p {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 17px;
  font-weight: 500;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  transition: 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
  text-decoration: none;
}

.social-btn.facebook {
  background-color: #3b5998;
}
.social-btn.instagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}
.social-btn.whatsapp {
  background-color: #25d366;
}

.social-btn:hover {
  transform: translateY(-5px) scale(1.05); /* Efecto de levantar y crecer */
  opacity: 1; /* Asegurar opacidad total */
  border-color: var(--white); /* Borde blanco al pasar el ratón */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Sombra más pronunciada al hover */
}
/* Mapa a la derecha */
.contact-map {
  flex: 1.5; /* El mapa ocupa un poco más */
  min-width: 350px;
  min-height: 500px;
}

@media (max-width: 800px) {
  .contact-wrapper {
    flex-direction: column-reverse; /* Mapa arriba en móvil */
  }
  .contact-map {
    min-height: 150px;
  }
}
/* --- Footer --- */
.main-footer {
  background-color: var(--blue-primary);
  color: var(--white);
  padding: 60px 0 20px 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.brand-col p {
  margin-top: 20px;
  font-size: 15px;
  color: #dcdcdc;
  line-height: 1.6;
  max-width: 300px;
}

.links-col h3 {
  font-size: 20px;
  margin-bottom: 25px;
  color: var(--white);
  position: relative;
  padding-bottom: 10px;
}

.links-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--blue-second);
}

.links-col ul {
  list-style: none;
  padding: 0;
}

.links-col ul li {
  margin-bottom: 12px;
}

.links-col ul li a {
  color: #dcdcdc;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.links-col ul li a:hover {
  color: var(--white);
  padding-left: 5px; /* Efecto de desplazamiento sutil */
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
}
/* ICONO WHATS */
.contenedor-flotante {
  position: fixed;
  bottom: 40px;
  right: 10px;
  z-index: 1000;
}

.whatsapp-flotante {
  background-color: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 35px;
  text-decoration: none;

  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.whatsapp-flotante:hover {
  transform: scale(1.1);
}

/* --- Responsive para las nuevas secciones --- */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-map,
  .contact-info {
    width: 100%;
  }

  .footer-content {
    flex-direction: column;
  }
}

/* --- ESTILOS RESPONSIVE (MEDIA QUERIES) --- */

/* --- AJUSTE INTERMEDIO (LAPTOPS / TABLETS GRANDES) --- */
@media screen and (max-width: 1350px) {
  .container {
    width: 95%;
  }

  .menu .list li a {
    margin: 0 8px;
    font-size: 14px;
  }

  .menu .list li a.btn_nav_inline {
    padding: 8px 12px;
    font-size: 14px;
  }

  .menu .logo-box img {
    height: 40px;
  }
}

/* Tablet y Móviles (Menos de 960px) */
@media screen and (max-width: 960px) {
  .container {
    width: 90%;
  }

  .hidden-login-link {
    display: none;
  }
  
  .menu-toggle {
    display: block; /* Mostrar botón hamburguesa */
  }

  .menu .list {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);

    /* --- FONDO CON FIGURAS GEOMÉTRICAS --- */
    background-color: var(--white);
    background-image: 
        /* 1. Triángulo azul grande abajo a la derecha */ linear-gradient(
        135deg,
        transparent 50%,
        rgba(0, 55, 100, 0.1) 50%
      ),
      /* 2. Círculo azul claro arriba a la derecha */
        radial-gradient(
          circle at 90% 10%,
          rgba(0, 85, 111, 0.2) 0%,
          transparent 20%
        ),
      /* 3. Cuadrado rotado (rombo) a la izquierda */
        linear-gradient(
          45deg,
          transparent 40%,
          rgba(0, 55, 100, 0.05) 40%,
          rgba(0, 55, 100, 0.05) 60%,
          transparent 60%
        );

    background-size: 100% 100%;
    background-repeat: no-repeat;

    /* Flexbox para centrar todo */
    display: flex;
    flex-direction: column;
    align-items: center; /* Alineación horizontal centrada */
    justify-content: flex-start;
    padding-top: 50px;
    padding-bottom: 50px; /* Espacio abajo para scroll */
    transition: left 0.4s ease;
    overflow-y: auto; /* Scroll si el celular es muy bajito */
    box-shadow: inset 0 10px 20px -10px rgba(0, 0, 0, 0.1);
  }
  .menu .list.active {
    left: 0; /* Mostrar menú */
  }

  .menu .list li {
    width: 100%; /* Ocupar ancho para centrar contenido */
    text-align: center;
    margin: 15px 0;
  }

  .menu .list li a {
    font-size: 22px;
    font-weight: 500;
    color: var(--blue-primary);
    margin: 0; /* Quitamos márgenes laterales viejos */
  }
  .menu .list .contact-item {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-left: 0; /* Reset del margen de escritorio */
  }
  .menu .list li a.btn_nav_inline {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 80% !important; /* Ancho relativo al celular */
    max-width: 300px; /* Tope máximo */
    padding: 15px 20px !important;
    background-color: var(--blue-primary);
    color: var(--white);
    border-radius: 50px; /* Bordes totalmente redondos */
    font-size: 18px;
    box-shadow: 0 10px 25px rgba(0, 55, 100, 0.3); /* Sombra azul */
    border: 2px solid var(--blue-primary);
    transition: transform 0.2s ease;
  }

  .menu .list li a.btn_nav_inline:active {
    transform: scale(0.95); /* Efecto de click */
  }

  .info-banner h1 {
    font-size: 38px;
  }

  .info-banner p {
    font-size: 18px;
  }

  #header {
    padding-bottom: 0;
    height: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .banner {
    height: 500px;
  }

  .search-container {
    position: relative;
    top: -40px;
    left: 0;
    transform: none;
    width: 90%;
    margin: 0 auto;
    border-bottom: none;
    margin-bottom: -40px;
  }

  .form-fields {
    flex-direction: column;
  }

  .form-group,
  .form-group.price-range-group {
    width: 100%;
  }

  .btn-search {
    width: 100%;
    margin-top: 10px;
  }

  main {
    padding-top: 60px;
  }

  .property-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columnas */
  }
}

/* Móviles Pequeños (Menos de 650px) */
@media screen and (max-width: 650px) {
  .info-banner h1 {
    font-size: 28px;
  }

  .banner-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn .btn-conocer {
    width: 40%;
  }
  .agendar .info_banner a {
    border-radius: 25px;
    padding: 10px 11px;
  }

  /* Grillas a 1 sola columna */
  .property-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Contacto */
  .contact-wrapper {
    flex-direction: column-reverse; /* Mapa arriba, info abajo */
  }

  .contact-map {
    height: 300px;
  }

  .section-title {
    font-size: 32px;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
}
