/* Hero con imagen de fondo y superposición */
.hero-section {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../img/jpg/hero.jpg') center/cover no-repeat;
  background-attachment: scroll, scroll;
  height: 92vh;
  padding-top: 80px;
  background-attachment: fixed;
}

.hero-section h1,
.hero-section p {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.visible {
  opacity: 1 !important;
  transform: none !important;
}

.delay-1 {
  transition-delay: 0.3s;
}

.delay-2 {
  transition-delay: 0.6s;
}

/* Cards */
.card {
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Botón principal */
.btn-primary {
  background-color: #1a73e8;
  border-color: #1a73e8;
}

.btn-primary:hover {
  background-color: #155fc6;
  border-color: #155fc6;
}


.hero-contact {
  width: 100%;
  max-width: 600px;
  padding: 50px 50px;
  background-color: #173363;
  margin: auto;
}

.hero-contact #mensaje {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}

.hero-contact h1 {
  text-align: left;
  margin-bottom: 25px;
}

.hero-contact #contact-form input,
.hero-contact #contact-form textarea {
  border-radius: 0px;
}

.container-hero-info {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-info h1 {
  font-size: 3.5rem;
}

.hero-info {
  text-align: left;
}

.splash-screen {
  position: fixed;
  inset: 0;
  background-color: #e1dad4;
  /* Color base del fondo del logo */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease;
  height: 100vh;
}

.splash-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.hidden {
  display: none;
}


.pantalla-presentacion {
  height: 100vh;
  background-color: #f9f3ec;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: opacity 1s ease;
  z-index: 1000;
}

.pantalla-presentacion.fade-out {
  opacity: 0 !important;
  pointer-events: none !important;
}

.logo-presentación .logo {
  width: 100%;
  max-width: 700px;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.logo-presentación {
  padding: 50px;
}

.contenido-presentacion {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
}

.flecha-abajo {
  font-size: 2rem;
  margin-top: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  animation: bounce 2s infinite;
}

#flecha img {
  width: 100%;
  max-width: 100px;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

.fade-out {
  opacity: 0;
  pointer-events: none;
}


.navbar.navbar-expand-lg.navbar-dark.bg-dark {
  background-color: #896e54 !important;
}

#navbar-menu.scrolled {
  background: #3e3e1f !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

#navbar-menu {
  -webkit-transition: background 0.4s ease,
    top 0.4s ease,
    left 0.4s ease,
    width 0.4s ease,
    border-radius 0.4s ease,
    border-bottom 0.4s ease;
}


.amenities {
  padding: 4rem 2rem;
  background: #f4ede6;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #5b3c23;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 columnas */
  gap: 2rem;
  width: 100%;
  max-width: 1440px;
  /* opcional para centrar en pantallas grandes */
  margin: 0 auto;
  /* centrar horizontalmente si hay max-width */
  padding: 2rem 1rem;
  /* separación interna */
  box-sizing: border-box;
}

.flip-card {
  background-color: transparent;
  width: 100%;
  aspect-ratio: 3 / 4;
  /* para mantener proporción vertical */
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  background-color: #8c7156;
  /* fondo marrón */
  color: #ceb28c;
  /* texto claro */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  font-size: 2.7rem;
  text-align: center;
  backface-visibility: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.flip-card-back {
  background: #d6c2ad;
  color: #4a3624;
  transform: rotateY(180deg);
  font-size: 1.5rem;
}

@media (max-width: 1200px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}

.hero-text {
  display: flex;
}

.hero-title {
  width: 45%;
  padding: 2rem 3rem;
}

.hero-title h1 {
  color: #513428;
  font-weight: 900;
}

.hero-subtitle {
  width: 55%;
  padding: 2rem 3rem;
}

.hero-subtitle p {
  color: #513428;
  font-size: 26px;
  font-weight: 600;
}

.hero-image .video-bg-hero {
  width: 100%;
}

#render-1 {
  padding-top: 6rem;
}

.splash-screen .logo {
  width: 100%;
  max-width: 600px;
}

.section-2 {
  background-color: #e4ddd7;
}

.container-section-2 {
  padding-left: 90px;
}

.logo-section-2 {
  text-align: center;
  padding: 60px 0px;
}

.logo-section-2 img {
  width: 100%;
  max-width: 500px;
  margin: auto;
}

#section-3-text {
  padding-left: 90px;
}

.container-section-3 {
  background-color: #e4ddd7;
  padding: 50px 50px;
}

.section-3 h1 {
  color: #513428;
  font-weight: 600;
  text-align: right;
  font-size: 50px;
}

.section-3 p {
  color: #896e54;
  font-weight: 600;
  font-size: 35px;
  text-align: right;
}

#render-2 {
  position: relative;
}

