@charset "UTF-8";
@keyframes float {
  0%, 100% {
    transform: rotate(-89deg) translateY(0) translateX(0);
    filter: blur(0);
  }
  25% {
    transform: rotate(-89deg) translateY(-10px) translateX(5px);
    filter: blur(2px);
  }
  50% {
    transform: rotate(-89deg) translateY(-15px) translateX(-5px);
    filter: blur(3px);
  }
  75% {
    transform: rotate(-89deg) translateY(-8px) translateX(3px);
    filter: blur(1.5px);
  }
}
@keyframes floatReverse {
  0%, 100% {
    transform: translateY(0) translateX(0);
    filter: blur(0);
  }
  25% {
    transform: translateY(-8px) translateX(-5px);
    filter: blur(2px);
  }
  50% {
    transform: translateY(-12px) translateX(5px);
    filter: blur(3.5px);
  }
  75% {
    transform: translateY(-10px) translateX(-3px);
    filter: blur(1.5px);
  }
}
@keyframes rotateBlur {
  0%, 100% {
    transform: rotate(0deg);
    filter: blur(0);
  }
  25% {
    transform: rotate(-5deg);
    filter: blur(2px);
  }
  50% {
    transform: rotate(5deg);
    filter: blur(3px);
  }
  75% {
    transform: rotate(-3deg);
    filter: blur(1.5px);
  }
}
@keyframes leafMove {
  0%, 100% {
    left: 7%;
    filter: blur(0);
  }
  50% {
    left: 12%;
    filter: blur(2.5px);
  }
}
@keyframes fire {
  0% {
    background-position: center 0px, center 0px, 50% 100%, center center;
  }
  100% {
    background-position: center -500px, center -650px, 50% 100%, center center;
  }
}
@keyframes lightGlow {
  0% {
    opacity: 0.2;
    filter: brightness(1);
  }
  50% {
    opacity: 0.5;
    filter: brightness(1.3) drop-shadow(0 0 40px rgba(255, 255, 255, 0.6));
  }
  100% {
    opacity: 0.2;
    filter: brightness(1);
  }
}
@keyframes scrollInfinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes buttonPulse {
  0%, 36% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.06);
  }
  50%, 100% {
    transform: scale(1);
  }
}
@keyframes cursorClick {
  0%, 15% {
    transform: translate(0, 0) scale(1);
  }
  32% {
    transform: translate(-8px, 10px) scale(0.9);
  }
  42% {
    transform: translate(-8px, 10px) scale(0.72);
  }
  54% {
    transform: translate(-8px, 10px) scale(0.9);
  }
  75%, 100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes lightning-flash {
  0%, 100% {
    opacity: 0.3;
    filter: brightness(1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
  }
  10%, 15% {
    opacity: 1;
    filter: brightness(1.7) drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
  }
  12%, 17% {
    opacity: 0.5;
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
  }
  20%, 90% {
    opacity: 0.3;
    filter: brightness(1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  color: #cfcfcf;
  font-family: "Inter", sans-serif;
}

body {
  background: #101010;
}

html {
  scroll-behavior: smooth;
}

img {
  display: block;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

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

.headline {
  color: #e2c677;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
}

.pd {
  padding: 40px 0;
}
@media (min-width: 900px) {
  .pd {
    padding: 80px 0;
  }
}

.mobile-only {
  background: rgba(56, 56, 56, 0.2);
  backdrop-filter: blur(100px);
  display: flex;
  padding: 12px 60px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.mobile-only .logo {
  background: var(--Gradient-gradiente, linear-gradient(90deg, #a3a3a3 0%, #fff 24.52%, #a3a3a3 45.19%, #fff 66.35%, #a3a3a3 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: inline-flex;
  align-items: center;
  gap: 19px;
}
.mobile-only .logo::before {
  content: "";
  width: 54px;
  height: 62px;
  display: block;
  background: url(../images/logo.svg) no-repeat;
  background-size: contain;
  background-position: center;
}
@media (min-width: 900px) {
  .mobile-only {
    display: none;
  }
}

.z10 {
  position: relative;
  z-index: 10;
}

p {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.54px;
}
p b {
  color: #fff;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 16px;
  color: #fff;
  padding: 18px;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 50px;
  border-bottom: 6px solid #116800;
  background: linear-gradient(180deg, #35f60f 0%, #1fa604 100%);
  line-height: 1;
  transition: all 0.6s;
  max-width: 400px;
}
.btn::before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background: url(../images/cartbtn.svg) no-repeat;
  background-size: contain;
  background-position: center;
}
.btn:hover {
  filter: brightness(110%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(53, 246, 15, 0.4);
  border-bottom-width: 8px;
}

.list {
  display: grid;
  margin-bottom: 40px;
  gap: 20px;
}
.list li {
  display: flex;
  gap: 16px;
  align-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.54px;
}
@media (max-width: 900px) {
  .list li {
    font-size: 18px;
  }
}
.list li::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: url(../images/checkverde.svg) no-repeat;
  background-size: contain;
  background-position: center;
}

.container {
  max-width: 1218px;
  margin: 0 auto;
  width: 94%;
}
@media (max-width: 900px) {
  .container {
    max-width: 384px;
  }
}

header {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 60px;
  justify-content: space-between;
  display: flex;
  top: 30px;
  z-index: 100;
  transition: all 0.3s ease;
  border-radius: 50px;
  background: rgba(56, 56, 56, 0.2);
  backdrop-filter: blur(100px);
}
header.scrolled {
  background: #101010;
  top: 0;
}
@media (max-width: 900px) {
  header {
    display: none;
  }
}
header .logo {
  background: var(--Gradient-gradiente, linear-gradient(90deg, #a3a3a3 0%, #fff 24.52%, #a3a3a3 45.19%, #fff 66.35%, #a3a3a3 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: inline-flex;
  align-items: center;
  gap: 19px;
}
header .logo::before {
  content: "";
  width: 54px;
  height: 62px;
  display: block;
  background: url(../images/logo.svg) no-repeat;
  background-size: contain;
  background-position: center;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  color: #fff;
  transition: all 0.6s;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
header nav a:hover {
  color: #d20606;
  text-decoration: underline;
}
header .email {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  transition: all 0.6s;
}
header .email:hover {
  color: #d20606;
}
header .email::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../../assets/img/mail.svg);
  display: block;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.title,
h1 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
@media (max-width: 900px) {
  .title,
  h1 {
    font-size: 30px;
  }
}
.title b,
h1 b {
  color: #e2c677;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
@media (max-width: 900px) {
  .title b,
  h1 b {
    font-size: 30px;
  }
}

main {
  min-height: 100svh;
  padding: 400px 0 80px;
  position: relative;
  overflow: hidden;
  background-color: #101010;
  background-image: url(../images/hero_bg.png);
  background-repeat: no-repeat;
  background-size: auto clamp(430px, 89vw, 480px);
  background-position: 69% top;
}
@media (max-width: 900px) {
  main {
    background-position: 78% top;
  }
}
main::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 330px 0 auto;
  height: 190px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, #101010 78%);
}
main .hero-visual {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: min(100%, 540px);
  height: 445px;
  transform: translateX(-50%);
  pointer-events: none;
}
@media (max-width: 900px) {
  main .hero-visual {
    top: 10%;
    left: 66%;
  }
}
main .hero-visual .hero-product {
  position: absolute;
  z-index: 2;
  max-width: none;
}
main .hero-visual .hero-decor {
  display: none;
}
main .hero-visual .hero-product-back {
  top: 0;
  left: calc(49% - 247px);
  width: min(85.4vw, 353px);
  transform: rotate(-5.36deg);
  filter: blur(1px);
}
main .hero-visual .hero-product-front {
  top: -71px;
  left: calc(44% - 181px);
  width: min(105.5vw, 455px);
  transform: rotate(2.93deg);
}
main .container {
  position: relative;
  z-index: 3;
  width: min(100% - 48px, 396px);
  max-width: 396px;
}
main .container .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  max-width: 565px;
}
main .container .hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  gap: 8px;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  padding: 8px clamp(12px, 5.55vw, 30px);
  border: 1px solid #313131;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}
main .container .hero-rating img {
  width: clamp(100px, 20.92vw, 113px);
}
main .container .hero-rating span {
  color: #fff;
  font-size: clamp(14px, 2.96vw, 16px);
  line-height: 1.4;
  white-space: nowrap;
}
main .container .hero-copy {
  display: grid;
  gap: 16px;
}
main .container .hero-copy .desktop-break {
  display: none;
}
main .container .hero-copy .mobile-copy-break {
  display: none;
}
main .container .hero-copy h1 {
  margin: 0;
  font-size: clamp(40px, 8.89vw, 48px);
  line-height: 1.3;
}
main .container .hero-copy h1 b {
  font-size: inherit;
  line-height: inherit;
  color: #e2c677;
  background: linear-gradient(270deg, #ffd755 0%, #a4823d 27.4%, #ffd755 65.86%, #a4823d 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
main .container .hero-copy p {
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 3.7vw, 20px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}
main .container .hero-copy p b {
  color: #ffd755;
  font-weight: 700;
}
main .container .hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  padding: 18px;
  border-bottom: 6px solid #8e7c02;
  border-radius: 50px;
  background: linear-gradient(180deg, #fffe4a 0%, #ffd901 100%);
  transition: transform 0.3s ease, filter 0.3s ease;
}
main .container .hero-cta img {
  width: 24px;
  filter: brightness(0);
}
main .container .hero-cta span {
  color: #0e0d11;
  font-size: clamp(20px, 4.44vw, 24px);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}
main .container .hero-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}
@media (min-width: 460px) and (max-width: 900px) {
  main .container .hero-copy .mobile-copy-break {
    display: inline;
  }
}
@media (min-width: 901px) {
  main {
    min-height: min(930px, 100svh);
    padding: clamp(200px, 25.6vh, 238px) 0 80px;
    background-size: auto 100%;
    background-position: center top;
  }
  main::after {
    display: none;
  }
  main .hero-visual {
    display: block;
    width: auto;
    height: 100%;
    aspect-ratio: 1920/930;
    max-width: none;
  }
  main .hero-visual .hero-product-back {
    top: 26.55%;
    left: 41%;
    width: 36.05%;
    filter: blur(2px);
  }
  main .hero-visual .hero-product-front {
    top: 9.15%;
    left: 45.83%;
    width: 46.2%;
  }
  main .hero-visual .hero-decor {
    display: block;
    position: absolute;
    z-index: 1;
    max-width: none;
    pointer-events: none;
    will-change: transform;
  }
  main .hero-visual .hero-leaf {
    top: 61.8%;
    left: 70%;
    width: 17.26%;
    animation: heroLeafDrift 6s ease-in-out infinite;
  }
  main .hero-visual .hero-gummy {
    width: 5.2%;
    filter: blur(2px);
    animation: heroGummyFloat 4.8s ease-in-out infinite;
  }
  main .hero-visual .hero-gummy-1 {
    top: 33.7%;
    left: 48.9%;
    --hero-gummy-x: 8px;
  }
  main .hero-visual .hero-gummy-2 {
    top: 56%;
    left: 76%;
    --hero-gummy-x: -10px;
    animation-delay: -1.6s;
    animation-duration: 5.4s;
  }
  main .hero-visual .hero-gummy-3 {
    top: 79.7%;
    left: 50.9%;
    width: 4.3%;
    --hero-gummy-x: 6px;
    animation-delay: -3.1s;
    animation-duration: 4.4s;
  }
  main .container {
    width: min(100% - 48px, 1280px);
    max-width: 1280px;
  }
  main .container .content {
    width: 565px;
  }
  main .container .hero-rating {
    align-self: flex-start;
  }
  main .container .hero-copy h1 {
    font-size: 48px;
  }
  main .container .hero-copy .mobile-break {
    display: none;
  }
  main .container .hero-copy .desktop-break {
    display: inline;
  }
  main .container .hero-copy p {
    font-size: 20px;
  }
  main .container .hero-cta {
    width: 396px;
  }
}
@media (prefers-reduced-motion: reduce) {
  main .hero-decor {
    animation: none !important;
  }
}

@keyframes heroLeafDrift {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  50% {
    transform: translate3d(-8px, -10px, 0) rotate(48deg);
  }
}
@keyframes heroGummyFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-26deg);
  }
  50% {
    transform: translate3d(var(--hero-gummy-x), -12px, 0) rotate(-20deg);
  }
}
.faixa {
  width: 100%;
  padding: 20px 0;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  background: linear-gradient(270deg, #a4823d 0%, #d9b34b 29%, #ffe282 50.11%, #deb84c 68.37%, #a4823d 100%);
}
.faixa ul {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  gap: 64px;
  align-items: center;
  width: max-content;
  padding-inline: 20px;
  margin-inline: auto;
}
@media (max-width: 900px) {
  .faixa ul {
    flex-direction: column;
    gap: 12px;
  }
}
.faixa li {
  position: relative;
  gap: 8px;
  min-height: 60px;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  color: #050505;
  text-align: center;
  font-size: clamp(12px, 100%, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  gap: 8px;
}
.faixa li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 32px);
  transform: translate(-50%, -50%);
  width: 1px;
  height: 60px;
  background: rgba(5, 5, 5, 0.25);
}
@media (max-width: 900px) {
  .faixa li:not(:last-child)::after {
    display: none;
  }
}
.faixa li::before {
  content: "";
  width: 22.5px;
  height: 22.5px;
  display: block;
  background: url(../images/seal.svg) no-repeat;
  background-size: auto;
  background-size: contain;
  background-position: center;
}
@media (max-width: 900px) {
  .faixa li {
    font-size: 20px;
  }
}

.sobre {
  min-height: 1254px;
  padding: 80px 0 0;
  background-color: #101010;
  background-image: url(../images/benefits-bg-mobile.png);
  background-repeat: no-repeat;
  background-size: clamp(540px, 100vw, 620px) auto;
  background-position: center 31px;
  position: relative;
  overflow: hidden;
}
.sobre .container {
  max-width: 396px;
  width: min(100% - 48px, 396px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.sobre .container .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 3;
  gap: 32px;
}
.sobre .container .content .benefits-copy {
  display: grid;
  gap: 16px;
  width: 100%;
}
.sobre .container .content h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 6.67vw, 36px);
  font-weight: 600;
  line-height: 1.3;
}
.sobre .container .content h1 b {
  color: #ffd755;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.sobre .container .content .benefits-list {
  display: grid;
  gap: 16px;
  width: 100%;
  margin: 0;
}
.sobre .container .content .benefits-list li {
  min-height: 60px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #313131;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: clamp(18px, 3.7vw, 20px);
  font-weight: 500;
  line-height: 1.3;
}
.sobre .container .content .benefits-list li::before {
  content: "";
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  background: url(../images/benefits-check.svg) no-repeat center;
  background-size: contain;
}
.sobre .container .content #btn-about {
  width: 100%;
  max-width: 396px;
  padding: 18px;
  border-bottom-color: #8e7c02;
  background: linear-gradient(180deg, #fffe4a 0%, #ffd901 100%);
  color: #0e0d11;
}
.sobre .container .content #btn-about::before {
  filter: brightness(0);
}
.sobre .container .content #btn-about:hover {
  border-bottom-width: 6px;
  box-shadow: 0 8px 25px rgba(255, 217, 1, 0.25);
}
.sobre .container .area-img {
  display: none;
}
@media (min-width: 460px) and (max-width: 900px) {
  .sobre .container .content .benefits-list li {
    height: 60px;
    min-height: 60px;
    padding: 4px 24px;
  }
}
@media (min-width: 901px) {
  .sobre {
    min-height: 827px;
    height: 827px;
    padding: 0;
    background-image: url(../images/benefits-bg-desktop.png);
    background-size: auto 100%;
    background-position: center top;
  }
  .sobre .container {
    max-width: 1280px;
    width: min(100% - 48px, 1280px);
    height: 100%;
    justify-content: center;
    align-items: flex-end;
  }
  .sobre .container .content {
    width: 565px;
  }
  .sobre .container .content h1 {
    font-size: 36px;
  }
  .sobre .container .content .benefits-list li {
    height: 60px;
    min-height: 60px;
    padding: 16px 24px;
    font-size: 20px;
    white-space: nowrap;
  }
}

.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #101010;
  z-index: -1;
}
.bg .light {
  position: absolute;
  animation: lightGlow 4s ease-in-out infinite;
}
@media (max-width: 900px) {
  .bg .light {
    max-width: 200px;
  }
}
.bg .light.l1 {
  bottom: 0;
  left: 0;
}
.bg .light.l2 {
  bottom: 0;
  right: 0;
  animation-delay: 2s;
}

.ingredients {
  background: #fffcf3;
  border-radius: 0px 0px 40px 40px;
}
.ingredients .area-title * {
  margin-bottom: 0;
}
.ingredients .area-title h2 {
  color: #211915;
  font-size: 36px;
  font-weight: 600;
}
.ingredients .area-title h2 b {
  color: #e2c677;
  font-size: inherit;
  font-weight: inherit;
}
@media (max-width: 900px) {
  .ingredients .area-title h2 {
    font-size: 28px;
  }
}
.ingredients .area-title p {
  color: #101010;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.54px;
}
.ingredients .area-title {
  max-width: 1100px;
  margin: 0 auto 64px;
}
@media (max-width: 900px) {
  .ingredients .area-title {
    max-width: 100%;
    margin-bottom: 40px;
  }
}
.ingredients .area-title {
  display: grid;
  gap: 16px;
}
.ingredients .ingredientsSwiper {
  padding-bottom: 0;
}
.ingredients .ingredientsSwiper .swiper-slide {
  height: auto;
}
.ingredients .ingredients-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}
.ingredients .ingredients-nav .swiper-button-prev,
.ingredients .ingredients-nav .swiper-button-next {
  position: static;
  margin: 0;
  width: 63.633px;
  height: 48px;
  border-radius: 12.267px;
  background: #ffd755;
  transition: filter 0.3s ease, transform 0.3s ease;
}
.ingredients .ingredients-nav .swiper-button-prev::after,
.ingredients .ingredients-nav .swiper-button-next::after {
  font-size: 18px;
  font-weight: 700;
  color: #101010;
}
.ingredients .ingredients-nav .swiper-button-prev:hover,
.ingredients .ingredients-nav .swiper-button-next:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}
.ingredients .ingredients-nav .swiper-button-prev.swiper-button-disabled,
.ingredients .ingredients-nav .swiper-button-next.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}
.ingredients .ingredient-card {
  border-radius: 20px;
  overflow: hidden;
  background: #211915;
  text-align: center;
  padding: 20px 20px 40px;
  border-bottom: 2px solid #e2c677;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.ingredients .ingredient-card .content {
  padding: 24px 8px 0;
  display: grid;
  gap: 8px;
}
.ingredients .ingredient-card .content h3,
.ingredients .ingredient-card .content p {
  text-align: left;
  color: #fff;
}
.ingredients .ingredient-card img {
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  max-width: none;
  width: 100%;
}
.ingredients .ingredient-card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}
.ingredients .ingredient-card h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}

