/* ==========================================================================
   Footer - Capa de modernizacion (global)
   Se carga en todo el front. Selectores acotados a .footer / .copyRight /
   .float. Mantiene el naranja de marca.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Roboto:wght@400;500;700&display=swap');

.footer,
.copyRight {
  --m-primary: var(--primary, #ff6123);
}

/* --------------------------------------------------------------------------
   Footer principal
   -------------------------------------------------------------------------- */
.footer.version2 {
  background-color: #0d0d0d;
  border-top: 4px solid var(--m-primary);
  padding: 46px 0 40px;
  font-family: 'Roboto', Arial, sans-serif;
}

.footer .footerLink h5 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  padding-bottom: 10px;
  position: relative;
}

.footer .footerLink h5:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 3px;
  border-radius: 3px;
  background: var(--m-primary);
}

@media (max-width: 767px) {
  .footer .footerLink h5:after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.footer.version2 .footerLink ul li,
.footer.version2 .footerLink ul li a {
  color: #b6b6b6;
  font-size: 13px;
  line-height: 26px;
  transition: color 0.2s ease;
}

.footer.version2 .footerLink ul li a:hover {
  color: var(--m-primary);
}

/* Iconos de contacto (whatsapp / mail) en naranja */
.footer .footerLink ul.list-unstyled li .fa {
  color: var(--m-primary);
  width: 18px;
  text-align: center;
  margin-right: 4px;
}

/* Redes sociales como botones circulares (consistente con el header) */
.footer .footerLink .list-inline {
  margin-top: 20px;
}

.footer .footerLink .list-inline li {
  padding-left: 0;
  padding-right: 8px;
}

.footer.version2 .footerLink .list-inline li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 16px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer.version2 .footerLink .list-inline li a:hover {
  background: var(--m-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Barra de copyright
   -------------------------------------------------------------------------- */
.copyRight.version2 {
  background-color: #070707;
}

.copyRight.version2 p {
  color: #8f8f8f;
  font-size: 13px;
}

.copyRight.version2 p a {
  color: #c9c9c9;
  transition: color 0.2s ease;
}

.copyRight.version2 p a:hover {
  color: var(--m-primary);
}

/* --------------------------------------------------------------------------
   Boton flotante de WhatsApp
   -------------------------------------------------------------------------- */
.float {
  width: 58px;
  height: 58px;
  bottom: 28px;
  right: 28px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.55);
  color: #fff;
}

.float .my-float {
  margin-top: 0;
  font-size: 30px;
}
