/* =====================
   FOOTER
===================== */

.footer {
  background: #15122b; /* azul corporativo oscuro */
  color: #ffffff;
  text-align: center;
  padding: 3rem 1rem;
}

/* Teléfono principal */
.footer .phone {
  font-size: 2rem;          /* más protagonista */
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #0aa0d6;           /* azul corporativo */
}

/* Acciones */
.footer-actions {
  margin: 1.5rem 0;
}

/* Botones */
.footer .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  margin: 0.4rem;
  padding: 0.7rem 1.6rem;

  background: #0a4d7a;      /* azul corporativo */
  color: #ffffff;

  border-radius: 999px;     /* redondeado elegante */
  font-size: 0.95rem;
  font-weight: 500;

  transition: 
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

/* Hover: sensación de acción */
.footer .btn:hover {
  background: #0aa0d6;      /* azul más vivo */
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

/* Texto final */
.footer p {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #e0e0e0;
}
/* Eslogan del footer */
.footer p {
  margin-top: 2rem;
  font-size: 1.05rem;      /* más grande */
  font-weight: 500;        /* más presencia */
  color: #ffffff;
  opacity: 0.9;
}


/* =====================
   WHATSAPP FLOTANTE
===================== */

.whatsapp-float {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 1000;
}

.whatsapp-float img {
  width: 48px;
  height: 48px;
}