.container-section-4 {
  padding-left: 90px;
  padding-bottom: 22%;
}

.section-4 {
  background-color: #e4ddd7;
  height: 600px;
}

.section-4-render {
  position: absolute;
  bottom: 0;
}

.section-4-render img {
  width: 96%;
}

.navbar-brand img {
  width: 100%;
  max-width: 60px;
}

#navbarNav a.nav-link {
  color: #fff;
  font-weight: 400;
  font-size: 18px;
}

.nav-item.nav-en {
  padding-left: 40px;
}

.nav-item.nav-contacto .nav-link {
  background: #a87946;
  border-radius: 30px;
}

footer.bg-dark.text-white.text-center.py-4 {
  background-color: #896e54 !important;
}

.footer-img-logo {
  text-align: center;
  padding-bottom: 85px;
}

.footer-img-logo img {
  width: 100%;
  max-width: 290px;
}

.footer-menu {
  padding-bottom: 25px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  padding: 0px 9px;
  font-size: 18px;
  font-weight: 600;
}

.footer-text p.mb-1 {
  font-weight: 600;
}

.banner-section-2 img {
  width: 100%;
}


/* Botón flotante */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #278d46;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 9999;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  -webkit-transition: transform 0.7s ease, background 0.4s ease, color 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 24px;
  border: 1px #fff solid;
}

.whatsapp-btn:hover {
  background-color: #fff;
  color: #278d46 !important;
}

.whatsapp-btn i {
  color: #fff !important;
  -webkit-transition: color 0.4s ease;
}

.whatsapp-btn:hover i {
  color: #278d46 !important;
}

.whatsapp-btn img {
  width: 100%;
  padding: 10px;
}


/* Botón base reutilizable */
.social-btn {
  position: fixed;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 24px;
  border: 1px #fff solid;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.7s ease, background 0.4s ease, color 0.4s ease;
}

/* Posicionamiento vertical */
.instagram-btn {
  bottom: 110px;
  /* 30px (whatsapp) + 80px separación */
}

.facebook-btn {
  bottom: 190px;
  /* 110px + 80px separación */
}

/* Colores */
.instagram-btn {
  background: #E1306C;
}

.facebook-btn {
  background: #1877F2;
}

/* Hover */
.social-btn:hover {
  background: #fff;
}

.instagram-btn:hover i {
  color: #E1306C !important;
}

.facebook-btn:hover i {
  color: #1877F2 !important;
}

/* Icono blanco por defecto */
.social-btn i {
  color: #fff !important;
  transition: color 0.4s ease;
}

/* Contenedor de botones */
.whatsapp-options {
  position: fixed;
  bottom: 100px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9998;
}

/* Botones Persona */
.whatsapp-persona {
  background-color: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  -webkit-transition: background 0.3s;
}

/* Rotación */
.rotate {
  -webkit-transform: rotate(360deg);
}

#whatsapp-options .whatsapp-persona {
  color: #278d46 !important;
  border: 1px #fff solid;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
}

#whatsapp-options .whatsapp-persona:hover {
  background-color: #278d46;
  color: #fff !important;
}



@media (max-width: 1382px) {
  .hero-title h1 {
    font-size: 34px;
  }

  .hero-subtitle p {
    font-size: 24px;
    margin-bottom: 0px;
  }
}

