* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
      background-color: #fff;
      color: #222;
    }

    /* Cabeçalho */
    header {
      background: #0D0D0D;
      color: #C9A13C;
      padding: 20px 5%;
      position: relative;
    }

    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      width: 100%;
    }

    header a{
      text-decoration: none;
      color: #C9A13C;
    }

    header h1 {
      text-decoration: none;
      font-size: 1.8rem;
      font-weight: bold;
      color: #C9A13C;
    }

    .header-right{
      display: flex;
      gap: 20px;
    }

    .header-right a {
      color: #F5F5F5;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      transition: color 0.3s;
    }

    .header-right a:hover {
      color: #C9A13C;
    }

    nav {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-grow : 1;
      text-align: center;
    }

    nav a {
      text-decoration: none;
      color: #F5F5F5;
      font-size: 1rem;
      font-weight: 500;
      transition: color 0.3s;
    }

    nav a:hover {
      color: #C9A13C;
    }

    /* Hero */
    .hero {
      background: #0D0D0D;
      color: #F5F5F5;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 50px 10%;
      flex-wrap: wrap;
    }

    .hero-text h2 {
      font-size: 1.2rem;
      font-weight: 400;
      margin-bottom: 10px;
    }

    .hero-text h1 {
      font-size: 3rem;
      color: #C9A13C;
      margin-bottom: 20px;
    }

    .hero-text p {
      font-size: 1rem;
      margin-bottom: 20px;
      color: #ccc;
    }

    .btn {
      display: inline-block;
      padding: 12px 25px;
      background: #C9A13C;
      color: #fff;
      text-decoration: none;
      font-weight: bold;
      border-radius: 10px;
      transition: background 0.3s ease;
    }

    .btn:hover {
      background: #a8842e;
    }

    .hero img {
      max-width: 300px;
    }

    .social-button {
      display: flex;
      align-items: center;
      width: 300px !important;
      justify-content: space-between;
      background-color: #C9A13C;
      color: white !important;
      padding: 12px 18px;
      border-radius: 8px;
      text-decoration: none !important;
      font-size: 16px;
      font-weight: bold;
      gap: 12px;
      transition: background-color 0.3s ease;
      margin-bottom: 15px;
    }

    .social-button-icon{
      width: 32px;
      height: 32px;
    }

    .section {
      padding: 60px 10%;
      text-align: center;
      background: #FAFAFA;
    }

    .section h1 {
      font-size: 18px;
      margin-bottom: 15px;
      color: #0D0D0D;
    }

    .section h2 {
      font-size: 2rem;
      margin-bottom: 15px;
      color: #0D0D0D;
    }

    .section h1 {
      color: #555;
      margin-bottom: 40px;
    }

    .products {
      display: flex;
      gap: 20px;
      padding: 10px 20px;
    }

    /* ======== CARROSSEL DE PRODUTOS ======== */
    .carousel-container {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      overflow: hidden;
      margin-top: 20px;
    }

    .carousel {
      overflow-x: auto;
      scroll-behavior: smooth;
      width: 90%;
      padding: 10px;
    }

    .carousel::-webkit-scrollbar {
      display: none;
    }

    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: linear-gradient(145deg, #C9A13C, #a8842f);
      color: white;
      border: none;
      font-size: 22px;
      cursor: pointer;
      border-radius: 10px;
      width: 45px;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.25);
      transition: all 0.3s ease;
    }

    .arrow:hover {
      background: linear-gradient(145deg, #dcb84a, #b89232);
      transform: translateY(-50%) scale(1.1);
    }

    .arrow.left {
      left: 10px;
    }

    .arrow.right {
      right: 10px;
    }

    /* Produtos individuais dentro do carrossel */
    .product {
      background: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s;
      width: 259px;
    }

    .product p{
      margin-bottom: 20px;
    }

    .product .nome{
      min-height: 3em;
    }

    .product:hover{
      transform: translateY(-5px);
    }

    .product img {
      width: auto;
      max-height: 199px;
      margin-bottom: 15px;
    }

    .price{
      font-size: 1.2rem;
      font-weight: bold;
      color: #555;
    }

    .catalog{
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 20px;
      margin-top: 20px;
      align-items: start;
    }

    .catalog-item{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: auto;
      text-align: center;
      padding: 15px;
      border-radius: 10px;
      background:#fff;
      box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.2s ease;
    }

    .catalog-item:hover{
      transform: translateY(-5px);
    }

    .catalog-item img{
      width: 100%;
      max-width: 180px;
      height: auto;
      border-radius: 8px;
      object-fit: contain;
      margin-bottom: 10px;
    }

    .catalog-item .nome{
      min-height: 3em;
    }

    .catalog-item .price{
      font-size: 1.1rem;
      font-weight: bold;
      color: #555;
    }

    .catalog-item .btn{
      margin-top: 10px;
    }

    /* Paginação */
    .pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 20px;
      gap: 10px;
      margin-bottom: 40px;
    }

    .pagination a {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 40px;
      height: 40px;
      background: #fff;
      color: #0D0D0D;
      font-weight: bold;
      text-decoration: none;
      border-radius: 8px;
      box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }

    .pagination a:hover {
      background: #c9a13cc4;
      color: #fff;
    }

    .pagination .prev,
    .pagination .next {
      font-size: 1.2rem;
    }

    .pagination a.active {
      background: #aaaaaa;
      color: #fff;
      pointer-events: none;
    }

    /* Rodapé */

