@keyframes leaf-float-1 {
  0% {
    transform: rotate(0deg);
    opacity: 0.38;
    filter: blur(5px);
  }
  25% {
    transform: rotate(-5deg);
    opacity: 0.5;
    filter: blur(3px);
  }
  50% {
    transform: rotate(3deg);
    opacity: 0.38;
    filter: blur(5px);
  }
  75% {
    transform: rotate(-3deg);
    opacity: 0.45;
    filter: blur(4px);
  }
  100% {
    transform: rotate(0deg);
    opacity: 0.38;
    filter: blur(5px);
  }
}
@keyframes leaf-float-2 {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.38;
    filter: blur(5px);
  }
  20% {
    transform: translate(30px, -40px) rotate(15deg);
    opacity: 0.5;
    filter: blur(3px);
  }
  40% {
    transform: translate(-50px, 60px) rotate(-20deg);
    opacity: 0.42;
    filter: blur(4px);
  }
  60% {
    transform: translate(70px, 30px) rotate(10deg);
    opacity: 0.48;
    filter: blur(3.5px);
  }
  80% {
    transform: translate(-40px, -50px) rotate(-15deg);
    opacity: 0.45;
    filter: blur(4.5px);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.38;
    filter: blur(5px);
  }
}
@keyframes leaf-float-3 {
  0% {
    transform: rotate(0deg);
    opacity: 0.38;
    filter: blur(5px);
  }
  30% {
    transform: rotate(4deg);
    opacity: 0.48;
    filter: blur(3.5px);
  }
  60% {
    transform: rotate(-6deg);
    opacity: 0.4;
    filter: blur(4.5px);
  }
  100% {
    transform: rotate(0deg);
    opacity: 0.38;
    filter: blur(5px);
  }
}
@keyframes leaf-float-4 {
  0% {
    transform: rotate(0deg);
    opacity: 0.38;
    filter: blur(5px);
  }
  40% {
    transform: rotate(-4deg);
    opacity: 0.46;
    filter: blur(4px);
  }
  70% {
    transform: rotate(5deg);
    opacity: 0.42;
    filter: blur(4.2px);
  }
  100% {
    transform: rotate(0deg);
    opacity: 0.38;
    filter: blur(5px);
  }
}
.leaf {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.leaf.leaf-1 {
  animation: leaf-float-1 6s ease-in-out infinite;
}
.leaf.leaf-2 {
  animation: leaf-float-2 12s ease-in-out infinite;
}
.leaf.leaf-3 {
  animation: leaf-float-3 7s ease-in-out infinite;
}
.leaf.leaf-4 {
  animation: leaf-float-4 8s ease-in-out infinite;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  color: #5d5d5d;
  font-family: "DM Sans", sans-serif;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f3ffee;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #19715c 0%, #0b2a23 100%);
  border-radius: 6px;
  border: 2px solid #f3ffee;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #7ed6a7 0%, #19715c 100%);
}

* {
  scrollbar-width: thin;
  scrollbar-color: #19715c #f3ffee;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 90%;
}

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

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

.title {
  font-size: 48px;
  font-weight: normal;
  line-height: 130%;
  margin-bottom: 10px;
}
@media (max-width: 900px) {
  .title {
    font-size: 30px;
  }
}
.title b {
  font-weight: 700;
  color: #19715c;
}
.title.light {
  color: #fff;
}
.title.light b {
  color: #7ed6a7;
}

.subtitle {
  font-size: 18px;
  display: block;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 32px;
}

.btn {
  display: flex;
  color: #0b2a23;
  padding: 18px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  max-width: 350px;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 50px;
  border-bottom: 6px solid #8c5b00;
  background: linear-gradient(180deg, #ffd900 0%, #ba7f00 100%);
  transition: 0.3s ease;
}
.btn::before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background: url("../../assets/img/cart.svg") no-repeat center;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

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

.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 2;
}
.bg .leave {
  position: absolute;
}
.bg .leave.l1 {
  top: 10%;
  left: 0%;
}
.bg .leave.l2 {
  bottom: 20%;
  left: 10%;
}
.bg .leave.l3 {
  bottom: 0%;
  right: 0%;
}
.bg .leave.l4 {
  top: 5%;
  right: 0%;
}

header {
  background: #e6ebec;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  padding: 24px 0;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .container ul {
  display: flex;
  gap: 32px;
}
header .container ul a {
  color: #0b2a23;
  font-size: 18px;
  transition: 0.3s ease;
}
header .container ul a:hover {
  color: #19715c;
}
@media (max-width: 900px) {
  header {
    display: none;
  }
}

h1 {
  font-size: 60px;
  line-height: 130%;
  color: #fff;
  font-weight: normal;
  margin-bottom: 16px;
}
@media (max-width: 900px) {
  h1 {
    font-size: 32px;
  }
}
h1 b {
  background: linear-gradient(180deg, var(--Cor-verde-claro, #7ed6a7) 0%, #c4ffe0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  font-size: 18px;
}
@media (max-width: 900px) {
  p {
    font-size: 16px;
  }
}

main {
  padding: 137px 0;
  background: url("../../assets/img/bg.png") no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}
@media (max-width: 900px) {
  main {
    padding: 60px 0 200px;
    background-image: url(../../assets/img/bg-mob.webp);
  }
}
main .content {
  max-width: 500px;
  width: 100%;
}
main .content .rating {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.25);
  padding: 5px 24px;
  gap: 10px;
  color: #fff;
  font-size: 12px;
  margin-bottom: 16px;
}
main .content p {
  color: #f3ffee;
  margin-bottom: 32px;
}
main .content .area-btn {
  display: grid;
  gap: 10px;
}
main .content .area-btn ul {
  display: flex;
  gap: 22px;
}
main .content .area-btn ul li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px;
  align-items: center;
  color: #f3ffee;
  font-size: 12px;
}

.range {
  background: #19715c;
  padding: 10px 0;
}
.range .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
  .range .container {
    grid-template-columns: repeat(2, 1fr);
  }
}
.range .container li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 10px 0 10px;
  color: #fff;
  border-right: rgba(255, 255, 255, 0.4) 1px solid;
}
@media (max-width: 900px) {
  .range .container li {
    padding: 10px;
    font-size: 12px;
    justify-content: start;
  }
  .range .container li img {
    width: 20px;
  }
}
.range .container li:last-child, .range .container li:nth-child(2n) {
  border-right: none;
}