@media (max-width: 1290px) {
  .hero-subtitle p br {
    display: none;
  }
}

@media (max-width: 1280px) {
  .hero-title {
    display: flex;
    align-items: center;
  }

  .hero-title h1 {
    font-size: 28px;
  }

  .hero-subtitle p {
    font-size: 20px;
  }

  .logo-section-2 img {
    max-width: 400px;
  }

  .section-3 h1 {
    font-size: 35px;
  }

  .section-3 p {
    font-size: 20px;
    margin-bottom: 0px;
  }

  .container-section-3 {
    padding-top: 85px;
    padding-bottom: 0px;
    padding-left: 50px;
    padding-right: 50px;
  }

  .container-section-4 {
    padding-bottom: 22%;
  }

  .flip-card-front {
    font-size: 2.2rem;
  }

  .flip-card-back {
    font-size: 1.1rem;
  }
}

@media (max-width: 980px) {
  .hero-title h1 {
    font-size: 24px;
  }

  .hero-subtitle p {
    font-size: 16px;
  }

  .logo-section-2 img {
    max-width: 300px;
  }

  .section-4 {
    height: 500px;
  }

  .flip-card-front {
    font-size: 1.8rem;
  }

  .flip-card-back {
    font-size: 1rem;
  }
}

@media (max-width: 825px) {
  .hero-subtitle {
    width: 50%;
    padding: 2rem 1.5rem;
  }

  .hero-title {
    width: 50%;
  }

  .hero-title h1 {
    font-size: 22px;
  }
}

@media (max-width: 780px) {
  .section-4 {
    height: 400px;
  }

  .flip-card {
    aspect-ratio: 3 / 3;
  }

  .footer-img-logo {
    padding-right: 0px;
    text-align: center;
  }
}

@media (max-width: 696px) {
  .hero-text {
    display: block;
  }

  .hero-title {
    padding-bottom: 1rem;
    width: 100%;
  }

  .title-container {
    margin: auto;
    text-align: center;
  }

  .hero-subtitle {
    width: 100%;
    padding-top: 0rem;
    padding-bottom: 2rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hero-subtitle p {
    text-align: center;
  }


}

@media (max-width: 680px) {
  .splash-screen .logo {
    padding: 50px;
  }

  #flecha img {
    max-width: 70px;
  }

  .logo-section-2 img {
    max-width: 250px;
  }

  .container-section-2 {
    padding-left: 0px;
  }

  .section-4 {
    height: 320px;
  }

  #section-3-text {
    padding-left: 0px;
  }

  .section-3 h1 {
    font-size: 25px;
    text-align: center;
  }

  .section-3 p {
    font-size: 15px;
    text-align: center;
  }

  .container-section-4 {
    padding-left: 0px;
  }

  .footer-menu {
    display: none;
  }

  .footer-img-logo {
    padding: 50px 0px;
  }
}

@media (max-width: 480px) {
  .section-3 h1 {
    font-size: 20px;
    text-align: center;
  }

  .section-3 p {
    font-size: 13px;
    text-align: center;
  }

  .section-4 {
    height: 220px;
  }

  .container-section-3 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-img-logo img {
    max-width: 220px;
  }

  .footer-text p.mb-1 {
    font-size: 14px;
    padding: 0px 10px;
  }
}












#carousel-bg-hero .carousel-inner {
  height: 100vh;
}

#carousel-bg-hero {
  position: fixed;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -1;
  height: 100vh !important;
  width: 100%;
}

.container-hero {
  position: relative;
  height: 100vh;
}

.contenido-hero {
  position: absolute;
  z-index: 1;
  color: white;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  display: flex;
  align-items: end;
}


