@charset "UTF-8";

/* ============================================
   MOTOS MORA — responsive.css
   ============================================ */

@media (max-width: 960px) {
  .nav-links, .btn-nav { display: none !important; }
  .hamburger { display: flex !important; }
  
  .quick-actions { grid-template-columns: 1fr !important; }
  .qa-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.1); }
  
  .noticias-grid { grid-template-columns: 1fr !important; }
  .servicios-grid { grid-template-columns: 1fr !important; }
  
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
  
  .dist-side { display: none !important; }
  .contacto-grid { grid-template-columns: 1fr !important; }
  
  .cat-grid { grid-template-columns: repeat(2, 1fr) !important; }
  
  .type-grid { justify-content: flex-start !important; }
}

@media (max-width: 600px) {
  .slide-btns { flex-direction: column !important; }
  .btn-hero, .btn-hero-ghost { text-align: center; }
  
  .dist-stats { gap: 24px !important; }
  .v-specs { gap: 14px !important; }
  
  .cat-grid { grid-template-columns: 1fr !important; }
  .search-bar-wrap { flex-direction: column !important; }
  .search-btn { width: 100% !important; }
}

/* ============================================
   BOTÓN FLOTANTE DE WHATSAPP
   ============================================ */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25D366; /* Verde oficial de WhatsApp */
  color: #FFF;
  border-radius: 50px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px; /* Tamaño del logo */
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1); /* Efecto de crecimiento al pasar el mouse */
  color: #FFF;
  box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.25);
}
