/* ================================
   BOTONES HERO – DAR RENT SALE
================================ */

/* wrapper: clave para que NO los tape el hero */

.dar-cats-wrap{
  position: relative;
  z-index: 5;
  pointer-events: auto;

  margin-top: 32px;    /* ⬆️ lo baja más */
  margin-bottom: 12px; /* ⬇️ separa del contenido de abajo */
}

/* contenedor botones */
.dar-cats{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: nowrap;
}

/* botón base */
.dar-cats .cat{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-width: 180px;
  height: 56px;
  padding: 0 22px;

  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;

  box-shadow: 0 10px 26px rgba(0,0,0,.18);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s;
  pointer-events: auto;
}

/* hover */
.dar-cats .cat:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,0,0,.25);
  opacity: .95;
}

/* ================================
   COLORES EXACTOS (como la foto)
================================ */

/* En vente */
.dar-cats .cat[href*="vente"]{
  background: #1b5a6a;
  color: #fff;
}

/* A louer */
.dar-cats .cat[href*="louer"]{
  background: #f1d089;
  color: #1b1b1b;
}

/* WhatsApp */
.dar-cats .cat-whatsapp{
  background: #25d366;
  color: #fff;
}

/* ================================
   ICONOS
================================ */
.dar-cats .ico{
  display: flex;
  align-items: center;
  font-size: 16px;
}

/* ================================
   MOBILE
================================ */
@media (max-width: 768px){
  .dar-cats{
    gap: 10px;
  }

  .dar-cats .cat{
    min-width: 110px;
    height: 46px;
    font-size: 13px;
    padding: 0 14px;
  }
}