footer {
  background-color: #0D0D0D;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  font-size: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.footer-left {
  flex: 1;
  text-align: left;
}

.footer-center{
  flex: 1;
  display: flex;
  gap: 10px;
}

.footer-center p{
  margin-top: 2px;
}

.footer-center img{
  width: 24px;
  height: 24px;
}

.footer-right img {
  width: 24px;
  height: 24px;
}

.footer-right span{
  margin-bottom: 4px;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.contato-label {
  font-weight: bold;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons img {
  width: 24px;
  height: 24px;
}

/* Menu mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle div {
  width: 28px;
  height: 3px;
  background-color: #C9A13C;
  border-radius: 5px;
}

/* Slider mobile */
@media (max-width: 768px) {

  .product .nome{
    min-height: 4em;
  }
  
  .carousel-container .arrow.left {
    display: none !important;
  }

  .carousel-container .arrow.right {
    display: none !important;
  }

  .carousel .products {
    gap: 12px;
  }

  /* garante que o produto não sobreponha */
  .carousel .product {
    width: 200px;       /* largura boa para celular */
    min-width: 200px;
    flex: 0 0 200px;
  }

  .product img {
    width: 100%;
    height: auto;
  }
}

/* Versão responsiva */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: #0D0D0D;
    width: 100%;
    padding: 20px 0;
    position: absolute;
    top: 70px;
    left: 0;
  }

  nav a {
    padding: 12px 0;
    display: block;
    font-size: 1.2rem;
  }

  nav.active {
    display: flex;
  }

  .header-right {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  /* HERO responsivo */
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero img {
    max-width: 230px;
    margin-top: 20px;
  }

  .social-button{
    height: 55px;
  }

  .social-button-icon{
    margin-bottom: 20px;
  }

  /* Produtos 2 por linha */
  .catalog {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-item .nome{
    min-height: 4em;
  }

  .product {
    width: 200px;
  }

  .carousel .products {
    gap: 10px;
  }
}

/* Rodapé responsivo */

@media (max-width: 768px) {
  footer {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 25px 15px;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    flex: none;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .footer-center {
    flex-direction: column;
    align-items: center;
  }

  .footer-center .ref {
    display: flex;
    gap: 12px;
    justify-content: center;
  }

  .footer-right {
    flex-direction: column;
    gap: 10px;
  }

  .social-icons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .social-icons img {
    width: 28px;
    height: 28px;
  }

  .footer-center img,
  .footer-right img {
    width: 28px;
    height: 28px;
  }
}