/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
}

/* Barra verde */
.top-bar {
  background: #55995d;
  color: #fff;
  font-size: 12px;
  padding: 6px 0;
  overflow: hidden;
  position: relative;
}

.marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}

.marquee span {
  display: inline-block;
  padding: 0 2rem;
  font-weight: 600;
  color: #fff;
}

/* animação contínua */
@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Header */
header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
  
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 5%;
  position: relative;
  color: #121212;
}

.logo {
  font-weight: 700;
  font-size: 24px;
  margin: 0 40px;
}
.logo img {
 width: 250px;
}

.logo span {
  color: #3ca64c;
}

.nav-left, .nav-right {
  display: flex;
  gap: 20px;
}

.nav-left a, .nav-right a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-left a:hover, .nav-right a:hover {
  color: #3ca64c;
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: absolute;
  top: 70px; /* abaixo do header */
  left: 0;
  width: 100%;
  background: #fff;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 999;
  text-align: center;
}

.nav-mobile a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 600;
}

.nav-mobile.show {
  display: flex;
}

.menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
}

/* Banner */
.banner {
  width: 100%;
  height: 550px;
}
.banner img {
  width: 100%;
}
.comparison {
  padding: 50px 20px;
  text-align: center;
}

.comparison h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #000;
}

.comparison-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.comparison-box {
  flex: 1;
  max-width: 300px;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: relative;
}

.comparison-box img.product-img {
  width: 250px;
  margin-bottom: 20px;
}

.comparison-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-box ul li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  font-size: 16px;
}

/* Caixa escura */
.comparison-box.dark {
  background: #55995d;
  color: #fff;
}

.comparison-box.dark ul li {
  border-color: rgba(255,255,255,0.2);
}

/* Caixa clara */
.comparison-box.light {
  background: #fff;
  color: #000;
}

.comparison-box.light ul li {
  border-color: rgba(0,0,0,0.1);
}

/* Botão */
.btn-container {
  margin-top: 40px;
}

.btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #333;
}

.destaque {
  display: flex;
  justify-content: center;
  gap: 5px;
  
}
.img-product {
  display: flex;
  justify-content: center;
  width: 500px;
  height: 300px;
}
.text-product {
  display: flex;
  text-align: center;
  justify-content: center;
  flex-direction: column;
  width: 600px;
  margin-top: 30px;
  margin-bottom: 100px;
  font-weight: 400;
}

.products-section {
  text-align: center;
  margin-bottom: 100px;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  margin: 30px 0 10px;
}

.tabs {
  margin-bottom: 30px;
}

.tab {
  border: 1px solid #ccc;
  background: none;
  padding: 10px 20px;
  margin: 0 5px;
  cursor: pointer;
  font-weight: bold;
}

.tab.active {
  border-color: #000;
  color: #000;
}

.products {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.product {
  border: 1px solid #eee;
  padding: 20px;
  width: 220px;
  position: relative;
  text-align: center;
}

.sale {
  position: absolute;
  top: 10px;
  left: 10px;
  background: black;
  color: white;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 10px;
}

.product img {
  max-width: 100%;
  margin-bottom: 15px;
}

.price {
  margin: 10px 0;
  font-size: 16px;
  color: #55995d;
}

.price .old {
  text-decoration: line-through;
  color: #888;
  margin-right: 5px;
}

.price .new {
  font-weight: bold;
}

.shop-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: black;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.shop-btn:hover {
  background: #444;
}

/* Feedback Section */
.testimonials {
  padding: 60px 20px;
  background: #f8f8f8 url('bg-texture.png') no-repeat center center/cover;
  text-align: center;
}

.testimonials h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.reviews-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
  font-size: 16px;
  color: #555;
}

.reviews-info .stars {
  color: #f5a623; /* cor amarela das estrelas */
  font-size: 18px;
}

.testimonials-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px 20px;
  max-width: 320px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
  text-align: center;
}

.profile-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: -60px;
  margin-bottom: 15px;
  border: 4px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.testimonial-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
}

.testimonial-card p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}


/* ===== FAQ ===== */
.faq {
  max-width: 800px;
  margin: 100px auto;
  padding: 0 20px;
  text-align: center;
}

.faq h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.faq-item {
  border-top: 1px solid #ddd;
}

.faq-item:last-child {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 20px;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.2rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  text-align: left;
  padding: 0 20px;
  color: #555;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* altura suficiente para o texto */
  padding: 15px 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

footer {
  min-height: 50px;
  padding: 15px;
  background-color: #55995d;
  text-align: center;
  color: #fff;
  font-size: 12px;
}

.creator {
  color: #fff;
  font-weight: 700;
}

/* ===== RESPONSIVO MOBILE ===== */
@media (max-width: 1024px) {
 .top-bar {
  background: #55995d;
  color: #fff;
  font-size: 8px;
  padding: 6px 0;
  overflow: hidden;
  position: relative;
}

.marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 15s linear infinite;
}

.marquee span {
  display: inline-block;
  padding: 0 2rem;
  font-weight: 600;
  color: #fff;
}

/* animação contínua */
@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
  /* Header */
  .nav-left, .nav-right {
    display: none; /* esconde navs desktop */
  }

  .menu-toggle {
    display: block;
  }

  .logo {
    margin: 0;
  }
  .logo img {
    width: 150px;
  }

  .nav-container {
    justify-content: space-between;
    padding: 10px 20px;
  }

  /* Menu mobile aberto */
  .nav-mobile {
    display: none;
    position: absolute;
    top: 70px; /* abaixo do header */
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .nav-mobile a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: 600;
  }

  .nav-mobile.show {
    display: flex;
  }

  /* Banner */
  .banner {
    height: auto;
  }

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

  /* Comparison */
  .comparison h2 {
    font-size: 20px;
  }
  .comparison-container {
    flex-direction: column;
    gap: 20px;
  }

  .comparison-box {
    max-width: 90%;
    margin: 0 auto;
  }
 .comparison-box.light {
   padding: 55px;
 }

  /* Destaque */
  .destaque {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
  }

  h1 {
    margin-bottom: 20px;
  }

  .text-product, .img-product {
    width: 100%;
    text-align: center;
  }

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

  .text-product p {
    font-size: 16px;
    line-height: 1.5;
  }

  /* Produtos */
  .products {
    flex-direction: column;
    gap: 20px;
  }

  .product {
    width: 90%;
    margin: 0 auto;
  }

  /* Feedbacks */
  .testimonials-container {
    flex-direction: column;
    gap: 20px;
  }

  .testimonial-card {
    max-width: 90%;
    margin: 0 auto;
  }

  .profile-img {
    width: 60px;
    height: 60px;
    margin-top: -40px;
  }

  /* FAQ */
  .faq {
    padding: 0 15px;
    color: #000;
  }
}

