:root {
  --color-primario: #a98b58;
  --color-fondo: #ffffff;
  --color-texto-blanco: #ffffff;
  --font-titulos: 'Playfair Display', serif;
  --font-cuerpo: 'Montserrat', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-cuerpo);
  background-color: var(--color-fondo);
  line-height: 1.6;
}

/* === HERO === */
/* ================= HERO ================= */
/* ===============================
   BOTÓN NEÓN PROFESIONAL (PULSANTE)
================================= */
/* ===============================
   BOTÓN NEÓN DORADO PULSANTE
================================= */
/* ===============================
   BOTÓN NEÓN DORADO INTENSO (PULSANTE Y BRILLANTE)
================================= */
.btn-neon {
  position: relative;
  display: inline-block;
  padding: 16px 50px;
  font-size: 1.2rem;
  color: white;
  border: 2px solid #a98b58;
  border-radius: 12px;
  background: #a98b58;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow: 0 0 10px #a98b58, 0 0 20px #a98b58, 0 0 40px #a98b58;
  box-shadow: 0 0 20px rgba(169, 139, 88, 0.8), inset 0 0 10px rgba(169, 139, 88, 0.4);
  animation: pulseGoldStrong 1.8s infinite ease-in-out alternate;
  overflow: hidden;
}

.btn-neon2{
  position: relative;
  display: inline-flex;               /* centra el texto */
  align-items: center;
  justify-content: center;

  padding: 16px 50px;
  min-width: 300px;                   /* ancho mínimo opcional */
  height: auto;                       /* <— MUY IMPORTANTE: sin altura fija */
  line-height: 1.2;                   /* altura de línea normal */
  white-space: nowrap;                /* evita salto de línea del texto */

  color: #fff;
  border: 2px solid #a98b58;
  border-radius: 12px;
  background: #a98b58;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 800;                   /* 1000 a veces no existe, 800 es seguro */
  cursor: pointer;
  text-decoration: none;
  transition: all .3s ease;

  text-shadow: 0 0 10px #a98b58, 0 0 20px #a98b58, 0 0 40px #a98b58;
  box-shadow: 0 0 20px rgba(169,139,88,.8), inset 0 0 10px rgba(169,139,88,.4);
  animation: pulseGoldStrong 1.8s infinite ease-in-out alternate;
  overflow: hidden;
}

.btn-neon2:hover{
  filter: brightness(1.05);
  transform: translateY(-1px);
}



/* Hover con resplandor más fuerte y tono más claro */
.btn-neon:hover {
  background: #d4af6a;
  border-color: #d4af6a;
  color: white;
  box-shadow: 0 0 35px #d4af6a, 0 0 80px #d4af6a, 0 0 160px #d4af6a;
  text-shadow: 0 0 15px #d4af6a, 0 0 40px #d4af6a;
  transform: scale(1.08);
}

/* ANIMACIÓN DE PULSO MÁS FUERTE Y PROFUNDO */
@keyframes pulseGoldStrong {
  0% {
    text-shadow: 0 0 6px #a98b58, 0 0 14px #a98b58;
    box-shadow: 0 0 10px rgba(169, 139, 88, 0.7), inset 0 0 5px rgba(169, 139, 88, 0.3);
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 20px #a98b58, 0 0 40px #a98b58, 0 0 80px #a98b58;
    box-shadow: 0 0 25px rgba(169, 139, 88, 0.9), inset 0 0 15px rgba(169, 139, 88, 0.5);
    transform: scale(1.04);
  }
  100% {
    text-shadow: 0 0 10px #a98b58, 0 0 25px #a98b58;
    box-shadow: 0 0 18px rgba(169, 139, 88, 0.8), inset 0 0 8px rgba(169, 139, 88, 0.4);
    transform: scale(1.02);
  }
}


/* Efecto pulsante */
@keyframes pulseGold {
  0% {
    text-shadow: 0 0 4px #a98b58, 0 0 8px #a98b58;
    box-shadow: 0 0 6px rgba(169, 139, 88, 0.5), inset 0 0 4px rgba(169, 139, 88, 0.2);
  }
  50% {
    text-shadow: 0 0 12px #a98b58, 0 0 24px #a98b58;
    box-shadow: 0 0 15px rgba(169, 139, 88, 0.7), inset 0 0 10px rgba(169, 139, 88, 0.4);
  }
  100% {
    text-shadow: 0 0 6px #a98b58, 0 0 14px #a98b58;
    box-shadow: 0 0 10px rgba(169, 139, 88, 0.6), inset 0 0 6px rgba(169, 139, 88, 0.3);
  }
}