.about {
  background: url(../../assets/img/g-about.png) no-repeat center;
  background-size: cover;
}
@media (max-width: 900px) {
  .about {
    background-size: contain;
    background-position: bottom;
    padding-bottom: 100px;
  }
}
.about .container {
  display: flex;
  justify-content: flex-end;
}
.about .container .content {
  max-width: 530px;
}
.about .container .content .title {
  margin-bottom: 16px;
}
.about .container .content article {
  padding-left: 10px;
  border-left: 1px solid #19715c;
  display: grid;
  gap: 30px;
  margin-bottom: 40px;
}
.about .container .content article b {
  color: #19715c;
}
.about .container .content ul {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.about .container .content ul li {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  gap: 10px;
  border-radius: 50px;
  border: 1px solid #d4d4d4;
  background: #fff;
}
.about .container .content ul li::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: url("../../assets/img/check.svg") no-repeat center;
  background-size: contain;
}

.benefits {
  background: url(../../assets/img/bg-why.png) no-repeat center;
  background-size: cover;
  padding: 80px 0;
  position: relative;
  background-attachment: fixed;
}
.benefits .divider {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -5%;
}
@media (max-width: 900px) {
  .benefits .divider {
    max-width: 30px;
    top: -1%;
  }
}
.benefits .container {
  display: grid;
  gap: 30px;
}
.benefits .container .subtitle {
  color: #f3ffee;
  margin-bottom: 0;
  text-align: center;
}
.benefits .container .area-title {
  text-align: center;
}
.benefits .container .area-items {
  display: grid;
  gap: 18px;
}
@media (max-width: 900px) {
  .benefits .container .area-items {
    grid-template-columns: 40px 1fr;
  }
}
.benefits .container .area-items .timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .benefits .container .area-items .timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    position: relative;
  }
}
.benefits .container .area-items .timeline::after {
  content: "";
  grid-column: 1/-1;
  height: 2px;
  background: linear-gradient(90deg, #a0a0a0 0%, #fff 15.56%, #e7e7e7 26.95%, rgba(255, 255, 255, 0.78) 44.88%, rgba(229, 229, 229, 0.58) 59.63%, rgba(192, 192, 192, 0.3) 81.32%, rgba(192, 192, 192, 0.05) 89.42%, rgba(192, 192, 192, 0) 100%);
  margin-top: -20px;
}
@media (max-width: 900px) {
  .benefits .container .area-items .timeline::after {
    height: 100%;
    margin-top: 0;
    position: absolute;
    width: 2px;
    background: linear-gradient(180deg, #a0a0a0 0%, #fff 15.56%, #e7e7e7 26.95%, rgba(255, 255, 255, 0.78) 44.88%, rgba(229, 229, 229, 0.58) 59.63%, rgba(192, 192, 192, 0.3) 81.32%, rgba(192, 192, 192, 0.05) 89.42%, rgba(192, 192, 192, 0) 100%);
  }
}
.benefits .container .area-items .timeline span {
  display: block;
  position: relative;
  z-index: 10;
  width: 39px;
  height: 39px;
  background: #f3ffee;
  border-radius: 50%;
  border: 3px solid #7ed6a7;
}
.benefits .container .area-items .timeline span:nth-child(2) {
  margin-left: 20px;
}
@media (max-width: 900px) {
  .benefits .container .area-items .timeline span:nth-child(2) {
    margin-left: 0;
  }
}
.benefits .container .area-items .timeline span:nth-child(3) {
  margin-left: 40px;
}
@media (max-width: 900px) {
  .benefits .container .area-items .timeline span:nth-child(3) {
    margin-left: 0;
  }
}
.benefits .container .area-items .timeline span {
  box-shadow: inset 0 0 0 8px #0b2a23;
}
.benefits .container .area-items ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 900px) {
  .benefits .container .area-items ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
.benefits .container .area-items ul li {
  background: #f3ffee;
  border-radius: 10px;
  padding: 40px;
}
@media (max-width: 900px) {
  .benefits .container .area-items ul li {
    padding: 20px;
  }
}
.benefits .container .area-items ul li img {
  margin-bottom: 30px;
}
.benefits .container .area-items ul li h3 {
  color: #0b2a23;
  margin-bottom: 10px;
  font-size: 24px;
}
@media (max-width: 900px) {
  .benefits .container .area-items ul li h3 {
    font-size: 18px;
  }
}
.benefits .container .btn {
  margin: 0 auto;
}

.ingredients {
  position: relative;
  background: rgba(154, 223, 186, 0.2509803922);
}
.ingredients .area {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 64px;
}
@media (max-width: 900px) {
  .ingredients .area {
    flex-direction: column;
    gap: 40px;
  }
}
.ingredients .head {
  max-width: 489px;
  width: 100%;
  position: sticky;
  top: 0;
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 8px;
}
@media (max-width: 900px) {
  .ingredients .head {
    position: relative;
    top: auto;
    min-height: 0;
    max-height: none;
    max-width: 100%;
  }
}
.ingredients .head .title {
  margin-bottom: 16px;
}
.ingredients .cards {
  position: relative;
  display: grid;
  gap: 32px;
  max-width: 619px;
  width: 100%;
}
.ingredients .cards::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: -33px;
  width: 2px;
  background: linear-gradient(180deg, #7ed6a7 0%, #19715c 100%);
}
@media (max-width: 1100px) {
  .ingredients .cards::before {
    display: none;
  }
}
.ingredients .cards li {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(11, 42, 35, 0.06);
}
@media (max-width: 900px) {
  .ingredients .cards li {
    padding: 24px;
  }
}
.ingredients .cards li::before {
  content: "";
  position: absolute;
  top: 36px;
  left: -49px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f3ffee;
  border: 8px solid #0b2a23;
  box-shadow: 0 0 0 2px #7ed6a7;
}
@media (max-width: 1100px) {
  .ingredients .cards li::before {
    display: none;
  }
}
.ingredients .cards li h3 {
  color: #19715c;
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 8px;
}
@media (max-width: 900px) {
  .ingredients .cards li h3 {
    font-size: 20px;
  }
}
.ingredients .cards li p {
  font-size: 18px;
  margin-bottom: 32px;
}
.ingredients .cards li img {
  display: block;
  border-radius: 10px;
  width: 100%;
  height: 147px;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonials {
  overflow: hidden;
  text-align: center;
  padding: 80px 0;
}
@media (max-width: 900px) {
  .testimonials {
    padding: 60px 0;
  }
}
.testimonials .area-title {
  margin-bottom: 56px;
}
@media (max-width: 900px) {
  .testimonials .area-title {
    margin-bottom: 32px;
  }
}
.testimonials .area-title .rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #0b2a23;
  margin-bottom: 16px;
}
.testimonials .area-title .title {
  margin-bottom: 0;
  font-weight: 800;
  font-size: 48px;
  color: #0B2A23;
}
@media (max-width: 900px) {
  .testimonials .area-title .title {
    font-size: 32px;
  }
}
.testimonials .testi-swiper {
  width: 100%;
  overflow: visible;
}
.testimonials .testi-swiper .swiper-wrapper {
  align-items: stretch;
}
.testimonials .testi-swiper .swiper-slide {
  height: auto;
}
.testimonials .testi-card {
  background: #f3ffee;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.testimonials .testi-card img {
  display: block;
  border-radius: 10px;
  width: 100%;
  height: 258px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 24px;
}
.testimonials .testi-card p {
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 24px;
  flex: 1;
}
.testimonials .testi-card__author {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 6px 16px;
}
.testimonials .testi-card__info {
  display: flex;
  flex-direction: column;
}
.testimonials .testi-card__info strong {
  color: #0b2a23;
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
}
.testimonials .testi-card__info span {
  font-size: 14px;
}
.testimonials .testi-card__stars {
  grid-column: 1;
  color: #ffb800;
  letter-spacing: 2px;
  font-size: 14px;
}
.testimonials .testi-card__verified {
  grid-column: 2;
  grid-row: 1/span 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #00c450;
  white-space: nowrap;
}
.testimonials .testi-card__verified img {
  width: 16px;
  height: 16px;
  margin: 0;
  border-radius: 0;
}
.testimonials .testi-pagination {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  margin-bottom: 20px;
}
.testimonials .testi-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  background: #c5d8e4;
  opacity: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.testimonials .testi-pagination .swiper-pagination-bullet-active {
  background: #0b2a23;
}

.shipping {
  position: relative;
  background: linear-gradient(120deg, #19715c 0%, #0b2a23 100%);
  padding: 88px 0 56px;
  text-align: center;
}
@media (max-width: 900px) {
  .shipping {
    padding: 64px 0 40px;
  }
}
.shipping .badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  width: 156px;
  height: 156px;
}
.shipping .badge img {
  width: 100%;
  height: 100%;
}
@media (max-width: 900px) {
  .shipping .badge {
    width: 156px;
    height: 156px;
    position: relative;
    top: 0;
    left: 0%;
    transform: translate(0%, 0%);
    margin-bottom: 16px;
  }
}
.shipping h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 8px;
}
@media (max-width: 900px) {
  .shipping h2 {
    font-size: 32px;
  }
}
.shipping h2 b {
  font-weight: 700;
  color: #fff !important;
}
.shipping .subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin-bottom: 0;
}

