/* =========================
   ANIMACIONES
========================= */

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 12px rgba(255, 200, 0, 0.6);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 200, 0, 1);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 12px rgba(255, 200, 0, 0.6);
  }
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* =========================
   BOTONES MOBILE (80/20)
========================= */

.mobile-actions {
  display: flex;
  gap: 10px;
}

/* BOTÓN PUBLICAR */
.btn-publicar-mobile {
  flex: 8;
  position: relative;
  display: inline-block;
  padding: 12px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffd84d, #ffb800);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 4px 0 #e88a09, 0 0 20px rgba(255, 200, 0, 0.7);
  animation: pulse 1.8s infinite;
  transition: all 0.2s ease;
}

.btn-publicar-mobile:hover {
  transform: translateY(-2px) scale(1.03);
}

.btn-publicar-mobile span:first-child {
  position: relative;
  z-index: 2;
}

/* EFECTO BRILLO */
.btn-publicar-mobile .shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.6),
    transparent 70%
  );
  animation: shine 2.5s infinite;
}

/* BOTÓN BUSCAR */
.btn-buscar-mobile {
  flex: 2;
  background: #cdcfd1;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.btn-buscar-mobile:hover {
  background: #e9ecef;
}

/* =========================
   NAVBAR
========================= */

.navbar .nav-link {
  transition: all 0.2s ease;
}

.navbar .nav-link:hover {
  color: #ff6b00 !important;
}

.dropdown-menu {
  border-radius: 14px;
}

/* - - - - - - Buscador - - - - - */

  .search-rappi {
      display: flex;
      align-items: center;
      background: #f5f5f5;
      border-radius: 999px;
      padding: 4px 6px 4px 14px;
      transition: all 0.2s ease;
  }

  .search-rappi input {
      border: none;
      background: transparent;
      outline: none;
      font-size: 14px;
      width: 280px;
  }

  .search-rappi button {
      border: none;
      color: #fff;
      border-radius: 50%;
      width: 28px;
      height: 28px;
      font-size: 13px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.2s;
  }

  .search-rappi button:hover {
      background: #333;
  }

  .search-rappi:focus-within {
      background: #ececec;
      box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
  }