.hero {
  position: relative;
  background: url('../img/hero.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(230, 227, 217, 0.4);
  padding: 20px 80px;
  border-radius: 40px;
  max-width: 800px;
  width: 100%;
  color: #fff;
}

.buscador {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.tipo-operacion label {
  color: #fff;
  padding: 8px 8px;
  border-radius: 20px;
  cursor: pointer;
}

.tipo-operacion input {
  margin-right: 5px;
}

.filtros {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 400px;
}

.filtros input,
.filtros select {
  padding: 8px;
  border-radius: 10px;
  border: none;
  outline: none;
}

.btn-buscar {
  background: #b4824f;
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  width: 100%;
}

.btn-ver {
  background: transparent;
  color: white;
  padding: 0px 1px;
  cursor: pointer;
  border: none;
  border-bottom: 1px solid #fff;
}

.resultados {
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  padding: 15px;
  border-radius: 10px;
}

.hero-buscador {
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 70px;
  padding-left: 30px;
  padding-right: 30px;
}

.precios input {
  width: 100%;
  max-width: 80px;
  background: #e6e3d9;
  color: #3e3e1f !important;
}

.container-tipo-propiedad {
  display: block;
  width: 100%;
  max-width: 220px;
}

.container-tipo-propiedad label {
  width: 100%;
}

#tipoPropiedad {
  width: 100%;
  max-width: 260px;
  color: #3e3e1f !important;
  padding: 9px 12px;
  border-radius: 10px;
  border: none;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  background: #e6e3d9;
}

.tipo-operacion {
  display: flex;
  align-items: end;
}

.carousel-item img {
  filter: brightness(50%);
  min-height: 100vh;
}

.hero-buscador p {
  font-size: 20px;
  font-weight: 600;
}

#navbar-menu {
  position: fixed;
  z-index: 99;
  top: 0;
  right: 0;
  left: 0;
  background-color: transparent !important;
}






#section-propiedades-legados {
  background: #e6e3d9;
}

.propiedades-legados {
  display: flex;
  padding: 80px 35px;
  padding-bottom: 0px;
}

.propiedades-legados-text {
  color: #3e3e1f;
  font-size: 31px;
  font-weight: 400;
  width: 32%;
  padding-right: 20px;
}

.propiedades-legados-text p {
  margin-bottom: 0px;
}

.legados {
  font-size: 58px;
}

.legados span {
  color: #a87946;
}

.propiedades-legados-banner {
  width: 68%;
}

.propiedades-legados-banner img {
  width: 100%;
}

.hay-propiedades {
  font-size: 26px;
}

.legados-enlace a {
  color: #3e3e1f;
  font-size: 26px;
}



.luxury-section {
  background-color: #e9e5d9;
  padding: 40px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.luxury-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
  letter-spacing: 1px;
  color: #3e3e1f;
  font-weight: 600;
}

.luxury-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.luxury-card {
  background: none;
  max-width: 470px;
  text-align: left;
}

.luxury-card img {
  border-radius: 8px;
  display: block;
  height: 100%;
  min-height: 350px;
  max-height: 350px;
}

.luxury-info {
  margin-top: 10px;
  color: #3e3e1f;
}

.luxury-info h3 {
  font-size: 30px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.luxury-info p {
  font-size: 17px;
  margin-bottom: 8px;
  font-family: "FeatureDisplay", sans-serif !important;
}

.luxury-info .view-link {
  font-family: "FeatureDisplay", sans-serif !important;
}

.price {
  display: block;
  margin-bottom: 5px;
  font-size: 30px;
}

.view-link {
  color: #3e3e1f;
  font-size: 20px;
}

.all-properties {
  margin-top: 30px;
}

.all-properties a {
  display: inline-block;
  padding: 15px 50px;
  background-color: #a87946;
  color: white;
  border-radius: 40px;
  text-decoration: none;
  font-size: 20px;
}






#section-mural {
  background: #e6e3d9;
  padding-bottom: 20px;
  padding-top: 0px;
}

.mural {
  display: flex;
  padding: 18vh 0px;
}

.mural-text {
  padding: 0px 10px;
  width: 25%;
}

.mural-text p {
  color: #3e3e1f;
  font-size: 20px;
}