.hero-banner {
  position: relative;
  width: 100%;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  color: var(--color-texto-blanco);
  overflow: hidden; 
}

.hero-carousel-slides {
  position: absolute;
  inset: 0; 
  width: 100%;
  height: 100%;
  z-index: 0; 
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0; 
  transition: opacity 1.5s ease-in-out; 
}

.hero-slide.active {
  opacity: 1;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 1; 
}

.hero-banner__content {
  position: relative; 
  z-index: 2; 
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  gap: 2rem;
}

.hero-banner__title {
  font-family: var(--font-cuerpo);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
  flex: 1;
  text-align: left;
}

.hero-banner__text {
  flex: 1;
  text-align: right;
  font-family: var(--font-cuerpo);
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.6;
}

.hero-banner__text strong {
  color: var(--color-primario);
  font-weight: 600;
}

.hero-banner__link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--color-texto-blanco);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.hero-banner__link:hover {
  color: var(--color-primario);
}

.hero-banner__button {
  position: relative;
  display: inline-block;
  padding: 12px 34px;
  font-family: var(--font-cuerpo);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--color-texto-blanco);
  background: var(--color-primario);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.5px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.hero-banner__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(169, 139, 88, 0.3);
}

.hero-banner__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.hero-banner__button:hover::before {
  left: 125%;
}

