/* =========================
   FOOTER GLOBAL (STYLE FIX - PINK BRAND)
========================= */

.footer {
  background: #ffffff;
  padding: 10px 0 10px 0;
  font-family: Arial, sans-serif;
  line-height: normal;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: rgba(196, 107, 107, 0.18);
}

/* CONTENEDOR PRINCIPAL */
.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr 1fr 1.25fr;
  gap: 15px;
  padding: 0 10px;
  align-items: start;
}

/* =========================
   SEPARADORES ENTRE COLUMNAS
========================= */

.footer-block {
  position: relative;
  padding-right: 14px;
}

.footer-block:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 8px;
  width: 1px;
  height: calc(100% - 20px);
  background: rgba(196, 107, 107, 0.18);
}

/* LOGO */
.footer-logo {
  width: 100%;
  max-width: 170px;
  height: auto;
  display: block;
}

.footer-tagline {
  font-size: 13px;
  color: #777;
  line-height: 1.4;
}

/* TITULOS */
.footer-col h4 {
  font-size: 11px;
  text-transform: uppercase;
  color: #c46b6b;
  margin-top: revert;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.newsletter h4 {
  margin-bottom: 10px;
}

/* LISTAS */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 9px;
  font-size: 11px;
  color: #666;
}

.footer-col ul li a {
  text-decoration: none;
  color: #666;
}

.footer-col ul li a:hover {
  color: #c46b6b;
}

/* NEWSLETTER */
.newsletter p {
  font-size: 11px;
  color: #666;
  line-height: 1.3;
  margin: 0 0 6px 0;
}

.newsletter input {
  width: 100%;
  height: 30px;
  padding: 0 10px;
  border: 1px solid #ddd;
  margin-bottom: 4px;
  font-size: 11px;
  box-sizing: border-box;
}

.newsletter button {
  width: 100%;
  height: 30px;
  padding: 0;
  background: #c46b6b;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  box-sizing: border-box;
}

/* COPYRIGHT (UNA SOLA LÍNEA) */
.footer-bottom {
  text-align: center;
  margin-top: 4px;
  font-size: 11px;
  color: #888;
  padding-top: 2px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom span {
  margin: 0 6px;
  color: #c46b6b;
}

/* ICONOS FOOTER */
.footer-col i {
  color: #c46b6b;
  font-size: 16px;
  margin-right: 6px;
  vertical-align: middle;
}

/* =========================
   RESPONSIVE FOOTER
========================= */

@media (max-width: 900px) {

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .footer-block::after {
    display: none;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {

  .footer {
    padding: 32px 0 26px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 14px;
  }

  .footer-brand {
    display: none;
  }

  .footer-block {
    padding-right: 0;
    margin-bottom: 22px;
  }

  .footer-block::after {
    display: none;
  }

  .footer-col {
    grid-column: auto;
  }

  .footer-col h4 {
    margin-top: 0;
    margin-bottom: 11px;
  }

  .footer-col ul li {
    margin-bottom: 8px;
    font-size: 10px;
}

.footer-col ul li:last-child {
    margin-bottom: 0;
}

  .newsletter {
    display: none;
  }

  .footer-bottom {
    margin-top: 2px;
    padding-top: 4px;
    font-size: 10px;
    line-height: 1.55;
}
}