.mural-text h1 {
  color: #3e3e1f;
  font-weight: 600;
}

.mural-text h1 span {
  color: #a87946;
}

.mural-text p span {
  color: #a87946;
}

.mural-text .verde {
  color: #3e3e1f;
  font-size: 41px;
  margin-bottom: 15px;
}

.mural-text h1 span {
  color: #a87946;
}

.imagenes img {
  width: 100%;
}






#section-banner-propiedad {
  height: 100vh;
  background: url('../img/jpg/banner-02.png') no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.container-banner-propiedad {
  height: 100%;
}

.banner-propiedad {
  display: flex;
  align-items: end;
  height: 100%;
}

.banner-propiedad a {
  background: #c0ae9b;
  color: #fff;
  font-size: 25px;
  padding: 10px 100px;
  border-radius: 38px;
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16vh;
}






#section-frase {
  background: #e6e3d9;
  padding: 130px 20px;
}

.frase {
  text-align: center;
  color: #3e3e1f;
}

.frase h1 {
  font-weight: 600;
  margin-bottom: 0px;
  font-size: 55px;
}






footer.bg-dark.text-white.text-center.py-4 {
  background-color: #3e3e1f !important;
  padding: 30px 60px !important;
}

.footer-body {
  display: flex;
}

.footer-img-logo-ubicacion {
  width: 65%;
  text-align: left;
}

.footer-img-logo-ubicacion img {
  width: 100%;
  max-width: 500px;
  margin-bottom: 35px;
}

.footer-text {
  width: 35%;
  text-align: left;
}

.footer-menu {
  padding-bottom: 0px;
}

.footer-nav {
  display: block;
}

.footer-nav a {
  display: block;
  width: max-content;
  padding: 5px 0px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
}

.footer-img-logo-ubicacion a {
  text-decoration: none;
  color: #b4b4b4;
}

.badge {
  display: none;
}

#carousel-bg-hero .carousel-control-prev,
#carousel-bg-hero .carousel-control-next {
  display: none;
}

.footer-mail {
  font-size: 20px;
}

.footer-text p.mb-1 {
  font-weight: 600;
  font-size: 20px;
}

.socios img {
  height: 38px;
  margin-right: 12px;
}

.price {
  white-space: nowrap;
}

#section-mural .imagenes {
  padding: 0px 1.5rem;
}

.luxury-info .price {
  font-family: "FeatureDisplay", sans-serif !important;
}

.global-loader{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(2px);
  z-index: 99999;
}
.global-loader.is-active{ display:flex; }

.global-loader__spinner{
  width: 44px;
  height: 44px;
  border: 4px solid rgba(0,0,0,.12);
  border-top-color: rgba(0,0,0,.55);
  border-radius: 999px;
  animation: kr-spin .8s linear infinite;
}
@keyframes kr-spin{ to { transform: rotate(360deg); } }




.form-overlay{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.35);
  z-index: 100000;
}
.form-overlay.is-active{ display:flex; }

.form-overlay__box{
  background:#fff;
  padding:18px 18px;
  border-radius:14px;
  min-width: 260px;
  max-width: 92vw;
  text-align:center;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
}
.form-overlay__icon{
  font-size: 26px;
  margin-bottom: 8px;
}
.form-overlay__text{
  font-weight: 600;
}




/*  T I P O G R A F I A S   */

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.ttf") format("opentype");
  font-weight: 500;
  /* Medium */
  font-style: normal;
}

@font-face {
  font-family: "FeatureDisplay";
  src: url("../fonts/FeatureDisplay-Light.otf") format("opentype");
  font-weight: 500;
  /* Medium */
  font-style: normal;
}


h4,
h5,
p,
span,
div,
input,
select,
textarea,
a,
button {
  font-family: 'Inter', sans-serif !important;
}

h1,
h2,
h3,
h1 span {
  font-family: "FeatureDisplay", sans-serif !important;
  font-weight: 500 !important;
  /* Medium */
}

.mensaje-flotante {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  font-weight: 600;
}

