/* =====================================================
   BOTONES FLOTANTES
===================================================== */
.botones-flotantes {
  position: fixed;
  right: 18px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.btn-flotante {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 26px;
  color: white;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.btn-flotante:hover {
  transform: translateY(-3px) scale(1.06);
  color: white;
  text-decoration: none;
}

/* WHATSAPP */
.btn-wsp-float {
  background: linear-gradient(135deg, #25d366, #128c2a);
}

/* GMAIL */
.btn-gmail-float {
  background: linear-gradient(135deg, #d6a106, #b98600);
}

/* =====================================================
   FOOTER GENERAL
===================================================== */
footer {
  font-size: 1rem;
}

footer h6 {
  letter-spacing: 0.5px;
}

footer p {
  line-height: 1.6;
}

footer a {
  text-decoration: none;
  transition: 0.3s ease;
}

footer a:hover {
  color: #ffc107 !important;
}

footer .fab,
footer .fas {
  margin-right: 8px;
}

/* =====================================================
   TABLET Y CELULAR
===================================================== */
@media (max-width: 768px) {

  /* BOTONES */
  .botones-flotantes {
    right: 14px;
    bottom: 16px;
    gap: 12px;
  }

  .btn-flotante {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  /* FOOTER */
  footer {
    font-size: 0.9rem;
    text-align: center;
  }

  footer section.d-flex {
    padding: 16px 12px !important;
  }

  footer .container {
    margin-top: 25px !important;
    padding-left: 20px;
    padding-right: 20px;
  }

  footer .row {
    margin-top: 0 !important;
  }

  footer h6 {
    font-size: 0.9rem;
    margin-bottom: 14px !important;
  }

  footer p {
    font-size: 0.85rem;
    margin-bottom: 8px;
    line-height: 1.5;
  }

  footer a {
    font-size: 0.85rem;
  }

  footer .col-md-3,
  footer .col-md-2,
  footer .col-md-4,
  footer .col-lg-4,
  footer .col-lg-3,
  footer .col-lg-2 {
    margin-bottom: 24px !important;
  }

  footer .fab,
  footer .fas {
    font-size: 0.95rem;
    margin-right: 6px;
  }

  footer .text-center.p-4 {
    padding: 14px 12px !important;
    font-size: 0.78rem;
    line-height: 1.4;
  }
}

/* =====================================================
   CELULARES PEQUEÑOS
===================================================== */
@media (max-width: 480px) {

  /* BOTONES */
  .botones-flotantes {
    right: 12px;
    bottom: 14px;
    gap: 10px;
  }

  .btn-flotante {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  /* FOOTER */
  footer {
    text-align: center;
  }

  footer .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  footer h6 {
    font-size: 0.82rem;
  }

  footer p,
  footer a {
    font-size: 0.8rem;
  }

  footer .text-center.p-4 {
    font-size: 0.72rem;
    padding: 12px 10px !important;
  }

  footer section.d-flex {
    flex-direction: column;
    gap: 10px;
  }
}