@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #131313;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.navbar.scrolled {
  background: #131313b4; /* nova cor */
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}


.navbar-container {
  max-width: 1300px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.logo img {
  height: 80px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu a,
.dropdown-toggle {
  font-size: 147x;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}

.nav-menu a::after,
.dropdown-toggle::after {
  content: '';
  width: 0;
  height: 2px;
  background: #ffae00; /* dourado */
  position: absolute;
  bottom: -6px;
  left: 0;
  transition: 0.3s;
}

.nav-menu a:hover::after,
.dropdown-toggle:hover::after {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%; /* NUNCA use 140% */
  left: 0;
  margin-top: 12px; /* espaço visual */
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
  gap: 10px;
  min-width: 250px;
  z-index: 999;
}

.dropdown-menu a {
  color: #131313; /* dourado, por exemplo */
}


/* Área invisível para manter o hover */
.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
}

/* Hover correto */
.dropdown:hover .dropdown-menu {
  display: flex;
}


.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.arrow {
  width: 6px;
  height: 6px;
  border-right: 2px solid #ffd900;
  border-bottom: 2px solid #ffd900;
  transform: rotate(45deg);
  margin-top: -2px;
  transition: transform 0.3s ease;
}

/* Animação da seta */
.dropdown:hover .arrow {
  transform: rotate(-135deg);
}


.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #000;
}

@media (max-width: 900px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    display: none;
  }

    .nav-menu a{
   color: #131313;
  }

  .nav-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    padding: 10px 0;
  }
  .dropdown-toggle{
    color: #131313;
  }
  .menu-toggle span {
    background: #ffffff;
}
}






.carousel-section {
  width: 100%;
  margin: 0;
  padding: 0;
}

.carousel {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
}

/* Slides */
.carousel-slide {
  min-width: 100%;
  height: 700px;
  display: flex;
  align-items: center;
  position: relative;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 0 8%;
  color: #fff;
}

/* Overlay para leitura */
.carousel-slide .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.25) 50%,
    rgba(0,0,0,0.25) 100%
  );
  z-index: 1;
}

/* Alinhamento */
.carousel-slide.left {
  justify-content: flex-start;
}

.carousel-slide.right {
  justify-content: flex-end;
  text-align: right;
}

/* Conteúdo */
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 480px;
}

.slide-content h2 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 12px;
}

.slide-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 22px;
  color: #e0e0e0;
}



.btn-gold {
  display: inline-block;
  padding: 12px 28px;
  background-color: #ffd000;
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: #ffae00;
  color: #000;
}


/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #aaa;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.dot.active {
  background: #d4af37;
  transform: scale(1.2);
}


@media (max-width: 768px) {
  .carousel-slide {
    height: 400px;
    padding: 0 6%;
    justify-content: center !important;
    text-align: center !important;
  }

  .slide-content h2 {
    font-size: 30px;
  }
}




.benefits-section {
  width: 100%;
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.benefits-container {
  background-color: #ffffff;
  margin: 0 auto;
  padding: 25px 20px;
  display: flex;
  justify-content: space-between;
  gap: 0px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  justify-content: center;
}

.benefit-icon img {
  width: 80px;
  height: auto;
}

.benefit-text h4 {
  font-size: 15px;
  font-weight: 800;
  color: #000;
  margin-bottom: 4px;
}

.benefit-text p {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .benefits-container {
    flex-direction: column;
    gap: 20px;
  }

  .benefit-item {
    justify-content: center;
    text-align: center;
  }

  .benefit-icon {
    margin-bottom: 5px;
  }
}



.best-sellers {
  background: #f6f6f6;
  padding: 40px 0;
}

.container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
}


.title {
  font-size: 42px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 50px;
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.product-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.10);
}

.product-card img {
  max-width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
}

.product-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 12px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #0084ff;
  margin-bottom: 22px;
}

.btn-buy {
  display: inline-block;
  padding: 14px 36px;
  background: #ffd900;
  color: #000000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-buy:hover {
  background: #00c853;
  transform: scale(1.05);
}
.produtos-ver-mais {
  width: 100%;
  text-align: center;
  margin-top: 50px;
}