.hero-banner__button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-banner__button:active {
  transform: scale(0.97);
  box-shadow: 0 4px 15px rgba(169, 139, 88, 0.25);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .hero-banner {
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
  }

  .hero-banner__content {
    flex-direction: column;
    align-items: center;
    padding-top: 300px  ;
  }

  .hero-banner__title {
    text-align: center;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
  }

  .hero-banner__text {
    text-align: center;
    font-size: 1.1rem;
  }

  .hero-banner__link {
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-banner {
    min-height: 90vh;
    padding: 0 1.5rem;
  }

  .hero-banner__title {
    font-size: 2.5rem;
  }

  .hero-banner__text {
    font-size: 0.95rem;
  }

  .hero-banner__text p {
    line-height: 1.4;
  }
}


/* Asegura contexto para posicionar el logo */
.hero-banner{
  position: relative;
}

/* Logo encima del título (desktop) – versión con más profundidad */
.hero-logo{
  position: absolute;
  left: 450px;                                      /* tu posición */
  /*top: clamp(40px, -30vh, 20vh);*/
  width: clamp(90px, 2000px);
  height: auto;
  object-fit: contain;
  z-index: 3;
  pointer-events: none;

  /* PROFUNDIDAD: varias sombras apiladas */
  /* sombra base */
  filter:
    drop-shadow(0 14px 28px rgba(0,0,0,.45))        /* sombra profunda */
    drop-shadow(0 6px 14px rgba(0,0,0,.35))         /* sombra intermedia */
    drop-shadow(0 1px 2px rgba(0,0,0,.25))          /* contacto */
    drop-shadow(0 0 0.75rem rgba(255,255,255,.15)); /* halo claro para recortar sobre el fondo */
  -webkit-filter:
    drop-shadow(0 14px 28px rgba(0,0,0,.45))
    drop-shadow(0 6px 14px rgba(0,0,0,.35))
    drop-shadow(0 1px 2px rgba(0,0,0,.25))
    drop-shadow(0 0 0.75rem rgba(255,255,255,.15));

}
/* 🎯 Estilo base (pantallas grandes de escritorio por defecto) */
.hero-logo {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
  width: 280px;
  height: auto;
  transition: all .3s ease;
}

.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-logo {
  position: absolute;
  z-index: 5;
  transition: all 0.4s ease-in-out;
  filter:
    drop-shadow(0 16px 32px rgba(0,0,0,.48))
    drop-shadow(0 8px 16px rgba(0,0,0,.36))
    drop-shadow(0 1px 3px rgba(0,0,0,.25))
    drop-shadow(0 0 1rem rgba(255,255,255,.16));
}

/* 🖥️ Extra grande (≥1451px) */
@media (min-width: 1451px) {
  .hero-logo {
    left: 18%;
    top: 50%;
    transform: translateY(-50%);
    width: 270px;
  }
}

/* 💻 Grande (1281px – 1450px) */
@media (min-width: 1281px) and (max-width: 1450px) {
  .hero-logo {
    left: 17%;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
  }
}

/* 💻 Mediano-grande (1025px – 1280px) */
@media (min-width: 1025px) and (max-width: 1280px) {
  .hero-logo {
    left: 15%;
    top: 50%;
    transform: translateY(-50%);
    width: 230px;
  }
}

/* 🎯 Ajuste específico para pantallas 980px – 1024px */
@media (min-width: 980px) and (max-width: 1024px) {
  .hero-logo {
    left: 50%;
    top: 70px; /* Subimos el logo para que no tape el texto */
    transform: translateX(-50%);
    width: 200px; /* un poco más compacto para equilibrio */
  }

  .hero-banner__text {
    text-align: center;
    margin-top: 140px; /* separamos un poco el texto del logo */
  }
}


/* 📺 Mediano (769px – 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-logo {
    left: 50%;
    top: 90px;
    transform: translateX(-50%);
    width: 210px;
  }

  .hero-banner__content {
    text-align: center;
    margin-top: 160px;
  }
}

/* 📱 Pequeño (481px – 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .hero-logo {
    left: 50%;
    top: 110px;
    transform: translateX(-50%);
    width: 190px;
  }

  .hero-banner__content {
    text-align: center;
    margin-top: 150px;
  }
}

/* 📞 Extra pequeño (max 480px) */
@media (max-width: 480px) {
  .hero-logo {
    left: 50%;
    top: 100px;
    transform: translateX(-50%);
    width: 170px;
  }

  .hero-banner__content {
    text-align: center;
    margin-top: 140px;
  }
}




/* === SECCIÓN INFO === */
.info-section {
  background-color: #fff;
  color: #333;
  padding: 80px 20px;
  text-align: center;
}

.info-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
/* Esto va en tu archivo styles.css o similar */

@media (max-width: 900px) {

  .info-container {
    /* --- ¡LA REGLA MÁS IMPORTANTE! --- */
    display: flex; /* <-- Sin esto, 'align-items' y 'flex-direction' no funcionan */
    /* --- */
    
    flex-direction: column; /* Apila .info-left y .info-right */
    align-items: center;  /* Centra horizontalmente a sus hijos (.info-left y .info-right) */
    text-align: center;   /* Centra todo el texto dentro del contenedor */
  }

  /* * Hacemos que los hijos ocupen todo el ancho 
   * para que el contenido de adentro se vea bien.
   */
  .info-left,
  .info-right {
    width: 100%;
  }

  .asesora-bloque {
    /* * ¡Bien hecho aquí! 'width: 90%' es mucho mejor que un ancho fijo 
     * porque deja "aire" a los lados en pantallas estrechas.
     */
    width: 90%; 
    
    /* * 'margin: 0 auto;' centra este bloque DENTRO de su padre (.info-right).
     * Esto funciona perfectamente porque su padre ya tiene 'width: 100%'.
     */
    margin: 0 auto;

    /* * (Opcional pero recomendado) 
     * Un max-width evita que se vea demasiado ancho en tablets.
     */
    max-width: 450px; 
  }

  .asesora-texto p {
    font-size: 0.95rem;
  }
  
  .asesora-imagen {
    width: 180px;
    height: 180px;
  }
}
.info-left {
  flex: 1;
  min-width: 300px;
  margin-left: 90px;
}

.info-left h2 {
  font-family: var(--font-cuerpo);
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--color-primario);
}

.accordion {
  max-width: 700px;
}

.accordion-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-cuerpo);
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.accordion-header:hover {
  color: var(--color-primario);
}

.accordion-header::after {
  content: "+";
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: var(--color-primario);
}

.accordion-item.active .accordion-header::after {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background-color: rgba(169, 139, 88, 0.05);
  padding: 0 20px;
}

.accordion-item.active .accordion-content {
  max-height: 300px;
  padding: 20px;
}

.accordion-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.info-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 320px;
}

