/* categorias */
.cat-scroll {
  scrollbar-width: none;
}

.cat-scroll::-webkit-scrollbar {
  display: none;
}

.cat-item {
  min-width: 110px;
  width: 110px;
  flex: 0 0 auto;
}

.cat-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  transition: transform .2s;
}

.cat-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-item:hover .cat-icon {
  transform: scale(1.08);
}

.cat-label {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
}

@media (min-width: 768px) {
  .cat-icon {
    width: 80px;
    height: 80px;
  }
}

/* banners home */
.banner-wrap {
  border-radius: 14px;
  overflow: hidden;
  background: #e9edf2;
  box-shadow: 0 2px 12px rgba(30, 50, 80, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.banner-wrap:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 50, 80, .12);
}

.banner-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* carrosséis home */
.listing-scroll-wrap:hover .scroll-btn {
  display: flex;
}

.listing-scroll {
  display: grid;
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
  grid-auto-columns: calc(50% - 6px);
}

.listing-scroll::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .listing-scroll {
    grid-auto-columns: calc(16.666% - 10px);
  }
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

.scroll-btn.left {
  left: -12px;
}

.scroll-btn.right {
  right: -12px;
}

.scroll-btn svg {
  width: 18px;
  height: 18px;
  color: #333;
}

/* blog home */
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(30, 50, 80, .06);
  transition: all .3s;
  cursor: pointer;
}

.blog-card:hover {
  box-shadow: 0 8px 24px rgba(30, 50, 80, .12);
  transform: translateY(-4px);
}

.blog-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-body {
  padding: 16px;
}

.blog-body h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-body p {
  font-size: 12px;
  color: #737373;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* cta home */
.cta-marketplace {
  background: linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%);
  border-color: #e8edf3 !important;
}

.cta-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #1f2937;
}

.cta-benefits li {
  font-size: 1rem;
  font-weight: 500;
  color: #334155;
}

.cta-btn {
  background-color: #FF7A00;
  border-color: #FF7A00;
  color: #fff;
}

.cta-btn:hover,
.cta-btn:focus {
  background-color: #e56e00;
  border-color: #e56e00;
  color: #fff;
}

.cta-image {
  max-width: 420px;
  width: 100%;
}