* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background:
    radial-gradient(circle at top left, rgba(250, 204, 21, 0.06), transparent 25%),
    radial-gradient(circle at bottom right, rgba(250, 204, 21, 0.04), transparent 30%),
    #0f0f10;

  color: white;
}

a {
  text-decoration: none;
}

.container {
  width: 92%;
  max-width: 1450px;
  margin: auto;
}

/* HEADER */

header {
  background: rgba(21, 21, 24, 0.88);
  border-bottom: 1px solid rgba(250, 204, 21, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);

  box-shadow:
    0 6px 30px rgba(0, 0, 0, 0.35);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  flex-wrap: wrap;
}

.logo h1 {
  color: #facc15;
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;

  text-shadow:
    0 0 18px rgba(250, 204, 21, 0.15);
}

.logo p {
  color: #a1a1aa;
  font-size: 0.88rem;
  margin-top: 5px;
}

/* SEARCH */

.search-box {
  flex: 1;
  max-width: 760px;

  display: flex;

  background:
    linear-gradient(145deg, #1b1b20, #18181b);

  border: 1px solid rgba(250, 204, 21, 0.08);

  border-radius: 16px;

  overflow: hidden;

  height: 54px;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.search-box input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: white;
  padding: 0 18px;
  font-size: 0.96rem;
}

.search-box input::placeholder {
  color: #71717a;
}

.search-box button {
  background:
    linear-gradient(135deg, #facc15 0%, #fde047 100%);

  color: black;
  border: none;
  width: 130px;

  font-weight: 700;
  cursor: pointer;
  transition: 0.25s;

  font-size: 0.9rem;
}

.search-box button:hover {
  filter: brightness(1.05);
}

/* SECTION */

.products {
  padding: 55px 0;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 36px;
  font-weight: 900;
  color: white;
  position: relative;
}

.section-title::after {
  content: "";

  width: 70px;
  height: 4px;

  background: #facc15;

  position: absolute;
  left: 0;
  bottom: -10px;

  border-radius: 999px;
}

/* GRID */

.product-grid {
  display: grid;

  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));

  gap: 20px;
}

/* CARD */

.product-card {
  background:
    linear-gradient(180deg, #1b1b1f 0%, #16161a 100%);

  border: 1px solid rgba(250, 204, 21, 0.10);

  border-radius: 20px;

  overflow: hidden;

  display: flex;
  flex-direction: column;

  height: 100%;

  transition: 0.35s ease;

  position: relative;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.32),
    0 0 0 rgba(250, 204, 21, 0);
}

.product-card:hover {
  transform: translateY(-5px);

  border-color: rgba(250, 204, 21, 0.28);

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.42),
    0 0 16px rgba(250, 204, 21, 0.10);
}

/* IMAGE */

.product-card img {
  width: 100%;

  height: 220px;

  object-fit: contain;

  background:
    linear-gradient(180deg, #f3f4f6 0%, #e5e7eb 100%);

  padding: 18px;

  transition: transform 0.35s ease;

  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card:hover img {
  transform: scale(1.04);
}

/* INFO */

.product-info {
  padding: 18px;

  display: flex;
  flex-direction: column;

  flex: 1;
}

.product-info h3 {
  font-size: 0.9rem;

  margin-bottom: 12px;

  color: #f4f4f5;

  font-weight: 500;

  line-height: 1.45;

  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  overflow: hidden;

  min-height: 48px;
}

/* PRICE */

.price {
  color: #facc15;

  font-size: 1.6rem;

  font-weight: 800;

  margin-bottom: 16px;

  text-shadow:
    0 0 10px rgba(250, 204, 21, 0.15);
}

/* BUTTON */

.offer-btn {
  margin-top: auto;

  display: block;

  text-align: center;

  background:
    linear-gradient(135deg, #facc15 0%, #fde047 100%);

  color: #000;

  padding: 13px;

  border-radius: 12px;

  font-weight: 700;

  transition: 0.25s ease;

  font-size: 0.88rem;

  box-shadow:
    0 8px 18px rgba(250, 204, 21, 0.18);
}

.offer-btn:hover {
  transform: translateY(-2px) scale(1.02);

  box-shadow:
    0 12px 25px rgba(250, 204, 21, 0.28);
}

/* RESPONSIVO */

/* RESPONSIVO */

@media(max-width: 768px) {

  .header-content {
    flex-direction: column;
    align-items: stretch;
  }

  .search-box {
    max-width: 100%;
    height: 50px;
  }

  .search-box input {
    font-size: 0.9rem;
    padding: 0 14px;
  }

  .search-box button {
    width: 110px;
    font-size: 0.82rem;
  }

  .logo {
    text-align: center;
  }

  .logo h1 {
    font-size: 1.9rem;
  }

  .logo p {
    font-size: 0.8rem;
  }

  /* 2 PRODUTOS POR LINHA */

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* CARD */

  .product-card {
    border-radius: 16px;
  }

  /* IMAGEM */

  .product-card img {
    height: 150px;
    padding: 12px;
  }

  /* INFO */

  .product-info {
    padding: 12px;
  }

  .product-info h3 {
    font-size: 0.78rem;
    line-height: 1.35;

    min-height: 42px;

    margin-bottom: 10px;
  }

  /* PREÇO */

  .price {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  /* BOTÃO */

  .offer-btn {
    padding: 10px;
    font-size: 0.78rem;
    border-radius: 10px;
  }

  .section-title {
    font-size: 1.5rem;
  }

 
/* =========================
   BOTÃO CARREGAR MAIS
========================= */



.load-more-wrapper .offer-btn{
    padding: 10px 22px;
    font-size: 14px;
}

.load-more-btn{
    all: unset;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(180deg, #ffe24a 0%, #f7d420 100%) !important;

    color: #000 !important;

    padding: 16px 38px !important;

    border-radius: 18px !important;

    font-size: 16px !important;

    font-weight: 700 !important;

    cursor: pointer;

    font-family: inherit;

    box-shadow:
        0 6px 18px rgba(255, 217, 0, 0.25),
        inset 0 1px 0 rgba(255,255,255,0.4);

    transition: all 0.25s ease;

    border: none !important;
}

.load-more-btn:hover{
    transform: translateY(-2px) scale(1.03);

    box-shadow:
        0 10px 24px rgba(255, 217, 0, 0.35),
        inset 0 1px 0 rgba(255,255,255,0.5);
}

.load-more-btn:active{
    transform: scale(0.98);
}

.load-more-wrapper .offer-btn{
    margin-top: 30px;
}
}