.asesora-bloque {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border: 1px solid rgba(169,139,88,0.25);
  padding: 40px 30px;
  width: 380px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.asesora-bloque:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.asesora-texto {
  text-align: center;
  font-family: var(--font-cuerpo);
  font-size: 1rem;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.6;
}

.asesora-texto strong {
  color: var(--color-primario);
}

.asesora-imagen {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid rgba(169,139,88,0.4);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-bottom: 25px;
}

.asesora-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.asesora-bloque:hover .asesora-imagen img {
  transform: scale(1.05);
}

.asesora-boton {
  display: inline-block;
  padding: 10px 28px;
  background-color: var(--color-primario);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.asesora-boton:hover {
  background-color: #8e7848;
  transform: scale(1.05);
}

[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Esto va en tu archivo styles.css o similar */

@media (max-width: 900px) {

  .info-container {
    /* --- ¡LA REGLA MÁS IMPORTANTE! --- */
    display: flex; /* <-- Sin esto, 'align-items' y 'flex-direction' no funcionan */
    /* --- */
    
    flex-direction: column; /* Apila .info-left y .info-right */
    align-items: center;  /* Centra horizontalmente a sus hijos (.info-left y .info-right) */
    text-align: center;   /* Centra todo el texto dentro del contenedor */
  }

  /* * Hacemos que los hijos ocupen todo el ancho 
   * para que el contenido de adentro se vea bien.
   */
  .info-left,
  .info-right {
    width: 100%;
    margin-left: 1px;
  }

  .asesora-bloque {
    /* * ¡Bien hecho aquí! 'width: 90%' es mucho mejor que un ancho fijo 
     * porque deja "aire" a los lados en pantallas estrechas.
     */
    width: 90%; 
    
    /* * 'margin: 0 auto;' centra este bloque DENTRO de su padre (.info-right).
     * Esto funciona perfectamente porque su padre ya tiene 'width: 100%'.
     */
    margin: 0 auto;

    /* * (Opcional pero recomendado) 
     * Un max-width evita que se vea demasiado ancho en tablets.
     */
    max-width: 450px; 
  }

  .asesora-texto p {
    font-size: 0.95rem;
  }
  
  .asesora-imagen {
    width: 180px;
    height: 180px;
  }
}

/* === BANNER APARTAMENTOS === */
.apartamentos-banner {
  position: relative;
  width: 100%;
  height: 45vh;
  background: url('/img/Elemento-Inmonbiliario-Apartamentos (1).jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.apartamentos-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Banner Casas*/
.casas-banner {
  position: relative;
  width: 100%;
  height: 45vh;
  background: url('/img/Elemento-Inmonbiliario-Casas (1).jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.casas-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}


.apartamentos-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.apartamentos-title {
  font-family: var(--font-cuerpo);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 10px;
}

.apartamentos-subtitle {
  font-family: var(--font-cuerpo);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.9);
}

/* === SCROLL DE SECTORES === */
.sectores-scroll {
  width: 100%;
  overflow: hidden;
  background: #193c52; 
  padding: 16px 0;
  position: relative;
}

.sectores-track {
  display: flex;
  width: calc(250px * 16);
  animation: scrollSectores 25s linear infinite;
}

@keyframes scrollSectores {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.sector {
  flex: 0 0 250px;
  text-align: center;
  color: #fff;
  font-family: var(--font-cuerpo);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .apartamentos-banner {
    height: 40vh;
  }

  .apartamentos-title {
    font-size: 2.2rem;
  }

  .apartamentos-subtitle {
    font-size: 1rem;
  }

  .sector {
    flex: 0 0 180px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .apartamentos-banner {
    height: 35vh;
  }

  .apartamentos-title {
    font-size: 1.8rem;
  }

  .sector {
    flex: 0 0 150px;
  }
}


/* SEPARADORES */



/* === APARTAMENTOS GRANDES Y FLUIDOS === */
.apartamentos-lista {
  background-color: #fff;
  padding: 90px 20px;
  text-align: center;
}

.apartamentos-lista h2 {
  font-family: var(--font-cuerpo);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-primario);
  
}

.apartamentos-container {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Flechas ESCRITORIO */
.apartamentos-lista .scroll-btn {
  background: rgba(169, 139, 88, 0.9);
  color: #fff;
  border: none;
  font-size: 2.2rem;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  z-index: 2;
  position: absolute; /* Importante para escritorio */
}

.apartamentos-lista .scroll-btn:hover {
  transform: scale(1.1);
  background-color: #b89a63;
  
}

.left-btn { left: -60px; }
.right-btn { right: -60px; }

/* Scroll */
.apartamentos-scroll {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 20px;
  scrollbar-width: none;
}

.apartamentos-scroll::-webkit-scrollbar { display: none; }

/* Card grande */
.apartamento-card {
  flex: 0 0 380px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  font-family: var(--font-cuerpo);
}

.apartamento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.apartamento-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.apartamento-card:hover img {
  transform: scale(1.05);
}

.card-info {
  padding: 25px;
  text-align: left;
}

.card-info h3 {
  font-weight: 700;
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 8px;
}

.card-info p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 18px;
  line-height: 1.6;
}

.btn-vermas {
  display: inline-block;
  background: #193c52;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-vermas::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.btn-vermas:hover::before {
  left: 130%;
}

.btn-vermas:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(169,139,88,0.3);
  background-color: #2f6b91;
}

/* Responsive (Cards) */
@media (max-width: 1200px) {
  .apartamento-card { flex: 0 0 320px; }
}

@media (max-width: 992px) {
  .apartamento-card { flex: 0 0 280px; }
}



/*MODALLLLLLL*/



/* ================================================= */
/* === CAMBIOS RESPONSIVE APARTAMENTOS Y CASAS === */
/* ================================================= */
@media (max-width: 768px) {
  
  /* 1. CARDS CUADRADAS Y EN 2 COLUMNAS */
  .apartamento-card { 
    flex: 0 0 calc(50% - 1rem); /* Muestra 2 cards */
  }
  
  .apartamento-card img {
    aspect-ratio: 1 / 1; /* <-- ESTO LAS HACE CUADRADAS */
    height: auto; /* Anula cualquier altura fija */
    object-fit: cover; /* Asegura que la imagen llene el cuadrado */
  }

  /* 2. FLECHAS DEBAJO */
  .apartamentos-container {
    flex-wrap: wrap; /* Permite que los botones bajen */
    justify-content: center; /* Centra los botones */
  }
  
  .apartamentos-scroll {
    width: 100%; /* El scroll ocupa toda la línea, empujando los botones abajo */
    order: -1; /* Mueve el scroll ANTES que los botones en el DOM visual */
  }

  /* Estilos generales para flechas en móvil */
  .apartamentos-lista .scroll-btn {
    position: static; /* Quita el posicionamiento absoluto */
    transform: none; /* Anula cualquier transform */
    margin: 20px 10px 0 10px; /* Añade espacio */
    width: 45px;
    height: 45px;
    font-size: 1.6rem;
  }
  
  .apartamentos-lista .left-btn, 
  .apartamentos-lista .right-btn {
    left: auto;
    right: auto;
  }
}

@media (max-width: 480px) {
  /* Ajustes finos para pantallas muy pequeñas */
  .btn-vermas { font-size: 0.9rem; padding: 10px 22px; }
}



/* Casas*/
.casas-lista {
  background-color: #faf9f6;
}

.casas-lista h2 {
  color: var(--color-primario);
}


/*Exclusivos*/
.exclusivos {
  background: #f8f6f2;
  /*padding: 80px 0 120px 0; /* <-- ARREGLADO: Espacio extra en el bottom */
  text-align: center;
  font-family: var(--font-cuerpo);
}

.exclusivos h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: #3a2b1c;
  margin-bottom: 10px;
}

/* 🔧 Ajuste real en móviles tipo Samsung (ancho <= 600px) */
@media (max-width: 600px) {
  .exclusivos h2 {
    font-size: 1.8rem !important;  /* forzamos prioridad */
    line-height: 1.1;
  }
}


.exclusivos .subtitulo {
  font-size: 1.1rem;
  color: #4d4336;
  margin-bottom: 40px;
}

/* Wrapper general de exclusivos (para el track) */
.exclusivos .exclusivos-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  
}

/* Wrapper de los botones (Escritorio) */
.exclusivos .exclusivos-wrapper:last-of-type {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: -90px;
  transform: translateY(-15px); /* Sube los botones sobre la imagen */
  position: relative;
  z-index: 5;
}


.exclusivos-track {
  display: flex;
  width: 100%;
  overflow: hidden;
  scroll-behavior: smooth;
}

.exclusivo-item {
  flex: 0 0 100%;
  position: relative;
}

.exclusivo-item img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.exclusivo-item:hover img {
  transform: scale(1.03);
}

.exclusivo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.65), transparent);
  color: #fff;
  text-align: left;
  padding: 40px 60px;
  background: #000000a6;
}

.exclusivo-overlay h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.exclusivo-overlay p {
  font-size: 1rem;
  opacity: 0.9;
}

/* === Flechas (Exclusivos) - ESCRITORIO === */
.exclusivos .scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(58, 43, 28, 0.8);
  color: #fff;
  border: none;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  z-index: 10;
}