.price {
  text-align: center;
}
.price .area-title .title {
  font-weight: 700;
  color: #0b2a23;
}
.price .area-title .subtitle {
  color: #4d5d4d;
  margin-bottom: 0;
}
.price .area-kits__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 24px;
  margin-top: 56px;
  margin-bottom: 40px;
}
@media (max-width: 1100px) {
  .price .area-kits__list {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 32px auto 0;
  }
}
.price .kit-option {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #faffff;
  border: 1px solid #81bcbd;
  border-bottom: 10px solid #81bcbd;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
}
.price .kit-option--popular {
  background: #f0ffff;
  border-color: #19715c;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.25);
  height: 105%;
  top: -3%;
}
.price .kit-option--popular .kit-option__header {
  background: #19715c;
}
.price .kit-option--popular .kit-option__inner {
  padding-top: 62px;
}
@media (max-width: 1100px) {
  .price .kit-option--popular {
    order: -1;
  }
  .price .kit-option--popular .kit-option__inner {
    padding-top: 24px;
  }
}
.price .kit-option__link {
  position: absolute;
  inset: 0;
  z-index: 4;
}
.price .kit-option__header {
  background: #0b2a23;
  padding: 20px;
}
.price .kit-option__header span {
  display: block;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
}
.price .kit-option--popular .price .kit-option__header {
  background: #19715c;
}
.price .kit-option__inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 24px;
  padding: 24px 30px 40px;
}
@media (max-width: 1100px) {
  .price .kit-option__inner {
    padding: 24px 14px 40px;
  }
}
.price .kit-option__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.price .kit-option__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}
.price .kit-option .kit-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.price .kit-option .area-img {
  position: relative;
  width: 100%;
}
.price .kit-option .area-img img {
  max-width: 280px;
  margin: 0 auto;
}
.price .kit-option > .kit-option__inner > .kit-option__main > strong {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.35;
  color: #0b2a23;
}
.price .kit-option .days {
  display: block;
  margin-top: -10px;
  font-size: 18px;
  color: #4d5d4d;
}
.price .kit-option .price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  text-align: left;
}
.price .kit-option .price strong {
  font-size: 80px;
  font-weight: 700;
  line-height: 1.3;
  color: #0b2a23;
}
.price .kit-option .price div {
  font-size: 20px;
  font-weight: 500;
  color: #4d5d4d;
}
.price .kit-option .divisor {
  display: block;
  width: 100%;
  max-width: 321px;
  height: 1px;
  background: #ededed;
}
.price .kit-option .garantias {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.price .kit-option .garantias li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 10px 10px 20px;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 5px;
  font-size: 18px;
  color: #4d5d4d;
  text-transform: uppercase;
  text-align: left;
}
.price .kit-option .garantia-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}
.price .kit-option .garantia-item--off .garantia-icon {
  width: 28px;
  height: 28px;
}
.price .kit-option .btn-cta {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  transition: 0.3s ease;
}
.price .kit-option .btn-cta img {
  width: 100%;
}
.price .kit-option .btn-cta:hover {
  transform: translateY(-2px);
}
.price .kit-option .bandeiras {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  width: 90%;
}
@media (max-width: 1100px) {
  .price .kit-option .bandeiras {
    width: 100%;
  }
}
.price .kit-option .bandeiras li {
  padding: 4px 10px;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #4d5d4d;
  text-transform: uppercase;
}
.price .kit-option .valores {
  font-size: 18px;
  font-weight: 600;
  color: #0b2a23;
  margin-bottom: 0;
}
@media (max-width: 415px) {
  .price .kit-option .valores {
    font-size: 14px;
  }
}
.price .kit-option .valores s {
  margin: 0 4px;
  font-weight: 500;
  color: #7c4f4f;
  text-decoration: line-through;
}
.price .kit-option .save {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #f43030;
  color: #fff;
  line-height: 1.15;
  text-align: center;
  transform: rotate(-12deg);
}
.price .kit-option .save strong,
.price .kit-option .save small {
  font-size: 11px;
  font-weight: 500;
}
.price .kit-option .save b {
  font-size: 16px;
  font-weight: 700;
}
.price .kit-option .frete {
  position: absolute;
  top: 20px;
  left: -38px;
  z-index: 2;
  display: block;
  width: 150px;
  padding: 6px 0;
  background: linear-gradient(180deg, #ffd900 0%, #ba7f00 100%);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  color: #0b2a23;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-35deg);
}
@media (max-width: 900px) {
  .price .kit-option > .kit-option__inner > .kit-option__main > strong {
    font-size: 28px;
  }
  .price .kit-option .price strong {
    font-size: 56px;
  }
}
@media (max-width: 1100px) {
  .price .kit-option__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: center;
  }
  .price .kit-option .kit-col--left {
    align-items: center;
    text-align: center;
  }
  .price .kit-option .kit-col--right {
    align-items: stretch;
    text-align: left;
  }
  .price .kit-option .kit-col--right .price {
    justify-content: flex-start;
  }
  .price .kit-option .kit-col--right .divisor {
    max-width: 100%;
  }
  .price .kit-option .area-img img {
    max-width: 100%;
  }
  .price .kit-option .garantias li {
    font-size: 12px;
    padding: 8px 8px 8px 12px;
    gap: 10px;
  }
  .price .kit-option .garantia-icon {
    width: 28px;
    height: 28px;
  }
  .price .kit-option .garantia-item--off .garantia-icon {
    width: 22px;
    height: 22px;
  }
  .price .kit-option .price strong {
    font-size: 48px;
  }
  .price .kit-option .price div {
    font-size: 16px;
  }
}

