.elementor-1481 .elementor-element.elementor-element-fb8b25b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-0938299 *//* RESET E BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 17px;
}

/* HEADER */
.header {
  background-color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
}

.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.btn-order-desktop {
  background-color: #28a745;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 5px;
}

/* MOBILE HEADER BUTTON */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  display: block;
}

.btn-order-mobile {
  display: none;
  background-color: #28a745;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  margin: 10px auto;
  border-radius: 5px;
  width: 80%;
}

/* HERO SECTION */
.hero {
  padding-top: 120px;
  background-color: #f7f7f7;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero .text {
  flex: 1;
  padding-right: 30px;
}

.hero h1 {
  font-size: 28px;
  color: #000;
  margin-bottom: 10px;
}

.hero h2 {
  font-size: 20px;
  color: #666;
  margin-bottom: 10px;
}

.cta-btn {
  display: inline-block;
  background-color: #28a745;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 10px;
  font-weight: bold;
}

.product-image {
  flex: 1;
  max-width: 300px;
}

.product-image img {
  box-shadow: 0 8px 15px rgba(0,0,0,0.15);
  transform: perspective(600px) rotateY(-2deg);
  border-radius: 10px;
}

/* SECTIONS */
section {
  padding: 50px 0;
}

section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #111;
}

.ingredients-grid,
.reviews-grid,
.kits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.ingredients-grid img,
.reviews-grid img,
.kits-grid img {
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.kits-grid img:hover {
  transform: scale(1.03);
  cursor: pointer;
}

/* FAQ */
.faq-item {
  margin-bottom: 20px;
}

.faq-item h3 {
  font-size: 18px;
  color: #222;
}

.faq-item p {
  margin-top: 5px;
}

/* FOOTER */
footer {
  background-color: #f1f1f1;
  text-align: center;
  padding: 40px 20px;
  margin-top: 50px;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 10px;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  margin: 0 10px;
  color: #666;
  text-decoration: none;
}

.disclaimer {
  font-size: 12px;
  color: #999;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.4;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .nav.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .btn-order-desktop {
    display: none;
  }

  .btn-order-mobile {
    display: block;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero .text {
    padding: 0;
  }

  .product-image {
    margin-top: 20px;
  }

  .kits-grid img {
    max-width: 90%;
  }
}/* End custom CSS */