.exclusivos .scroll-btn:hover {
  background: #b89a63;
  transform: translateY(-50%) scale(1.1);
}

/* Regla para los botones DENTRO del wrapper de botones de escritorio */
.exclusivos .exclusivos-wrapper:last-of-type .scroll-btn {
  position: static;
  transform: none;
  background: #b9973e;
  box-shadow: none;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 1.3rem;
}
.exclusivos .exclusivos-wrapper:last-of-type .scroll-btn:hover {
  background: #333;
}


.exclusivos-left { left: 30px; }
.exclusivos-right { right: 30px; }

/* === Responsive (Exclusivos) === */
@media (max-width: 1024px) {
  .exclusivo-item img {
    height: 60vh;
  }
  .exclusivo-overlay {
    padding: 30px;
      background: #000000a6;
  }
}

/* =================================== */
/* === CAMBIOS RESPONSIVE EXCLUSIVOS === */
/* =================================== */
@media (max-width: 768px) {
  .exclusivo-item img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .exclusivo-overlay {
    padding: 20px;
    text-align: center;
      background: #000000a6;
  }

  .exclusivo-overlay h3 {
    font-size: 1.3rem;
  }

  .exclusivo-overlay p {
    font-size: 0.9rem;
  }

  /* 1. El wrapper del TRACK y el wrapper de BOTONES se apilan */
  .exclusivos .exclusivos-wrapper {
    flex-direction: column; 
    transform: none; 
  }

  /* 2. El wrapper de BOTONES (el último) se pone en fila */
  .exclusivos .exclusivos-wrapper:last-of-type {
    flex-direction: row;
    gap: 15px;
    transform: none;

  }

  /* 3. Estilo de los botones en MÓVIL */
  .exclusivos .scroll-btn {
    position: static;
    transform: none;
    margin: 0;
    width: 45px;
    height: 45px;
    font-size: 1.6rem;
    background: #b9973e;
  }
}