.guarantee {
  position: relative;
  background: linear-gradient(62deg, #0b2a23 0%, #3f7c6c 50%, #0b2a23 100%);
  padding: 170px 0 80px;
  text-align: center;
}
@media (max-width: 900px) {
  .guarantee {
    padding: 110px 0 56px;
  }
}
.guarantee .badge {
  position: absolute;
  z-index: 2;
  top: -76px;
  left: 50%;
  transform: translateX(-50%);
  width: 224px;
  height: auto;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.25));
}
@media (max-width: 900px) {
  .guarantee .badge {
    width: 140px;
    top: -50px;
  }
}
.guarantee .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.guarantee .txt {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 1014px;
  margin: 0 auto;
}
.guarantee .title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0;
}
.guarantee p {
  color: #fff;
}
.guarantee .btn {
  margin: 0 auto;
}

.faq {
  background: #f0ffff;
  text-align: center;
}
.faq .area-title {
  position: relative;
  margin-bottom: 48px;
}
.faq .area-title .title {
  position: relative;
  z-index: 2;
  color: #0b2a23;
  font-weight: 700;
  margin-bottom: 0;
}
.faq .area-title::before {
  content: "faq";
  position: absolute;
  z-index: 1;
  top: -103px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 140px;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(180deg, rgba(3, 93, 4, 0.2) 14%, rgba(3, 93, 4, 0) 187%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  pointer-events: none;
}
@media (max-width: 900px) {
  .faq .area-title::before {
    font-size: 90px;
    top: -65px;
  }
}
.faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
  text-align: left;
}
.faq .faq-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s ease;
}
.faq .faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 16px;
  cursor: pointer;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 20px;
  font-weight: 500;
  color: #5d5d5d;
  transition: 0.3s ease;
}
.faq .faq-item__question::-webkit-details-marker {
  display: none;
}
.faq .faq-item__question::marker {
  display: none;
}
.faq .faq-item__question span {
  transition: color 0.3s ease;
}
.faq .faq-item__icon {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid #5d5d5d;
  border-bottom: 2px solid #5d5d5d;
  transform: rotate(45deg);
  transition: 0.3s ease;
}
.faq .faq-item__answer {
  padding: 16px 16px 24px;
}
.faq .faq-item__answer p {
  text-align: left;
  font-size: 16px;
  line-height: 1.4;
}
.faq .faq-item[open] .faq-item__question {
  background: #0b2a23;
  color: #fff;
}
.faq .faq-item[open] .faq-item__question span {
  color: #fff;
}
.faq .faq-item[open] .faq-item__icon {
  border-color: #fff;
  transform: rotate(225deg);
}
.faq .btn {
  margin: 0 auto;
}

footer {
  background: #0b2a23;
  padding-top: 80px;
  text-align: center;
}
@media (max-width: 900px) {
  footer {
    padding-top: 60px;
  }
}
footer .top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
footer .logo-text {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.48px;
  color: #fff;
  margin-bottom: 0;
}
footer .logo-text span {
  color: #7ed6a7;
}
footer .links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 0 20px;
}
footer .links a {
  font-size: 18px;
  color: #f5f1e8;
  transition: 0.3s ease;
}
footer .links a:hover {
  color: #7ed6a7;
}
footer .disclaimer {
  max-width: 1041px;
  margin: 0 auto;
  padding: 24px 20px;
  border-top: 1px solid #fff;
}
footer .disclaimer p {
  font-size: 16px;
  line-height: 1.4;
  color: #f5f1e8;
}
footer .bottom {
  border-top: 1px solid #7ed6a7;
  padding: 32px 20px;
}
footer .bottom p {
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
  max-width: 455px;
  margin: 0 auto;
}/*# sourceMappingURL=style.css.map */