@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 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;
  }
}

.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(../../assets/img/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(../../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;
  }
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.title,
h1 {
  color: #fff;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}
@media (max-width: 900px) {
  .title,
  h1 {
    font-size: 30px;
  }
}
.title b,
h1 b {
  color: #fff;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 135%;
}
@media (max-width: 900px) {
  .title b,
  h1 b {
    font-size: 30px;
  }
}

header {
  position: relative;
  background: #0b0a0a;
  text-align: center;
  padding: 20px 0;
}
header::after {
  content: "";
  width: 161px;
  height: 39px;
  display: block;
  position: absolute;
  background: url(../../assets/img/divisor.svg) no-repeat;
  background-position-x: 0%;
  background-position-y: 0%;
  background-size: auto;
  background-size: contain;
  background-position: center;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
header > .container {
  display: grid;
  max-width: 820px;
  gap: 12px;
  justify-items: center;
  justify-items: center;
}
header h1 {
  text-transform: uppercase;
  font-size: 40px;
}
@media (max-width: 900px) {
  header h1 {
    font-size: 28px;
  }
}
header #contador {
  display: inline-flex;
  color: #ffdc17;
  text-align: center;
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  gap: 16px;
  align-items: center;
}
header #contador::before {
  content: "";
  width: 72px;
  height: 72px;
  display: block;
  background: url(../../assets/img/clock.svg) no-repeat;
  background-position-x: 0%;
  background-position-y: 0%;
  background-size: auto;
  background-size: contain;
  background-position: center;
}

.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;
}

.benefits {
  position: relative;
  overflow: hidden;
}
.benefits .bg_ {
  position: absolute;
  right: 0;
  mix-blend-mode: luminosity;
  top: 0;
  -o-object-fit: none;
     object-fit: none;
}
@media (max-width: 900px) {
  .benefits .bg_ {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.benefits .content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
}
.benefits .content .text {
  max-width: 500px;
  display: grid;
  gap: 24px;
}
.benefits .content .text .area-title {
  display: grid;
  gap: 16px;
}
.benefits .content .text .title,
.benefits .content .text p {
  margin: 0;
}
.benefits .content .text .title {
  font-weight: 700;
  line-height: 130%;
  font-size: 36px;
  font-weight: 600;
  line-height: 130%;
}
.benefits .content .text p {
  color: #cfcfcf;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.54px;
}
.benefits .content .text ul {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 900px) {
  .benefits .content .text ul {
    margin-bottom: 24px;
  }
}
.benefits .content .text ul li {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.benefits .content .text ul li::before {
  content: "";
  width: 12px;
  height: 12px;
  padding: 8px;
  display: block;
  background: url(../../assets/img/checkverde.svg) no-repeat;
  background-size: contain;
  background-position: center;
}

.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: #211915;
  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: #211915;
  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("../../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: 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(../../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: #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: pulsar alternate infinite 0.7s;
}
@keyframes pulsar {
  to {
    transform: scale(1.06);
  }
}
@media (max-width: 900px) {
  .area-kits .container .best-option {
    grid-row: 1;
  }
  .area-kits .container .k3 {
    grid-row: 2;
  }
}

.guarantee-section {
  background-color: #F5FAFF;
  padding: 0 0 80px;
}
@media (max-width: 992px) {
  .guarantee-section {
    padding: 0 0 56px;
  }
}
@media (max-width: 768px) {
  .guarantee-section {
    padding: 0 0 40px;
  }
}

.guarantee-block {
  padding: 40px 80px;
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: 487px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #211915;
}
@media (max-width: 992px) {
  .guarantee-block {
    padding: 40px 48px;
    gap: 40px;
    min-height: 0;
  }
}
@media (max-width: 768px) {
  .guarantee-block {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 24px;
    border-radius: 20px;
  }
}
.guarantee-block .guarantee-seal {
  flex-shrink: 0;
  width: 333px;
  height: 333px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media (max-width: 992px) {
  .guarantee-block .guarantee-seal {
    width: 240px;
    height: 240px;
  }
}
@media (max-width: 768px) {
  .guarantee-block .guarantee-seal {
    width: 180px;
    height: 180px;
  }
}
@media (max-width: 480px) {
  .guarantee-block .guarantee-seal {
    width: 150px;
    height: 150px;
  }
}
.guarantee-block .guarantee-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
}
@media (max-width: 768px) {
  .guarantee-block .guarantee-content {
    gap: 24px;
    align-items: center;
    width: 100%;
  }
}
.guarantee-block .guarantee-content .guarantee-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .guarantee-block .guarantee-content .guarantee-text {
    gap: 12px;
  }
}
.guarantee-block .guarantee-content .guarantee-headline {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 135%;
  letter-spacing: 2.1px;
  text-transform: uppercase;
}
.guarantee-block .guarantee-content .guarantee-title {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin: 0;
  max-width: 16ch;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 135%;
}
.guarantee-block .guarantee-content .guarantee-title .highlight {
  color: #FBAD41;
}
@media (max-width: 992px) {
  .guarantee-block .guarantee-content .guarantee-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .guarantee-block .guarantee-content .guarantee-title {
    font-size: 26px;
    line-height: 1.25;
  }
}
@media (max-width: 480px) {
  .guarantee-block .guarantee-content .guarantee-title {
    font-size: 22px;
    max-width: 100%;
  }
}
.guarantee-block .guarantee-content .guarantee-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #F3E8F8;
  margin: 0;
}
@media (max-width: 992px) {
  .guarantee-block .guarantee-content .guarantee-desc {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .guarantee-block .guarantee-content .guarantee-desc {
    font-size: 14px;
    line-height: 1.55;
  }
}
.guarantee-block .guarantee-content > a {
  display: block;
}
@media (max-width: 768px) {
  .guarantee-block .guarantee-content > a {
    width: 100%;
    max-width: 320px;
  }
}
@media (max-width: 992px) {
  .guarantee-block .guarantee-content .btn-cta-img {
    max-width: 360px;
    height: auto;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .guarantee-block .guarantee-content .btn-cta-img {
    max-width: 280px;
  }
}
@media (max-width: 480px) {
  .guarantee-block .guarantee-content .btn-cta-img {
    max-width: 240px;
  }
}

.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(../../assets/img/seal.svg) no-repeat;
  background-size: auto;
  background-size: contain;
  background-position: center;
}
@media (max-width: 900px) {
  .faixa li {
    font-size: 20px;
  }
}

.faq {
  background-image: url(../../assets/img/linhas.svg);
  background-color: #101010;
  background-attachment: fixed;
}
.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 {
  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: #050505;
}
footer .container {
  max-width: 1007px;
}
footer .container * {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 1px;
}
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: 32px;
  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;
}
footer .copy small {
  font-size: 14px;
  color: #101010;
}

.btn {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 50px;
  border-bottom: 6px solid #8E7C02;
  background: linear-gradient(180deg, #FFFE4A 0%, #FFD901 100%);
  transition: all 0.6s;
  max-width: 400px;
  color: #0E0D11;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.btn::before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background: url(../../assets/img/cart.svg) no-repeat;
  background-position-x: 0%;
  background-position-y: 0%;
  background-size: auto;
  background-size: contain;
  background-position: center;
}/*# sourceMappingURL=style.css.map */