/*Testimonios*/
.testimonios {
  background: linear-gradient(180deg, #f5f2ec 0%, #ffffff 100%);
  padding: 90px 20px;
  text-align: center;
  font-family: var(--font-cuerpo);
}

.testimonios h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: #3a2b1c;
  margin-bottom: 8px;
}

.testimonios .subtitulo {
  font-size: 1.1rem;
  color: #4d4336;
  margin-bottom: 50px;
}

.testimonios-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}

.testimonios-track {
  display: flex;
  gap: 1.5rem;
  overflow: hidden;
  scroll-behavior: smooth;
  width: 100%;
  padding: 10px;
}

.testimonio-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.testimonio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.testimonio-card h3 {
  font-weight: 700;
  font-size: 1.1rem;
  color: #2f261a;
  margin-bottom: 12px;
}

.testimonio-card p {
  font-size: 0.95rem;
  color: #4a3f2e;
  line-height: 1.5;
  margin-bottom: 12px;
}

.estrellas {
  color: #e3b23c;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

/* === Flechas (Testimonios) - ESCRITORIO === */
.testimonios .scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-primario);
  color: #fff;
  border: none;
  font-size: 1.8rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

.testimonios .scroll-btn:hover {
  background-color: #b89a63;
  transform: translateY(-50%) scale(1.08);
}

.testimonios-left {
  left: -60px;
}

.testimonios-right {
  right: -60px;
}

