@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: #233226;
}

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: #003f2d;
  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: #fff;
  display: flex;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}
.mobile-only .logo {
  display: inline-flex;
  align-items: center;
}
.mobile-only .logo img {
  height: 48px;
  width: auto;
}
@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;
  background: linear-gradient(180deg, #35f60f 0%, #1fa604 100%);
  line-height: 1;
  transition: all 0.6s;
  max-width: 400px;
}
.btn::after {
  content: "";
  width: 40px;
  height: 40px;
  display: block;
  background: url(../../assets/img/cart.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(../../assets/img/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: relative;
  width: 100%;
  z-index: 100;
  background: #fff;
}
@media (max-width: 900px) {
  header {
    display: none;
  }
}
header .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(360px, 10vw, 160px);
  max-width: 1100px;
  padding: 18px 0;
}
header .logo {
  display: inline-flex;
  align-items: center;
}
header .logo img {
  height: 44px;
  width: auto;
}
header nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
header nav a {
  color: #233226;
  transition: all 0.3s;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
header nav a:hover {
  color: #003f2d;
}

@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: #003f2d;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
@media (max-width: 900px) {
  .title b,
  h1 b {
    font-size: 30px;
  }
}

main {
  display: flex;
  flex-direction: column;
  padding: 48px 0 0;
  position: relative;
  overflow: hidden;
  background-color: #233226;
  background-image: url(../../assets/img/hero-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse at 68% 22%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.35) 30%, transparent 65%);
  opacity: 0;
  mix-blend-mode: screen;
  animation: thunderFlash 9s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  main::before {
    animation: none;
  }
}
main .hero-visual {
  position: relative;
  order: 2;
  width: 100%;
  aspect-ratio: 3/2;
  margin-top: 24px;
  z-index: 1;
  pointer-events: none;
}
main .hero-product {
  position: absolute;
  z-index: 2;
  max-width: none;
}
main .hero-decor {
  position: absolute;
  z-index: 3;
  max-width: none;
}
main .hero-product-back-left {
  left: 12%;
  bottom: -1%;
  width: 52%;
  transform: rotate(-4deg);
  filter: blur(1.5px);
  opacity: 0.85;
}
main .hero-product-back-right {
  left: 42%;
  bottom: 2%;
  width: 52%;
  transform: rotate(4deg);
  filter: blur(1.5px);
  opacity: 0.85;
}
main .hero-product-front {
  left: 15%;
  bottom: 0;
  width: 76%;
}
main .hero-gummy-1 {
  left: 60%;
  bottom: 2%;
  width: 12%;
}
main .hero-gummy-2 {
  left: 34%;
  bottom: 42%;
  width: 18%;
  animation: gummySway 2.6s ease-in-out infinite;
}
main .container {
  order: 1;
  position: relative;
  z-index: 4;
  width: calc(100% - 48px);
  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-eyebrow {
  width: 100%;
  color: #cfcfcf;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
main .container .hero-copy {
  display: grid;
  width: 100%;
  gap: 16px;
  padding-top: 120px;
}
@media (max-width: 900px) {
  main .container .hero-copy {
    padding-top: 40px !important;
  }
}
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: #003f2d;
  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-radius: 50px;
  background: linear-gradient(180deg, #35f60f 0%, #1fa604 100%);
  transition: transform 0.3s ease, filter 0.3s ease;
}
main .container .hero-cta::after {
  content: "";
  width: 54px;
  height: 54px;
  display: block;
  background: url(../../assets/img/cart.svg) no-repeat;
  background-size: contain;
  background-position: center;
}
main .container .hero-cta:hover {
  filter: brightness(110%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(53, 246, 15, 0.4);
  border-bottom-width: 8px;
}
main .container .hero-cta img {
  width: 24px;
  filter: brightness(0);
}
main .container .hero-cta span {
  color: #233226;
  font-size: clamp(20px, 4.44vw, 24px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
main .container .hero-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}
@media (min-width: 901px) {
  main {
    display: block;
    min-height: min(780px, 100svh);
    padding: 60px 0 0;
  }
  main .hero-visual {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: auto;
    height: 100%;
    aspect-ratio: 1920/930;
    margin-top: 0;
  }
  main .hero-product-back-left {
    left: 42%;
    bottom: -3%;
    width: 36.05%;
    transform: rotate(-4deg);
  }
  main .hero-product-back-right {
    left: 57%;
    bottom: 0%;
    width: 35%;
    transform: rotate(4deg);
  }
  main .hero-product-front {
    left: 44%;
    bottom: 0;
    width: 46.2%;
  }
  main .hero-gummy-1 {
    left: 71%;
    bottom: 2%;
    width: 7%;
  }
  main .hero-gummy-2 {
    left: 56%;
    bottom: 39%;
    width: 8.5%;
  }
  main .container {
    width: calc(100% - 48px);
    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 p {
    font-size: 20px;
  }
  main .container .hero-cta {
    width: 396px;
  }
}

@keyframes gummySway {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}
@keyframes thunderFlash {
  0%, 92%, 100% {
    opacity: 0;
  }
  92.5% {
    opacity: 0.85;
  }
  93% {
    opacity: 0.1;
  }
  93.5% {
    opacity: 0.6;
  }
  94% {
    opacity: 0;
  }
  96% {
    opacity: 0.3;
  }
  96.4% {
    opacity: 0;
  }
}
.faixa {
  width: 100%;
  padding: 20px 0;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  background: linear-gradient(270deg, #d96c05 -4.97%, #ffc25a 17.05%, #ffc25a 50.42%, #ffc25a 81.16%, #d96c05 105.81%);
}
.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: #233226;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  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(../../assets/img/seal.svg) no-repeat;
  background-size: auto;
  background-size: contain;
  background-position: center;
}
@media (max-width: 900px) {
  .faixa li {
    font-size: 20px;
  }
}
.faixa.faixa--features li::before {
  background-image: none;
}
.faixa.faixa--features li.ic-1::before {
  width: 24px;
  height: 24px;
  background-image: url(../../assets/img/f1.svg);
}
.faixa.faixa--features li.ic-2::before {
  width: 21px;
  height: 24px;
  background-image: url(../../assets/img/f2.png);
}
.faixa.faixa--features li.ic-3::before {
  width: 28px;
  height: 28px;
  background-image: url(../../assets/img/f3.svg);
}
.faixa.faixa--features li.ic-4::before {
  width: 24px;
  height: 24px;
  background-image: url(../../assets/img/f4.svg);
}

.sobre {
  padding: 60px 0 60px;
  background: linear-gradient(90deg, #233226 0%, #405c45 63.68%, #233226 100%);
  background-size: clamp(540px, 100vw, 620px) auto;
  background-position: center 31px;
  position: relative;
  overflow: hidden;
}
.sobre .container {
  max-width: 396px;
  width: calc(100% - 48px);
  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: #233226;
  font-size: clamp(32px, 6.67vw, 36px);
  font-weight: 600;
  line-height: 1.3;
}
@media (max-width: 900px) {
  .sobre .container .content h1 {
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
  }
}
.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: 40px 24px !important;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 50px;
  background: #fff;
  color: #233226;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}
@media (max-width: 900px) {
  .sobre .container .content .benefits-list li {
    padding: 20px 14px !important;
    font-size: 16px;
  }
}
.sobre .container .content .benefits-list li::before {
  content: "";
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  background: url(../../assets/img/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, #35f60f 0%, #1fa604 100%);
  color: #233226;
}
.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(../../assets/img/benefits-bg-desktop.png);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center top;
  }
  .sobre .container {
    max-width: 1280px;
    width: calc(100% - 48px);
    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: #233226;
  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: linear-gradient(90deg, #233226 0%, #405c45 63.68%, #233226 100%);
  border-radius: 0px 0px 40px 40px;
}
.ingredients .area-title * {
  margin-bottom: 0;
}
.ingredients .area-title h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 600;
}
.ingredients .area-title h2 b {
  color: #003f2d;
  font-size: inherit;
  font-weight: inherit;
}
@media (max-width: 900px) {
  .ingredients .area-title h2 {
    font-size: 28px;
  }
}
.ingredients .area-title p {
  color: #fff;
  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 {
  content: "";
  display: block;
  width: 25px;
  height: 12px;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.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 .ingredients-nav .swiper-button-next::after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNSIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDI1IDEyIiBmaWxsPSJub25lIj48cGF0aCBkPSJNMjQuMzA4OCA2LjE4Nzg3QzI0LjYwODIgNS44ODg0NyAyNC42MDgyIDUuNDAzMDQgMjQuMzA4OCA1LjEwMzY0TDE5LjQyOTcgMC4yMjQ2MDZDMTkuMTMwMyAtMC4wNzQ3OTYyIDE4LjY0NDkgLTAuMDc0Nzk2MyAxOC4zNDU1IDAuMjI0NjA1QzE4LjA0NjEgMC41MjQwMDcgMTguMDQ2MSAxLjAwOTQzIDE4LjM0NTUgMS4zMDg4NEwyMi42ODI0IDUuNjQ1NzZMMTguMzQ1NSA5Ljk4MjY3QzE4LjA0NjEgMTAuMjgyMSAxOC4wNDYxIDEwLjc2NzUgMTguMzQ1NSAxMS4wNjY5QzE4LjY0NDkgMTEuMzY2MyAxOS4xMzAzIDExLjM2NjMgMTkuNDI5NyAxMS4wNjY5TDI0LjMwODggNi4xODc4N1pNMCA1LjY0NTc1TC0xLjM0MDQ4ZS0wNyA2LjQxMjQyTDIzLjc2NjcgNi40MTI0MkwyMy43NjY3IDUuNjQ1NzZMMjMuNzY2NyA0Ljg3OTA5TDEuMzQwNDhlLTA3IDQuODc5MDlMMCA1LjY0NTc1WiIgZmlsbD0iIzIzMzIyNiIvPjwvc3ZnPg==");
}
.ingredients .ingredients-nav .swiper-button-prev::after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNSIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDI1IDEyIiBmaWxsPSJub25lIj48cGF0aCBkPSJNMC4yMjQ1NTQgNS4xMDM2NEMtMC4wNzQ4NDgyIDUuNDAzMDQgLTAuMDc0ODQ4MiA1Ljg4ODQ3IDAuMjI0NTU0IDYuMTg3ODdMNS4xMDM1OSAxMS4wNjY5QzUuNDAyOTkgMTEuMzY2MyA1Ljg4ODQyIDExLjM2NjMgNi4xODc4MiAxMS4wNjY5QzYuNDg3MjIgMTAuNzY3NSA2LjQ4NzIyIDEwLjI4MjEgNi4xODc4MiA5Ljk4MjY3TDEuODUwOSA1LjY0NTc1TDYuMTg3ODIgMS4zMDg4M0M2LjQ4NzIyIDEuMDA5NDMgNi40ODcyMiAwLjUyNDAwNiA2LjE4NzgyIDAuMjI0NjA0QzUuODg4NDIgLTAuMDc0Nzk3OSA1LjQwMjk5IC0wLjA3NDc5NzkgNS4xMDM1OSAwLjIyNDYwNEwwLjIyNDU1NCA1LjEwMzY0Wk0yNC41MzMzIDUuNjQ1NzVMMjQuNTMzMyA0Ljg3OTA5TDAuNzY2NjY4IDQuODc5MDlMMC43NjY2NjggNS42NDU3NUwwLjc2NjY2OCA2LjQxMjQyTDI0LjUzMzMgNi40MTI0MkwyNC41MzMzIDUuNjQ1NzVaIiBmaWxsPSIjMjMzMjI2Ii8+PC9zdmc+");
}
.ingredients .ingredient-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  text-align: center;
  padding: 20px 20px 40px;
  border-bottom: 2px solid #003f2d;
  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: #233226;
}
.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: #f8fff6;
  padding: 60px 0 40px;
}
.intro .intro-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(35, 50, 38, 0.15);
}
@media (max-width: 900px) {
  .intro .intro-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.intro .title {
  margin: 0;
  color: #233226;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
}
@media (max-width: 900px) {
  .intro .title {
    font-size: 28px;
  }
}
.intro .subtitle {
  margin: 0;
  max-width: 320px;
  color: #233226;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  text-align: right;
}
@media (max-width: 900px) {
  .intro .subtitle {
    max-width: 100%;
    text-align: left;
  }
}
.intro .intro-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}
@media (max-width: 900px) {
  .intro .intro-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.intro .content {
  display: grid;
  gap: 20px;
}
.intro p {
  margin: 0;
  color: #233226;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: normal;
}
.intro .checks {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}
.intro .checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(35, 50, 38, 0.08);
  border: 1px solid #e5e5e5;
  color: #233226;
  font-size: 18px;
  font-weight: 400;
  font-weight: 600;
}
.intro .checks li img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.intro .media img {
  width: 100%;
  height: auto;
}

.testemonials {
  background: #f8fff6;
  overflow-x: hidden;
}
.testemonials .header {
  display: grid;
  text-align: center;
  gap: 8px;
  margin-bottom: 48px;
}
.testemonials .title {
  margin: 0;
  font-size: 48px;
  color: #233226;
}
.testemonials .disclaimer {
  color: #233226;
  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: #ffd755;
  border-bottom: 4px solid #8e7c02;
  transition: filter 0.3s ease, transform 0.3s ease;
}
.testemonials .swiper-button-prev::after,
.testemonials .swiper-button-next::after {
  content: "";
  display: block;
  width: 25px;
  height: 12px;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.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-next::after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNSIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDI1IDEyIiBmaWxsPSJub25lIj48cGF0aCBkPSJNMjQuMzA4OCA2LjE4Nzg3QzI0LjYwODIgNS44ODg0NyAyNC42MDgyIDUuNDAzMDQgMjQuMzA4OCA1LjEwMzY0TDE5LjQyOTcgMC4yMjQ2MDZDMTkuMTMwMyAtMC4wNzQ3OTYyIDE4LjY0NDkgLTAuMDc0Nzk2MyAxOC4zNDU1IDAuMjI0NjA1QzE4LjA0NjEgMC41MjQwMDcgMTguMDQ2MSAxLjAwOTQzIDE4LjM0NTUgMS4zMDg4NEwyMi42ODI0IDUuNjQ1NzZMMTguMzQ1NSA5Ljk4MjY3QzE4LjA0NjEgMTAuMjgyMSAxOC4wNDYxIDEwLjc2NzUgMTguMzQ1NSAxMS4wNjY5QzE4LjY0NDkgMTEuMzY2MyAxOS4xMzAzIDExLjM2NjMgMTkuNDI5NyAxMS4wNjY5TDI0LjMwODggNi4xODc4N1pNMCA1LjY0NTc1TC0xLjM0MDQ4ZS0wNyA2LjQxMjQyTDIzLjc2NjcgNi40MTI0MkwyMy43NjY3IDUuNjQ1NzZMMjMuNzY2NyA0Ljg3OTA5TDEuMzQwNDhlLTA3IDQuODc5MDlMMCA1LjY0NTc1WiIgZmlsbD0iIzIzMzIyNiIvPjwvc3ZnPg==");
}
.testemonials .swiper-button-prev::after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNSIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDI1IDEyIiBmaWxsPSJub25lIj48cGF0aCBkPSJNMC4yMjQ1NTQgNS4xMDM2NEMtMC4wNzQ4NDgyIDUuNDAzMDQgLTAuMDc0ODQ4MiA1Ljg4ODQ3IDAuMjI0NTU0IDYuMTg3ODdMNS4xMDM1OSAxMS4wNjY5QzUuNDAyOTkgMTEuMzY2MyA1Ljg4ODQyIDExLjM2NjMgNi4xODc4MiAxMS4wNjY5QzYuNDg3MjIgMTAuNzY3NSA2LjQ4NzIyIDEwLjI4MjEgNi4xODc4MiA5Ljk4MjY3TDEuODUwOSA1LjY0NTc1TDYuMTg3ODIgMS4zMDg4M0M2LjQ4NzIyIDEuMDA5NDMgNi40ODcyMiAwLjUyNDAwNiA2LjE4NzgyIDAuMjI0NjA0QzUuODg4NDIgLTAuMDc0Nzk3OSA1LjQwMjk5IC0wLjA3NDc5NzkgNS4xMDM1OSAwLjIyNDYwNEwwLjIyNDU1NCA1LjEwMzY0Wk0yNC41MzMzIDUuNjQ1NzVMMjQuNTMzMyA0Ljg3OTA5TDAuNzY2NjY4IDQuODc5MDlMMC43NjY2NjggNS42NDU3NUwwLjc2NjY2OCA2LjQxMjQyTDI0LjUzMzMgNi40MTI0MkwyNC41MzMzIDUuNjQ1NzVaIiBmaWxsPSIjMjMzMjI2Ii8+PC9zdmc+");
}
.testemonials .swiper-button-prev {
  left: 8px;
}
.testemonials .swiper-button-next {
  right: 8px;
}
.testemonials .testemonial-card {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(90deg, #233226 0%, #405c45 63.68%, #233226 100%);
  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: 16px;
}
.testemonials .testemonial-card .content .author .verified img {
  width: 20px;
  height: 20px;
  margin: 0;
  max-width: none;
}
.testemonials .order-btn {
  margin: 48px auto 0;
  width: auto;
  max-width: 320px;
  padding: 16px 64px;
  text-wrap: nowrap;
  color: #0e0d11;
  background: linear-gradient(180deg, #35f60f 0%, #1fa604 100%);
}
.testemonials .order-btn::before {
  filter: brightness(0);
}
.testemonials .order-btn:hover {
  box-shadow: 0 8px 25px rgba(1, 255, 1, 0.4);
}

.shipping {
  background: linear-gradient(90deg, #233226 0%, #405c45 63.68%, #233226 100%);
  backdrop-filter: blur(100px);
  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: 115px;
}
@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: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 130%;
}
.shipping .shipping-content small {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.54px;
}

.area-kits {
  background: #fff;
}
.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: #233226 !important;
  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: #233226;
  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: #f5f5f5;
}
@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: #003f2d;
}
.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: #233226;
  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: #233226;
  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: 44%;
  }
}
.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("../../assets/img/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: 220px;
}
@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: #233226;
  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: #233226;
  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: #233226;
  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(../../assets/img/checkverde.svg);
}
.area-kits .container ul ul li.orrivi::before {
  content: url(../../assets/img/checkvermelho.svg);
}
.area-kits .container ul ul li.morromeno::before {
  content: url(../../assets/img/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%;
}
.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: #233226;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}
@media (max-width: 900px) {
  .area-kits .container ul .footer .valores * {
    font-size: 14px;
  }
}
@media (max-width: 375px) {
  .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: #233226;
}
.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: #fff5e5;
}
.area-kits .container .best-option .header {
  font-weight: bold;
  background: linear-gradient(270deg, #f28a1a 0%, #ffc573 23.08%, #ffc573 49.52%, #ffc573 72.65%, #f28a1a 100%) !important;
  color: #233226;
  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 {
  transform-origin: center;
  animation: ctaPulse 2.4s ease-in-out infinite;
}
.area-kits .container .best-option .button .cursor {
  transform-origin: top left;
  animation: ctaTap 2.4s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 70%, 100% {
    transform: scale(1);
  }
  78% {
    transform: scale(0.95);
  }
  86% {
    transform: scale(1.02);
  }
}
@keyframes ctaTap {
  0% {
    transform: translate(40px, 30px) scale(1);
    opacity: 0;
  }
  18% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  70% {
    transform: translate(0, 0) scale(1);
  }
  78% {
    transform: translate(0, 0) scale(0.82);
  }
  86% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}
@media (max-width: 900px) {
  .area-kits .container .best-option {
    grid-row: 1;
  }
  .area-kits .container .best-option .area-img {
    margin-top: 10px;
  }
  .area-kits .container .k3 {
    grid-row: 2;
  }
}

.guarantee {
  background: url("/assets/img/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;
  background: linear-gradient(180deg, #35f60f 0%, #1fa604 100%);
}
.guarantee .guarantee-content .btn::before {
  filter: brightness(0);
}
.guarantee .guarantee-content .btn:hover {
  box-shadow: 0 8px 25px rgba(1, 255, 1, 0.4);
}
@media (max-width: 900px) {
  .guarantee .guarantee-content .btn {
    width: 100%;
  }
}

.faq {
  background-image: url(../../assets/img/linhas.svg);
  background-color: #fff;
  background-attachment: fixed;
  border-top: 1px solid #ffd755;
  border-bottom: 1px solid #ffd755;
}
.faq .container {
  max-width: 934px !important;
}
.faq .container > span {
  color: #003f2d;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}
.faq .title {
  text-align: center;
  margin: 0 auto 48px;
  color: #003f2d;
}
.faq .days_gua {
  color: #003f2d;
}
.faq .accordion {
  display: grid;
  gap: 16px;
  margin-bottom: 48px;
  background: #fff;
}
.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: #233226;
  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: #fff;
  border: 2px solid #233226;
}
.faq .item.active .header::after {
  transform: rotate(180deg);
  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="%23233226"/></svg>') no-repeat center;
  background-size: contain;
}
.faq .item.active .header {
  border-radius: 10px;
}
.faq .item.active .header p {
  color: #233226;
}
.faq .item.active .body {
  padding-top: 20px;
  padding-bottom: 20px;
  max-height: 600px;
  overflow: auto;
  background-color: #233226;
}
.faq .btn {
  margin-bottom: 35px;
}

footer {
  border-top: 1px solid rgba(225, 224, 224, 0.6078431373);
  background: #233226;
}
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: #fff;
  padding: 32px;
  gap: 8px;
}
footer .copy span {
  font-size: 18px;
  color: #233226;
}
@media (max-width: 900px) {
  footer .copy span {
    font-size: 12px;
  }
}
footer .copy small {
  font-size: 14px;
  color: #233226;
}/*# sourceMappingURL=style.css.map */