* {
      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;
    }

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

/* Página de Produto */
.product-page {
  padding: 60px 10%;
  background: #FAFAFA;
}

.product-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.product-image img {
  max-width: 380px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.product-info {
  max-width: 550px;
}

.product-info h2 {
  font-size: 2.2rem;
  color: #0D0D0D;
  margin-bottom: 10px;
}

.product-info .tagline {
  font-size: 1rem;
  color: #888;
  margin-bottom: 15px;
}

.product-info .price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #C9A13C;
  margin-bottom: 20px;
}

.product-info .description {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #444;
}

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

.btn:hover {
  background: #a8842e;
}

.btn-secondary {
  background: #555;
  margin-left: 15px;
}

.btn-secondary:hover {
  background: #333;
}

.actions {
  margin-bottom: 30px;
}

.social {
  margin-top: 30px;
  margin-bottom: 50px;
}

.social span {
  margin-right: 10px;
  font-weight: bold;
}

.social img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  vertical-align: middle;
}

.social a:nth-of-type(2) img{
  width: 34px;
  height: 34px;
}

.whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #25D366; /* Cor do WhatsApp */
  color: white !important;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none !important;
  font-size: 16px;
  font-weight: bold;
  width: fit-content;
  gap: 12px;
  transition: background-color 0.3s ease;
  margin-bottom: 15px;
}

.whatsapp-button:hover {
  background-color: #1ebe5b;
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
}

/* Detalhes do produto */

.product-details{
  margin-top: -50px;
  margin-left: 50px;
}

.product-details h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #0D0D0D;
}

.product-details ul {
  list-style: none;
}

.product-details li {
  margin: 8px 0;
  color: #555;
}

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

    .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;
    }

    .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:hover{
      transform: translateY(-5px);
    }

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

    /* ======== 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 {
      flex: 0 0 250px;
      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;
    }

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

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

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

/* 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;
}

.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;
}

/* 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;
  }
}

/* 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;
  }
}

/* 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;
  }
}