/* === RESPONSIVE (Testimonios) === */
@media (max-width: 992px) {
  .testimonio-card {
    flex: 0 0 calc(50% - 1rem);
  }

  .testimonios-left {
    left: 10px;
  }
  .testimonios-right {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .testimonio-card {
        flex: 0 0 95%;
  }

  .testimonios-track::-webkit-scrollbar {
    display: none; 
  }

  .testimonios-track::after {
    content: "";
    flex: 0 0 0; 
  }

  /* Flechas para MÓVIL (Testimonios) */
  .testimonios .scroll-btn {
    position: static;
    transform: none;
    margin: 25px 8px 0 8px;
    width: 42px;
    height: 42px;
    font-size: 1.4rem;
  }
  
  /* Wrapper de botones de testimonios */
  .testimonios .exclusivos-wrapper {
      flex-direction: row;
      transform: none;
  }

  .testimonios-wrapper {
    flex-direction: column;
  }
}

.testimonios-track {
  scroll-snap-type: x mandatory;
}

.testimonio-card {
  scroll-snap-align: start;
}
.testimonios-track {
  -webkit-overflow-scrolling: touch;
}

/* === Anti-bounce para flechas de carruseles === */
.scroll-btn{
  position: relative;      /* fija la referencia vertical */
  top: 0 !important;
  transform: none !important;
  transition: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent; /* iOS: sin parpadeo */
}

.scroll-btn:active,
.scroll-btn:focus,
.scroll-btn:hover{
  top: 0 !important;
  transform: none !important;     /* anula cualquier translateY(…) */
  box-shadow: none !important;    /* evita “hundirse” por sombras */
  outline: none;                   /* quita contorno por focus */
}

/* En móvil ya las tienes estáticas; reforzamos que no se muevan */
@media (max-width: 768px){
  .testimonios .scroll-btn,
  .apartamentos-lista .scroll-btn,
  .casas-lista .scroll-btn,
  .exclusivos .scroll-btn{
    position: static !important;
    top: 0 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* Boton ver mas*/




/* Iconos y meta (cards + modal) */
.card-meta,
.modal__meta{
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin: 10px 0 12px 0;
}

.meta{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f7f7f7;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 600;
  color: #374151;
}

.meta b{
  font-weight: 700;
  color: #2b2b2b;
}

.icon{
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: inline-block;
}

/* Variante de color suave para las cards (opcional) */
.apartamento-card .meta{
  background: #eee7d7;    /* dorado suave que ya vienes usando */
  color: #6b5b36;
}


/* Formulario-Contacto */

/* ===== Layout mínimo ===== */
.contacto-min{ padding:40px 16px; background:#f8f8f8; }
.contact-card{
  max-width:920px; margin:0 auto;
  background:#fff; border-radius:16px;
  padding:22px; box-shadow:0 12px 28px rgba(0,0,0,.08);
}

/* ===== Form ===== */
.grid{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.field-full{ grid-column:1 / -1; }

.field{ display:flex; flex-direction:column; gap:6px; }
.field span{ font-size:.9rem; color:#555; }
.field input, .field select, .field textarea{
  width:100%; border:1px solid #e6e0d4; border-radius:12px;
  padding:12px 14px; font:inherit; background:#fbfaf7;
  transition:border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:#a98b58; background:#fff;
  box-shadow:0 0 0 3px rgba(169,139,88,.15);
}

.check{ display:flex; align-items:center; gap:10px; }
.check input{ accent-color:#a98b58; }

.actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:6px; }
.btn-gold{
  background:#a98b58; color:#fff; border:none; border-radius:12px;
  padding:12px 20px; font-weight:700; cursor:pointer;
  box-shadow:0 10px 24px rgba(169,139,88,.28);
}
.btn-gold:hover{ filter:brightness(1.06); }
.btn-outline{
  background:#fff; color:#a98b58; border:2px solid #a98b58; border-radius:12px;
  padding:10px 18px; font-weight:700; cursor:pointer;
}

@media (max-width:900px){
  .grid{ grid-template-columns:1fr; }
}

.apt-modal {
  position: fixed; inset: 0;
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 9999;
}
.apt-modal.open { opacity: 1; visibility: visible; }

.apt-modal__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
}
.apt-modal__dialog {
  position: relative;
  width: min(950px, 94vw);
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transform: translateY(10px);
  transition: transform .25s ease;
}
.apt-modal.open .apt-modal__dialog { transform: translateY(0); }

.apt-modal__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
}
.apt-modal__media {
  background: #f7f7f7;
  position: relative;
  overflow: hidden;
}
.apt-modal__media img.main-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.apt-modal__thumbs {
  display: flex;
  gap: 8px;
  padding: 10px;
  justify-content: center;
  flex-wrap: wrap;
  background: #fff;
}
.apt-modal__thumbs img {
  width: 70px; height: 70px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}
.apt-modal__thumbs img:hover {
  filter: brightness(1.1);
  border-color: #ddd;
}
.apt-modal__thumbs img.active {
  border-color: #b9973e;
  box-shadow: 0 0 0 2px rgba(185,151,62,0.3);
}

.apt-modal__content {
  padding: clamp(20px, 2.5vw, 28px);
}
.apt-modal__content h3 {
  margin: 0 0 10px;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
}
.apt-modal__desc {
  margin-bottom: 16px;
  color: #555;
}
.apt-modal__features {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
}
.apt-feature {
  display: flex; align-items: center; gap: 8px;
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: .95rem;
}
.apt-feature img.icon {
  width: 20px; height: 20px; flex: 0 0 20px;
}
#aptModalCTA {
  text-align: center;
  margin-top: 15px;
  border-top: 1px solid #eee;
  padding-top: 12px;
}
.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}
.btn-wa:hover { filter: brightness(1.05); }

@media (max-width: 900px){
  .apt-modal__grid { grid-template-columns: 1fr; }
  .apt-modal__media img.main-img { height: 240px; }
  .apt-modal__thumbs { overflow-x: auto; justify-content: flex-start; }
}

/*MODAL GGEMINI*/
/* --- Estilos para la Galería de la Modal --- */

.apt-modal__media {
  /* Damos más espacio vertical a la galería en desktop */
  padding: 12px;
  background: #f3f4f6;
  align-self: start; /* Evita que se estire verticalmente */
}

.modal-gallery {
  display: grid;
  /* 3 columnas para las imágenes pequeñas */
  grid-template-columns: repeat(3, 1fr); 
  gap: 8px;
}

.modal-gallery img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  background: #e0e0e0; /* Color mientras cargan */
}

/* La 1ra imagen (principal) ocupa todo el ancho */
.modal-gallery img:first-child {
  grid-column: 1 / -1; /* Ocupa las 3 columnas */
  height: 280px; 
}

/* Las 3 imágenes pequeñas */
.modal-gallery img:not(:first-child) {
  height: 90px;
}

/* --- Responsive para Móvil --- */
@media (max-width: 900px) {
  /* En móvil, volvemos al diseño original de 1 sola imagen */
  .apt-modal__media {
    padding: 0;
  }
  
  .modal-gallery img:first-child {
    height: 230px; /* La altura que ya tenías */
    border-radius: 0;
  }
  
  /* Ocultamos las 3 imágenes pequeñas en móvil */
  .modal-gallery img:not(:first-child) {
    display: none;
  }
}

/*Footer*/

.footer {
  background: #f8f8f8;
  padding: 50px 10%;
  font-family: "Inter", sans-serif;
  color: #333;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
}

.footer-col p, .footer-col a {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  text-decoration: none;
}

.footer-col a:hover {
  color: #b9973e;
}

.perfil {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background: #b9973e;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #333;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 6px;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.footer-bottom img {
  height: 40px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: 0.3s;
}

.footer-bottom img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom {
    flex-wrap: wrap;
  }
}