.mensaje-flotante i {
  color: #28a58d;
  /* color institucional */
  font-size: 16px;
}

.footer-socios {
  display: none;
}

.footer-mail {
  margin-bottom: 0px;
}

.luxury-info>a {
  color: #3e3e1f;
  text-decoration: none;
}

.luxury-info p>a:nth-child(1) {
  color: #3e3e1f;
  text-decoration: none;
}



@media (max-width: 1380px) {
  .hay-propiedades {
    font-size: 20px;
  }

  .legados {
    font-size: 48px;
  }

  .propiedades-legados-text {
    font-size: 24px;
  }

  .legados-enlace a {
    font-size: 22px;
  }

  .frase-logo h1 {
    font-size: 40px;
  }

  .nav-nosotros-text p {
    color: #3e3e1f;
    font-size: 22px;
    text-align: justify;
  }

  .nav-nosotros-title h1 {
    font-size: 30px;
  }

  .nav-nosotros-img img {
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 1180px) {
  .mural-text p {
    font-size: 16px;
  }

  .mural-text h1 {
    font-size: 30px;
  }

  .mural-text .verde {
    font-size: 30px;
  }
}

@media (max-width: 1080px) {
  .hay-propiedades {
    font-size: 16px;
  }

  .legados {
    font-size: 36px;
  }

  .propiedades-legados-text {
    font-size: 20px;
  }

  .legados-enlace a {
    font-size: 22px;
  }

  .footer-text p.mb-1 {
    font-size: 16px;
  }

  .footer-nav a {
    font-size: 16px;
  }

  .socios img {
    height: 22px;
  }

  .frase-logo img {
    max-width: 45px;
  }

  .frase-logo h1 {
    font-size: 32px;
  }
}

@media (max-width: 980px) {
  .hero-overlay {
    max-width: 600px;
  }

  .propiedades-legados-text {
    width: 42%;
  }

  .propiedades-legados-banner {
    width: 58%;
  }

  .container-home-sec-1 {
    padding: 90px 60px;
  }

  .frase-logo {
    display: block;
  }

  .frase-logo h1 {
    color: #3e3e1f;
    font-size: 32px;
    margin-bottom: 15px;
  }

  .frase-logo img {
    margin-bottom: 15px;
  }

  #navbar-menu .navbar-toggler {
    width: 100% !important;
    max-width: 56px !important;
    display: block !important;
  }

  #navbar-menu .navbar-brand {
    margin-left: auto;
    margin-right: auto;
    padding-left: 55px;
  }
}

@media (max-width: 880px) {
  .mural {
    display: block;
  }

  .mural-text {
    width: 100%;
    display: grid;
    text-align: center;
    padding: 10px 0px;
  }

  .mural-text h1 {
    color: #3e3e1f;
    font-weight: 600;
    font-size: 30px;
    order: 1;
  }

  .mural-text p {
    color: #3e3e1f;
    font-size: 16px;
    order: 2;
  }
}


@media (max-width: 780px) {
  .propiedades-legados-text {
    text-align: center;
    padding-bottom: 70px;
  }

  .propiedades-legados {
    display: block;
  }

  .propiedades-legados-text {
    width: 100%;
  }

  .propiedades-legados-banner {
    width: 100%;
  }

  .footer-img-logo-ubicacion img {
    max-width: 320px;
  }

  .footer-img-logo-ubicacion {
    width: 100%;
    text-align: center;
  }

  .footer-text {
    display: none;
  }

  .home-banner-text-izq {
    font-size: 16px;
  }

  .home-banner-text-der {
    font-size: 16px;
  }

  .home-banner-frase-grid {
    font-size: 16px;
  }
}


@media (max-width: 680px) {
  .hero-overlay {
    padding: 30px 40px;
  }
}

@media (max-width: 580px) {
  .carousel-item img {
    object-fit: cover;
  }

  #section-mural .imagenes .row {
    display: grid;
  }

  #section-mural .imagenes .row .col {
    width: 100%;
  }

}