.btn-ver-mais-produtos {
  display: inline-block;
  padding: 14px 38px;
  background-color: #000000; /* azul padrão do site */
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-ver-mais-produtos:hover {
  background-color: #ffd000;
  color: #000000;
  transform: translateY(-2px);
}

/* Responsivo */
@media (max-width: 768px) {
  .title {
    font-size: 32px;
  }
}



.secao-valores-clara {
  background: #ffffff;
  padding: 30px 0;
}

.container-valores {
  max-width: 1200px;
  margin: auto;
  padding: 0 25px;
}

.topo-valores {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px;
}

.topo-valores h2 {
  color: #111;
  font-size: 36px;
  margin-bottom: 20px;
}

.topo-valores p {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

.topo-valores .destaque {
  margin-top: 15px;
  font-weight: 600;
  color: #000;
}

.cards-valores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.card-valor {
  background: #f8f8f8;
  padding: 35px 30px;
  border-radius: 16px;
  text-align: center;
  transition: 0.3s;
}

.card-valor:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.card-valor i {
  font-size: 38px;
  color: #ffd900;
  margin-bottom: 20px;
}

.card-valor h3 {
  color: #111;
  font-size: 20px;
  margin-bottom: 12px;
}

.card-valor p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.cta-valores {
  text-align: center;
}

.btn-valores {
  display: inline-block;
  padding: 15px 40px;
  background: #ffd900;
  color: #000000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-valores:hover {
  background: #0b5ed7;
}
@media (max-width: 900px) {
  .cards-valores {
    grid-template-columns: 1fr;
  }

  .topo-valores h2 {
    font-size: 28px;
  }
}


.secao-cestas-info {
  background: #eee;
  padding: 100px 0;
}

.container-cestas {
  max-width: 1200px;
  margin: auto;
  padding: 0 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

/* Imagem */
.cestas-imagem {
  position: relative;
}

.cestas-imagem .bg-destaque {
  position: absolute;
  width: 85%;
  height: 70%;
  background: #f4b400; /* dourado suave */
  border-radius: 24px;
  top: 0;
  left: 0;
  z-index: 1;
}

.cestas-imagem img {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Conteúdo */
.cestas-conteudo h2 {
  font-size: 36px;
  color: #131313;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cestas-conteudo p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Lista */
.lista-beneficios {
  list-style: none;
  padding: 0;
  margin: 25px 0 35px;
}

.lista-beneficios li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: #333;
  font-size: 15px;
}

.lista-beneficios i {
  color: #f4b400;
  font-size: 18px;
  margin-top: 3px;
}

/* Botão */
.btn-cotacao {
  display: inline-block;
  padding: 16px 42px;
  background: #ffae00;
  color: #fff;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-cotacao:hover {
  background: #da8d00;
}
@media (max-width: 900px) {
  .container-cestas {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .cestas-conteudo h2 {
    font-size: 28px;
  }

  .cestas-imagem .bg-destaque {
    width: 100%;
    height: 60%;
  }
}




.store-section {
  width: 100%;
  height: 500px;
  background-image: url('img/loja.jpg'); /* imagem de fundo */
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  overflow: hidden;
  margin: 40px auto;
  max-width: 1200px;
}

.store-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgb(0, 0, 0),
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.1)
  );
  display: flex;
  align-items: center;
}

.store-content {
  max-width: 520px;
  padding: 0 60px;
  color: #fff;
}

.store-tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #c9a24d; /* dourado */
  margin-bottom: 14px;
  display: inline-block;
}

.store-content h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.store-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #e5e5e5;
  margin-bottom: 30px;
}

.store-btn {
  display: inline-block;
  background: #00e676;
  color: #000;
  padding: 14px 34px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
@media (max-width: 900px) {
  .store-section {
    height: auto;
    border-radius: 0;
  }

  .store-overlay {
    padding: 80px 0;
  }

  .store-content {
    padding: 0 30px;
  }

  .store-content h2 {
    font-size: 32px;
  }
}


.secao-localizacao-clean {
  background: #757575;
  padding: 40px 0;
}

.container-localizacao-clean {
  max-width: 1200px;
  margin: auto;
  padding: 0 25px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.localizacao-info h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 30px;
}
.localizacao-info p {
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.icones-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}

.item-info {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #e0e0e0;
  font-size: 16px;
}

.item-info .icon {
  font-size: 20px;
  color: #ffd000;
}

.btn-contato {
  display: inline-block;
  padding: 14px 30px;
  background: #ffd000;
  color: #000000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-contato:hover {
  background: #dab200;
}

.localizacao-mapa iframe {
  width: 100%;
  height: 360px;
  border-radius: 14px;
  border: none;
}
@media (max-width: 900px) {
  .container-localizacao-clean {
    grid-template-columns: 1fr;
  }

  .localizacao-info {
    text-align: center;
  }

  .item-info {
    justify-content: center;
  }
}



.faq-section {
  background: #ffffff;
  padding: 40px 20px;
}

.faq-container {
  max-width: 1200px;
  margin: auto;
}

.faq-title {
  font-size: 42px;
  font-weight: 700;
  color: #131313;
  margin-bottom: 40px;
  text-align: center;
}

.faq-item {
  background: #f2f2f2;
  border-radius: 12px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #131313;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid #000000;
  border-bottom: 2px solid #1f1f1f;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fafafa;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 20px 24px;
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-arrow {
  transform: rotate(-135deg);
}
@media (max-width: 768px) {
  .faq-title {
    font-size: 32px;
  }

  .faq-question {
    font-size: 15px;
  }
}


.footer {
  background: #0b0b0b;
  color: #cfcfcf;
  padding: 80px 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 25px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-col p,
.footer-col li {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li a {
  color: #cfcfcf;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #f4b400; /* dourado */
}

/* Logo */
.logo-col img {
  max-width: 160px;
  margin-bottom: 20px;
}

/* Ícones */
.footer-col i {
  margin-right: 8px;
  color: #f4b400;
}

/* Redes sociais */
.socials {
  margin-top: 15px;
}

.socials a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: #151515;
  border-radius: 50%;
  margin-right: 8px;
  color: #fff;
  transition: 0.3s;
}

.socials a:hover {
  background: #f4b400;
  color: #000;
}

/* Parte final */
.footer-bottom {
    border-top: 1px solid #222;
    text-align: center;
    padding: 20px;
    background: #0b0b0b;
}

.footer-bottom p {
    font-size: 14px;
    color: #aaa;
}

.footer-bottom strong {
    color: #fff;
}

.footer-bottom .dev {
    color: #d4af37;
    font-weight: 600;
}
.footer-bottom .dev-link {
    color: #d4af37;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.footer-bottom .dev-link:hover {
    color: #ffffff;
    text-decoration: underline;
}
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .logo-col img {
    max-width: 140px;
  }
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}