/*Footer*/

.footer {
  background-color: #f8f8f8;
  font-family: "Inter", sans-serif;
  color: #333;
  padding: 50px 10%;
  align-items: center;
}

.footer-top {
  position: relative;
  margin-left: 320px;
  display: flex;
  gap: 110px;
  margin-bottom: 40px;
  align-items: center;
}

@media (max-width: 1200px) {
  .footer-top {
    margin-left: 150px; 
    gap: 70px;
  }
}

@media (max-width: 992px) {
  .footer-top {
    margin-left: 60px; 
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }
}



/* ===============================
   FIX: FOOTER CENTRADO EN MÓVIL
================================= */





@media (max-width: 768px) {
    
    

  .footer-top {
    margin-left: 0 !important;   /* Anula el margen de escritorio */
    flex-direction: column;      /* Apila todo */
    align-items: center;       /* CENTRA horizontalmente */
    gap: 25px;
    text-align: center;        /* CENTRA el texto */
    align-items: center; !important;
  }

  .contact-wrapper {
    display: flex;
    flex-direction: column !important;  
    align-items: center;       /* CENTRA la foto */
    justify-content: center;
    text-align: center;
    gap: 10px;
    width: 100%;
    /* No debe haber NINGÚN margin-left aquí */
  }

  .contact-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 8px;
    /* No debe haber NINGÚN margin-left aquí */
  }

  .contact-info {
    text-align: center !important;
    /* No debe haber NINGÚN margin-left aquí */
  }

  .contact-info h3 {
    margin-top: 10px;
  }

  .footer-follow, 
  .footer-links {
    width: 100%;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .footer-bottom {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .footer-bottom img {
    height: 30px;
  }
}



/* FOTO + TEXTO */
.contact-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.contact-info h3 {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 1.1rem;
}

.contact-info p {
  margin: 4px 0;
  font-size: 0.95rem;
  color: #555;
}

.contact-info a {
  color: #555;
  text-decoration: none;
}

.contact-info a:hover {
  color: #b9973e;
}

/* REDES */
.footer-follow h3,
.footer-links h3 {
  font-weight: 700;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  background: #b9973e;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: #333;
}

/* LINKS */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  text-decoration: none;
  color: #555;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #b9973e;
}

/* FRANJA INFERIOR */
.footer-bottom {
  border-top: 1px solid #ddd;
  padding-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.footer-bottom img {
  height: 40px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: 0.3s;
}

.footer-bottom img:hover {
  filter: none;
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-follow, .footer-links {
    margin-top: 20px;
  }
}
