/* =========================================================
   FOOTER NEOHOGAR (5 cols + acorde���n m���vil)
   ========================================================= */

.footer-neohogar{
  background:  #7fcbbd;
  color: rgba(255,255,255,.92);
  font-family: "Poppins", sans-serif;
  padding: 3.2rem 0 1.4rem;
}

.footer-neohogar a{
  color: rgba(255,255,255,.88);
  text-decoration: none;
}

.footer-neohogar a:hover{ color: #ffffff; }


.footer-container{
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1.2fr;
  gap: 2.2rem;
  align-items: start;
}

/* Columna logo */
.footer-logo img{
  max-width: 190px;
  height: auto;
  display:block;
}

.footer-block{ margin-top: 1.5rem; }

.footer-neohogar h4,
.footer-neohogar summary{
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin: 0 0 .75rem;
}

.footer-small{
  margin: 0 0 .6rem;
  opacity: .85;
  font-size: .95rem;
}

.footer-phone a{
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: .02em;
}

.footer-list{
  list-style:none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .65rem;
}

.footer-list a{
  font-size: 1rem;
  opacity: .9;
}

/* DETAILS accordion */
.footer-acc{
  border: none;
}

.footer-acc summary{
  list-style: none;
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer-acc summary::-webkit-details-marker{ display:none; }

.footer-plus{
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.9);
  font-size: 20px;
  line-height: 1;
  transition: transform .2s ease, background .2s ease;
}

.footer-acc[open] .footer-plus{
  transform: rotate(45deg); /* + -> x */
  background: rgba(255,255,255,.06);
}

.footer-panel{
  padding-top: 1rem;
}

/* Pagos */
.footer-payments{ margin-top: 1.4rem; }
.footer-payments h5{
  margin: 0 0 .8rem;
  font-size: 1.05rem;
  color: #fff;
  font-weight: 700;
}

.footer-payments-grid{
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.pay{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: .45rem .6rem;
  display:flex;
  align-items:center;
  justify-content:center;
}

.pay img{
  height: 18px;
  width: auto;
  display:block;
}

.pay--text{
  font-size: .9rem;
  opacity: .9;
}

/* Bottom bar */
.footer-bottom{
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copy{
  margin: 0;
  font-size: .95rem;
  opacity: .85;
}

.footer-social{
  display:flex;
  gap: .8rem;
}

.footer-social a{
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  color: #fff;
  font-size: 18px;
}

.footer-social a:hover{
  background: rgba(255,255,255,.14);
  color: #7dd2c3;
}

/* =========================
   RESPONSIVE
   ========================= */

/* tablet */
@media (max-width: 1100px){
  .footer-grid{
    grid-template-columns: 1fr 1fr;
  }
}

/* m���vil (acorde���n real) */
@media (max-width: 700px){
  .footer-container{ padding: 0 1.25rem; }
  .footer-grid{ grid-template-columns: 1fr; }

  .footer-phone a{ font-size: 1.6rem; }

  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
  }
}