.intro {
  background-image: url(../images/about-bg-mobile.png);
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.intro .content {
  max-width: 480px;
  display: grid;
  gap: 16px;
}
@media (max-width: 900px) {
  .intro .content {
    padding-top: 450px;
  }
}
.intro .eyebrow {
  color: #FFD755;
  font-size: 28px;
  font-weight: 700;
  line-height: 130%;
}
.intro .lead {
  color: #FFD755;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
}
.intro p {
  color: #cfcfcf;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.intro .btn {
  margin-top: 8px;
  width: auto;
  max-width: 260px;
  padding: 16px 32px;
  color: #0e0d11;
  border-bottom-color: #8e7c02;
  background: linear-gradient(180deg, #fffe4a 0%, #ffd901 100%);
}
@media (max-width: 900px) {
  .intro .btn {
    margin: 0 auto;
    margin-top: 20px;
  }
}
.intro .btn::before {
  filter: brightness(0);
}
.intro .btn:hover {
  box-shadow: 0 8px 25px rgba(255, 217, 1, 0.25);
}
@media (min-width: 901px) {
  .intro {
    padding: 130px 0;
    background-image: url(../images/about-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
  }
}

.testemonials {
  background: linear-gradient(180deg, #111 0%, rgba(37, 37, 37, 0.89) 54.33%, #111 100%);
  overflow-x: hidden;
}
.testemonials .header {
  display: grid;
  text-align: center;
  gap: 8px;
  margin-bottom: 48px;
}
.testemonials .title {
  margin: 0;
  font-size: 48px;
}
.testemonials .disclaimer {
  color: #cfcfcf;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.42px;
}
.testemonials .testemonial-slider {
  position: relative;
  padding: 0 64px;
}
@media (max-width: 900px) {
  .testemonials .testemonial-slider {
    padding: 0;
  }
}
.testemonials .testemonialsSwiper {
  overflow: hidden;
}
.testemonials .testemonialsSwiper .swiper-slide {
  height: auto;
}
.testemonials .testemonialsSwiper .swiper-wrapper {
  overflow: visible;
}
.testemonials .swiper-button-prev,
.testemonials .swiper-button-next {
  width: 48px;
  height: 48px;
  margin-top: -24px;
  border-radius: 10px;
  background: linear-gradient(180deg, #fffe4a 0%, #ffd901 100%);
  border-bottom: 4px solid #8e7c02;
  transition: filter 0.3s ease, transform 0.3s ease;
}
.testemonials .swiper-button-prev::after,
.testemonials .swiper-button-next::after {
  font-size: 18px;
  font-weight: 700;
  color: #101010;
}
.testemonials .swiper-button-prev:hover,
.testemonials .swiper-button-next:hover {
  filter: brightness(1.05);
}
.testemonials .swiper-button-prev.swiper-button-disabled,
.testemonials .swiper-button-next.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}
@media (max-width: 900px) {
  .testemonials .swiper-button-prev,
  .testemonials .swiper-button-next {
    display: none;
  }
}
.testemonials .swiper-button-prev {
  left: 8px;
}
.testemonials .swiper-button-next {
  right: 8px;
}
.testemonials .testemonial-card {
  border-radius: 20px;
  overflow: hidden;
  background: #2b2b2b;
  text-align: left;
  height: 100%;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  padding: 16px 16px 32px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.testemonials .testemonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}
.testemonials .testemonial-card .photo {
  border-radius: 16px;
  width: 100%;
  max-width: none;
  aspect-ratio: 1/1;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  margin: 0;
}
.testemonials .testemonial-card .content {
  padding: 20px 8px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 0 0;
}
.testemonials .testemonial-card .content .stars {
  width: 110px;
  height: auto;
  margin: 0;
}
.testemonials .testemonial-card .content p {
  color: #cfcfcf;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
}
.testemonials .testemonial-card .content .author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.testemonials .testemonial-card .content .author .name {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}
.testemonials .testemonial-card .content .author .verified {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #cfcfcf;
  font-size: 14px;
}
.testemonials .testemonial-card .content .author .verified img {
  width: 16px;
  height: 16px;
  margin: 0;
  max-width: none;
}
.testemonials .order-btn {
  margin: 48px auto 0;
  width: auto;
  max-width: 320px;
  padding: 16px 40px;
  color: #0e0d11;
  border-bottom: 6px solid #8e7c02;
  background: linear-gradient(180deg, #fffe4a 0%, #ffd901 100%);
}
.testemonials .order-btn::before {
  filter: brightness(0);
}
.testemonials .order-btn:hover {
  box-shadow: 0 8px 25px rgba(255, 217, 1, 0.4);
}

.shipping {
  background: linear-gradient(270deg, #a4823d 0%, #d9b34b 29%, #ffe282 50.11%, #deb84c 68.37%, #a4823d 100%);
  padding: 60px 40px;
  position: relative;
  overflow: visible;
}
.shipping .container {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 891px;
  max-height: -moz-fit-content;
  max-height: fit-content;
  width: 100%;
}
.shipping .container .truck {
  flex-shrink: 0;
  max-width: 105px;
}
@media (max-width: 900px) {
  .shipping .container {
    flex-direction: column;
    gap: 16px;
  }
}
.shipping .shipping-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
@media (max-width: 900px) {
  .shipping .shipping-content {
    align-items: center;
    text-align: center;
  }
}
.shipping .shipping-content .title {
  margin-bottom: 4px;
  color: #101010;
  font-size: 36px;
  font-weight: 700;
  line-height: 130%;
}
.shipping .shipping-content small {
  color: #101010;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.54px;
}

.area-kits {
  background: #fff8eb;
}
.area-kits .container {
  width: 98%;
  text-align: center;
}
@media (max-width: 900px) {
  .area-kits .container {
    width: 89%;
  }
}
.area-kits .container .title {
  margin-bottom: 8px;
  color: #050505;
  text-align: center;
  font-size: clamp(24px, 4vw, 48px);
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
.area-kits .container > p {
  text-align: center;
  margin-bottom: 48px;
  color: #050505;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.area-kits .container ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  align-items: flex-end;
}
@media (max-width: 900px) {
  .area-kits .container ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
.area-kits .container ul a {
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  transition: all 0.6s;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--gray-dark, #101010);
}
@media (max-width: 900px) {
  .area-kits .container ul a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}
.area-kits .container ul a:hover {
  border-color: #e2c677;
}
.area-kits .container ul a .header {
  background: var(--Gradient-gradiente, linear-gradient(90deg, #999 0%, #fff 50%, #999 100%));
  color: #010101;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  width: 100%;
  padding: 16px 5px;
}
@media (max-width: 900px) {
  .area-kits .container ul a .header {
    grid-column: -1/1;
    font-size: 18px;
  }
}
.area-kits .container ul a .main {
  padding: 16px 12px 0;
}
@media (max-width: 900px) {
  .area-kits .container ul a .main {
    padding: 16px 0px;
  }
}
.area-kits .container ul a .main strong {
  display: block;
  color: #fff;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
@media (max-width: 900px) {
  .area-kits .container ul a .main strong {
    font-size: 24px;
  }
}
.area-kits .container ul a .main .days {
  color: #cfcfcf;
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 900px) {
  .area-kits .container ul a .main .days {
    font-size: 14px;
  }
}
.area-kits .container ul a .main .area-img {
  position: relative;
  overflow: hidden;
}
.area-kits .container ul a .main .area-img .free {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 28%;
  width: clamp(50px, 50%, 119px);
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.area-kits .container ul a .main .area-img .free-6 {
  bottom: 44%;
}
@media (max-width: 900px) {
  .area-kits .container ul a .main .area-img .free-6 {
    bottom: 54%;
  }
}
.area-kits .container ul a .main .area-img .free-3 {
  bottom: 50%;
}
@media (max-width: 900px) {
  .area-kits .container ul a .main .area-img .free-3 {
    bottom: 62%;
  }
}
.area-kits .container ul a .main .save {
  --badge-size: 80px;
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  width: var(--badge-size);
  height: var(--badge-size);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background: url("../images/save.svg") center/100% 100% no-repeat;
}
.area-kits .container ul a .main .save span {
  color: inherit;
  font-size: calc(var(--badge-size) * 0.18);
  font-weight: 400;
  line-height: 0.9;
}
.area-kits .container ul a .main .save strong {
  color: inherit;
  font-size: calc(var(--badge-size) * 0.28);
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 900px) {
  .area-kits .container ul a .main .save {
    --badge-size: 60px;
  }
}
.area-kits .container ul a img {
  height: auto;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 900px) {
  .area-kits .container ul a img {
    height: auto;
  }
}
.area-kits .container ul a .product-image {
  height: 292px;
}
@media (max-width: 900px) {
  .area-kits .container ul a .product-image {
    height: auto;
  }
}
.area-kits .container ul .price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 24px;
  margin: 8px 0 18px;
  color: #cfcfcf;
  align-items: baseline;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 900px) {
  .area-kits .container ul .price {
    font-size: 14px;
    margin-top: 16px;
  }
}
.area-kits .container ul .price strong {
  color: #fff;
  text-align: center;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.area-kits .container ul .price strong small {
  font-size: 18px;
  line-height: 1;
  display: inline-block;
  padding-top: 10px;
  color: currentcolor;
}
@media (max-width: 900px) {
  .area-kits .container ul .price strong {
    font-size: 50px;
  }
}
.area-kits .container ul ul {
  grid-template-columns: repeat(1, 1fr);
  gap: 0;
  text-align: left;
  gap: 4px;
  width: 100%;
  margin-bottom: 12px;
}
.area-kits .container ul ul li {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 8px;
  color: #cfcfcf;
  letter-spacing: 0.54px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.area-kits .container ul ul li::before {
  content: url(../images/checkverde.svg);
}
.area-kits .container ul ul li.orrivi::before {
  content: url(../images/checkvermelho.svg);
}
.area-kits .container ul ul li.morromeno::before {
  content: url(../images/chekamarelo.svg);
}
@media (max-width: 900px) {
  .area-kits .container ul ul li {
    font-size: 12px;
    display: flex;
    gap: 8px;
    margin-left: 0;
  }
}
@media (max-width: 370px) {
  .area-kits .container ul ul li {
    font-size: 14px;
  }
}
.area-kits .container ul .footer {
  padding: 0 12px 20px;
}
@media (max-width: 900px) {
  .area-kits .container ul .footer {
    padding: 0 10px 20px;
  }
}
.area-kits .container ul .footer button {
  position: relative;
}
.area-kits .container ul .footer .button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 16px;
  background: none;
  border: none;
  cursor: pointer;
}
.area-kits .container ul .footer .button > img:not(.cursor) {
  display: block;
  width: 100%;
  height: auto;
}
.area-kits .container ul .footer .button .cursor {
  position: absolute;
  top: 57%;
  left: 50%;
  transform-origin: center;
  animation: cursorClick 1.8s ease-in-out infinite;
}
.area-kits .container ul .footer .bandeiras {
  width: 100%;
  margin: 0 auto 16px;
}
@media (max-width: 900px) {
  .area-kits .container ul .footer .bandeiras {
    width: 100%;
  }
}
.area-kits .container ul .footer .valores {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}
.area-kits .container ul .footer .valores * {
  color: #cfcfcf;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}
@media (max-width: 900px) {
  .area-kits .container ul .footer .valores * {
    font-size: 12px;
  }
}
.area-kits .container ul .footer .valores s {
  text-decoration: line-through;
  text-decoration-color: red;
}
.area-kits .container ul .footer .valores span {
  font-weight: bold;
}
.area-kits .container ul .footer .valores .highlight {
  color: #fff;
}
.area-kits .container .best-option {
  transition: all 0.7s;
}
.area-kits .container .best-option:hover {
  transform: scale(1.03);
}
.area-kits .container .best-option a {
  border-radius: 20px;
  border: 1px solid #ffd902;
  border-width: 2px;
  background: #282828;
}
.area-kits .container .best-option .header {
  font-weight: bold;
  color: #010101;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 900px) {
  .area-kits .container .best-option .header {
    margin-bottom: 16px;
  }
}
.area-kits .container .best-option .button {
  animation: buttonPulse 1.8s ease-in-out infinite;
}
@media (max-width: 900px) {
  .area-kits .container .best-option {
    grid-row: 1;
  }
  .area-kits .container .k3 {
    grid-row: 2;
  }
}

.guarantee {
  background: url("../images/guarantee-bg.png") no-repeat;
  background-size: cover;
}
.guarantee .container {
  max-width: 900px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
@media (max-width: 900px) {
  .guarantee .container {
    flex-direction: column;
    gap: 24px;
  }
}
.guarantee .container > img {
  flex-shrink: 0;
  margin: 0;
  max-width: 220px;
  width: 100%;
}
@media (max-width: 900px) {
  .guarantee .container > img {
    max-width: 180px;
    margin: 0 auto;
  }
}
.guarantee .guarantee-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
@media (max-width: 900px) {
  .guarantee .guarantee-content {
    align-items: center;
    text-align: center;
  }
}
.guarantee .guarantee-content h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 8px;
}
.guarantee .guarantee-content p {
  margin-bottom: 32px;
  color: #cfcfcf;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.54px;
}
.guarantee .guarantee-content .btn {
  width: auto;
  max-width: 100%;
  margin: 0;
  padding: 18px 62px;
  color: #0e0d11;
  border-bottom: 6px solid #8e7c02;
  background: linear-gradient(180deg, #fffe4a 0%, #ffd901 100%);
}
.guarantee .guarantee-content .btn::before {
  filter: brightness(0);
}
.guarantee .guarantee-content .btn:hover {
  box-shadow: 0 8px 25px rgba(255, 217, 1, 0.4);
}
@media (max-width: 900px) {
  .guarantee .guarantee-content .btn {
    width: 100%;
  }
}

.faq {
  background-image: url(../images/linhas.svg);
  background-color: #111;
  background-attachment: fixed;
  border-top: 1px solid #ffd755;
  border-bottom: 1px solid #ffd755;
}
.faq .container {
  max-width: 934px !important;
}
.faq .container > span {
  color: #e2c677;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}
.faq .title {
  text-align: center;
  margin: 0 auto 48px;
  color: #fff;
}
.faq .days_gua {
  color: #e2c677;
}
.faq .accordion {
  display: grid;
  gap: 16px;
  margin-bottom: 48px;
  background: #101010;
}
.faq .item {
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}
.faq .item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.faq .item .header {
  background: var(--Brand-black, #211915);
  border-radius: 16px;
  border-bottom: 1px solid rgba(207, 207, 207, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 16px;
  transition: all 0.3s ease;
}
.faq .item .header:hover {
  transform: translateY(-10px);
}
@media (max-width: 900px) {
  .faq .item .header {
    padding: 16px;
  }
}
.faq .item .header p {
  font-weight: 500;
  color: #fff;
  font-size: 24px;
  margin-bottom: 0;
  text-align: left;
}
@media (max-width: 900px) {
  .faq .item .header p {
    font-size: 18px;
  }
}
.faq .item .header::after {
  content: "";
  width: 32px;
  height: 32px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none"><path d="M13.5077 20.5331L7.38772 14.4131C7.13939 14.1633 7 13.8253 7 13.4731C7 13.1208 7.13939 12.7829 7.38772 12.5331C7.51167 12.4081 7.65914 12.3089 7.82162 12.2412C7.9841 12.1735 8.15837 12.1387 8.33439 12.1387C8.51041 12.1387 8.68468 12.1735 8.84716 12.2412C9.00964 12.3089 9.15711 12.4081 9.28106 12.5331L15.3877 18.6664C15.5117 18.7914 15.6591 18.8906 15.8216 18.9583C15.9841 19.0259 16.1584 19.0608 16.3344 19.0608C16.5104 19.0608 16.6847 19.0259 16.8472 18.9583C17.0096 18.8906 17.1571 18.7914 17.2811 18.6664L23.3877 12.5331C23.637 12.282 23.9759 12.1402 24.3297 12.139C24.6835 12.1377 25.0233 12.2771 25.2744 12.5264C25.5255 12.7757 25.6672 13.1145 25.6685 13.4684C25.6697 13.8222 25.5304 14.162 25.2811 14.4131L19.1611 20.5331C18.4111 21.2821 17.3944 21.7029 16.3344 21.7029C15.2744 21.7029 14.2577 21.2821 13.5077 20.5331Z" fill="white"/></svg>') no-repeat center;
  background-size: contain;
  transition: all 0.4s ease;
}
.faq .item .body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 12px;
}
.faq .item .body p,
.faq .item .body li,
.faq .item .body p b {
  text-align: left;
  font-size: 16px;
  margin-bottom: 16px;
  color: #fff;
}
@media (max-width: 900px) {
  .faq .item .body p,
  .faq .item .body li,
  .faq .item .body p b {
    font-size: 16px;
  }
}
.faq .item .body a {
  text-decoration: underline;
}
.faq .item .body li {
  list-style: "✔";
  margin-left: 20px;
}
.faq .item .body img {
  margin: 20px auto;
  max-width: 50%;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.faq .item.active .header {
  background: #e2c677;
}
.faq .item.active .header::after {
  transform: rotate(180deg);
}
.faq .item.active .header {
  border-radius: 10px;
}
.faq .item.active .header p {
  color: #101010;
}
.faq .item.active .body {
  padding-top: 20px;
  padding-bottom: 20px;
  max-height: 600px;
  overflow: auto;
}
.faq .btn {
  margin-bottom: 35px;
}

footer {
  border-top: 1px solid rgba(225, 224, 224, 0.6078431373);
  background: #101010;
}
footer .container {
  max-width: 1007px;
}
footer .container * {
  color: #fff;
}
footer .container {
  padding: 64px 0;
}
@media (max-width: 900px) {
  footer .container {
    padding: 40px 0;
  }
}
footer .container .logo {
  margin-bottom: 24px;
}
footer .container nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  footer .container nav {
    font-size: 16px;
  }
}
footer .container .disclaimer {
  padding-top: 24px;
  border-top: 1px solid rgba(225, 224, 224, 0.6078431373);
}
footer .container .disclaimer p {
  font-size: 16px;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  footer .container .disclaimer p {
    font-size: 14px;
  }
}
footer .copy {
  display: grid;
  place-items: center;
  text-align: center;
  background: #e2c677;
  padding: 32px;
  gap: 8px;
}
footer .copy span {
  font-size: 18px;
  color: #101010;
}
@media (max-width: 900px) {
  footer .copy span {
    font-size: 12px;
  }
}
footer .copy small {
  font-size: 14px;
  color: #101010;
}/*# sourceMappingURL=style.css.map */