*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

* {
  color: #586571;
  font-family: "Montserrat", sans-serif;
}

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

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

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

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

.aval {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  margin-bottom: 16px;
}
@media (max-width: 900px) {
  .aval {
    font-size: 14px;
    padding: 4px 8px;
  }
}
.aval img {
  max-width: 100px;
}

span.sub,
.sub {
  display: block;
  text-transform: uppercase;
  color: #021956;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
}
@media (max-width: 900px) {
  span.sub,
  .sub {
    font-size: 16px;
  }
}

.title {
  font-size: 40px;
  color: #021956;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 1.2;
}
.title b {
  color: #d4a84f;
}
@media (max-width: 900px) {
  .title {
    font-size: 28px !important;
  }
}

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

.bg_fixed {
  max-width: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  animation: neural-pulse 3s ease-in-out infinite;
  z-index: -1;
}

.separador {
  margin: 0 auto;
}

.area-titles {
  max-width: 760px;
  display: grid;
  gap: 16px;
  margin-bottom: 64px;
}
.area-titles .sub {
  margin-bottom: 0;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #eff7ff;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: #1fa2ff;
  border-radius: 5px;
  border: 2px solid #eff7ff;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #0d2a45;
}

::-webkit-scrollbar-corner {
  background: #fff;
}

.btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  padding: 18px;
  width: 100%;
  max-width: 400px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  background: linear-gradient(180deg, #35f60f 0%, #1fa604 100%);
  border-bottom: 6px solid #116800;
  box-shadow: 0 8px 20px rgba(31, 166, 4, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.btn::before {
  content: "";
  width: 24px;
  height: 24px;
  margin-right: 16px;
  background: url(../../assets/img/cart.svg) no-repeat center;
  background-size: contain;
  transition: transform 0.25s ease;
}
.btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
  box-shadow: 0 14px 35px rgba(31, 166, 4, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn:hover::before {
  transform: translateX(-4px) scale(1.05);
}
.btn::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(53, 246, 15, 0.6), rgba(31, 166, 4, 0.6));
  opacity: 0;
  filter: blur(14px);
  z-index: -1;
  transition: opacity 0.25s ease;
}
.btn:hover::after {
  opacity: 1;
}
@media (max-width: 900px) {
  .btn {
    font-size: 20px;
  }
}

header {
  background: #fff;
  box-shadow: rgba(106, 115, 129, 0.16) 0px 6px 12px 0px, rgba(106, 115, 129, 0.06) 0px 3px 8px 0px;
  padding: 8px 0;
  width: 100%;
}
header a {
  font-size: 14px;
  font-weight: 600;
}
header a:hover {
  text-decoration: underline;
}
header .logo strong {
  color: red;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .container button {
  border-radius: 8px;
  font-size: 14px;
  background: none;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: bold;
  border: 1px solid #d8d8d8;
}
header .container .left,
header .container .right {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1000px) {
  header .container .right {
    display: none;
  }
}
header .container nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1000px) {
  header .container nav {
    display: none;
  }
}
header .container .logo {
  display: flex;
  align-items: center;
  gap: 4px;
}
header .container .logo strong {
  font-size: 20px;
}

main {
  padding: 40px 0 !important;
}
@media (max-width: 900px) {
  main {
    padding: 20px 0 !important;
  }
}
main .container h1 {
  font-size: 30px;
  margin-bottom: 18px;
  color: #374151;
}
@media (max-width: 900px) {
  main .container h1 {
    font-size: 20px;
  }
}
main .container h1 b {
  color: red !important;
}
main .container p {
  font-size: 20px;
  color: #374151;
  margin-bottom: 16px;
}
@media (max-width: 900px) {
  main .container p {
    font-size: 16px;
  }
}
main .container .infos {
  display: grid;
  gap: 8px;
}
main .container .infos * {
  color: #6e6e6e;
  font-size: 14px;
}
main .container .viewer-counter {
  text-align: center;
  background: rgba(220, 53, 69, 0.1);
  padding: 10px;
  border-radius: 8px;
  color: #c41e3a;
  font-weight: 600;
  margin: 16px auto 20px;
  max-width: 400px;
}
main .container .viewer-counter #viewer-number {
  color: #000;
}
main .container .sociais {
  margin: 8px 0 12px;
}

.promo-banner {
  background: #031E69;
  border-top: 4px solid #d4a84f;
  position: relative;
  padding: 40px 0;
}
.promo-banner h1 {
  color: #fff;
  font-size: 40px;
  line-height: 1;
  max-width: 30ch;
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .promo-banner h1 {
    font-size: 26px;
  }
}
.promo-banner #countdown {
  font-size: 3.375rem;
  color: #fff702;
  display: block;
}

.area-kits .container {
  width: 95%;
}
.area-kits .container .title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: #071623;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .area-kits .container .title {
    font-size: 28px !important;
    margin-bottom: 10px;
  }
}
.area-kits .container .title b {
  color: #d4a84f;
  font-weight: 600;
}
@media (max-width: 768px) {
  .area-kits .container .title b {
    font-size: 28px !important;
  }
}
.area-kits .container .sub {
  margin-bottom: 42px;
  color: #586571;
  text-align: center;
  font-size: 18px;
}
@media (max-width: 768px) {
  .area-kits .container .sub {
    font-size: 15px;
  }
}
.area-kits .container > ul {
  margin-bottom: 68px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: flex-end;
  width: 100%;
  list-style: none;
  padding: 0;
}
@media (max-width: 900px) {
  .area-kits .container > ul {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 24px;
  }
}
.area-kits .container > ul .kit-option > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  text-align: center;
  transition: all 0.6s;
  border: 1px solid rgba(13, 42, 69, 0.4);
  background: #ffffff;
}
.area-kits .container > ul .kit-option > a:hover {
  transform: scale(1.01);
}
@media (max-width: 900px) {
  .area-kits .container > ul .kit-option > a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}
.area-kits .container > ul .kit-option > a .header {
  font-size: 20px;
  width: 100%;
  border-radius: 20px 20px 0 0;
  color: #ffffff;
  text-transform: uppercase;
  padding: 16px;
  line-height: 1;
  background: #021956;
  font-weight: 400;
}
@media (max-width: 900px) {
  .area-kits .container > ul .kit-option > a .header {
    grid-column: -1/1;
    font-size: 18px;
  }
}
.area-kits .container > ul .kit-option > a .main {
  padding: 16px 12px 0;
  width: 100%;
}
@media (max-width: 900px) {
  .area-kits .container > ul .kit-option > a .main {
    padding: 16px 0 16px 10px;
  }
}
.area-kits .container > ul .kit-option > a .main strong {
  font-size: 48px;
  font-weight: 700;
  display: block;
  color: #021956;
  line-height: 1.3;
}
@media (max-width: 900px) {
  .area-kits .container > ul .kit-option > a .main strong {
    font-size: 24px;
    margin-top: -35px;
  }
}
@media (max-width: 370px) {
  .area-kits .container > ul .kit-option > a .main strong {
    font-size: 22px;
  }
}
.area-kits .container > ul .kit-option > a .main .days {
  display: block;
  font-size: 20px;
  font-weight: 400;
  color: #5e7885;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .area-kits .container > ul .kit-option > a .main .days {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
.area-kits .container > ul .kit-option > a .main .area-img {
  position: relative;
}
.area-kits .container > ul .kit-option > a .main .area-img img:not(.frete):not(.selo-garantia) {
  height: 267px;
  position: relative;
  margin: 0 auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 2;
}
@media (max-width: 900px) {
  .area-kits .container > ul .kit-option > a .main .area-img img:not(.frete):not(.selo-garantia) {
    height: auto;
    width: 100%;
    transform: scale(1.14);
  }
}
/* Selo de garantia sobreposto a foto dos potes */
.area-kits .container > ul .kit-option > a .main .area-img .selo-garantia {
  position: absolute;
  z-index: 10;
  bottom: -6px;
  left: 0;
  width: 112px;
  height: 112px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.28));
  pointer-events: none;
}
@media (max-width: 900px) {
  .area-kits .container > ul .kit-option > a .main .area-img .selo-garantia {
    left: 2px;
    right: auto;
    bottom: -14px;
    transform: scale(0.52);
    transform-origin: bottom left;
  }
}
.area-kits .container > ul .kit-option > a .main .area-img .save {
  position: absolute;
  z-index: 10;
  bottom: 145px;
  right: 9%;
  background: #c1121f;
  width: 76px;
  height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  clip-path: path("M17.7195 67.0419C15.2814 67.0599 12.936 66.1086 11.1993 64.3974C9.46259 62.6861 8.47679 60.3551 8.45877 57.917L8.4279 53.7385C8.40858 51.3112 7.43004 48.99 5.70579 47.2815L2.7592 44.3781C1.89378 43.5302 1.20452 42.5195 0.731039 41.4043C0.257558 40.289 0.00920217 39.0912 0.000250915 37.8796C-0.00870034 36.6681 0.22193 35.4667 0.678881 34.3446C1.13583 33.2225 1.81009 32.2017 2.66288 31.3411L5.56625 28.3945C7.26507 26.6607 8.2092 24.3253 8.19266 21.898L8.16179 17.7195C8.14377 15.2814 9.09502 12.936 10.8063 11.1993C12.5175 9.46258 14.8486 8.47678 17.2867 8.45877L21.4652 8.42791C23.8925 8.40859 26.2136 7.43004 27.9222 5.70579L30.8255 2.75921C31.6735 1.89379 32.6841 1.20452 33.7994 0.731046C34.9146 0.257561 36.1125 0.00920216 37.324 0.000250912C38.5356 -0.00870034 39.737 0.221932 40.8591 0.678887C41.9812 1.13583 43.0019 1.81009 43.8626 2.66288L46.8092 5.56625C48.543 7.26507 50.8783 8.2092 53.3057 8.19265L57.4842 8.16179C59.9223 8.14378 62.2676 9.09502 64.0044 10.8063C65.7411 12.5175 66.7269 14.8486 66.7449 17.2866L66.7758 21.4652C66.7951 23.8925 67.7736 26.2136 69.4979 27.9222L72.4445 30.8255C73.3099 31.6735 73.9991 32.6841 74.4726 33.7994C74.9461 34.9146 75.1945 36.1125 75.2034 37.324C75.2124 38.5356 74.9817 39.737 74.5248 40.8591C74.0678 41.9812 73.3936 43.0019 72.5408 43.8626L69.6374 46.8091C67.9386 48.543 66.9945 50.8783 67.011 53.3056L67.0419 57.4842C67.0599 59.9222 66.1086 62.2676 64.3974 64.0043C62.6862 65.7411 60.3551 66.7269 57.917 66.7449L53.7385 66.7757C51.3112 66.7951 48.99 67.7736 47.2815 69.4979L44.3781 72.4444C43.5302 73.3099 42.5195 73.9991 41.4043 74.4726C40.289 74.9461 39.0912 75.1944 37.8796 75.2034C36.6681 75.2123 35.4667 74.9817 34.3446 74.5248C33.2225 74.0678 32.2017 73.3936 31.3411 72.5408L28.3945 69.6374C26.6607 67.9386 24.3253 66.9944 21.898 67.011L17.7195 67.0419Z");
}
.area-kits .container > ul .kit-option > a .main .area-img .save b {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 900px) {
  .area-kits .container > ul .kit-option > a .main .area-img .save b {
    font-size: 14px;
  }
}
.area-kits .container > ul .kit-option > a .main .area-img .save b small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: #ffffff;
}
@media (max-width: 900px) {
  .area-kits .container > ul .kit-option > a .main .area-img .save b small {
    font-size: 12px;
  }
}
@media (max-width: 900px) {
  .area-kits .container > ul .kit-option > a .main .area-img .save {
    right: 0;
    bottom: 60px;
    transform: scale(0.6);
    transform-origin: bottom right;
  }
}
.area-kits .container > ul .kit-option > a .footer {
  padding: 0 16px 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
}
@media (max-width: 900px) {
  .area-kits .container > ul .kit-option > a .footer {
    padding: 16px 10px 20px;
  }
}
.area-kits .container > ul .kit-option > a .footer .price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  line-height: 1;
  margin-bottom: 16px;
  padding-top: 16px;
}
.area-kits .container > ul .kit-option > a .footer .price strong {
  color: #021956;
  font-size: 52px;
  line-height: 1;
  font-weight: 700;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}
.area-kits .container > ul .kit-option > a .footer .price strong s {
  font-size: 26px;
  font-weight: 400;
  color: #6e7278;
  text-decoration: line-through;
  text-decoration-color: #c1121f;
  text-decoration-thickness: 2px;
  padding-bottom: 8px;
  line-height: 1.4;
  margin-right: 2px;
}
.area-kits .container > ul .kit-option > a .footer .price strong small {
  font-size: 18px;
  font-weight: 400;
  color: #5e7885;
  padding-bottom: 6px;
  line-height: 1.4;
}
@media (max-width: 900px) {
  .area-kits .container > ul .kit-option > a .footer .price strong {
    font-size: 36px;
  }
  .area-kits .container > ul .kit-option > a .footer .price strong s {
    font-size: 20px;
    padding-bottom: 5px;
  }
}
.area-kits .container > ul .kit-option > a .footer ul.garantias {
  list-style: none;
  padding: 0 4px;
  margin-bottom: 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: transparent;
}
.area-kits .container > ul .kit-option > a .footer ul.garantias .garantia-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  background: transparent;
  text-align: left;
}
@media (max-width: 900px) {
  .area-kits .container > ul .kit-option > a .footer ul.garantias .garantia-item {
    font-size: 13px;
    white-space: nowrap;
  }
}
.area-kits .container > ul .kit-option > a .footer ul.garantias .garantia-icon {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
.area-kits .container > ul .kit-option > a .footer .button {
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 10px;
  position: relative;
  width: 100%;
  max-width: 280px;
}
.area-kits .container > ul .kit-option > a .footer .button img:first-child {
  width: 100%;
  display: block;
}
.area-kits .container > ul .kit-option > a .footer .cursor {
  position: absolute;
  width: 60px;
  transform: rotate(-20deg);
  right: 0;
  z-index: 10;
  top: 20px;
  animation: scrollClick 2.5s ease-in-out infinite;
  transform-origin: center center;
}
@media (max-width: 900px) {
  .area-kits .container > ul .kit-option > a .footer .cursor {
    width: 30px;
  }
}
.area-kits .container > ul .kit-option > a .footer .bandeiras {
  width: 70%;
  margin: 0 auto 12px;
}
@media (max-width: 900px) {
  .area-kits .container > ul .kit-option > a .footer .bandeiras {
    width: 100%;
  }
}
.area-kits .container > ul .kit-option > a .footer .valores {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.area-kits .container > ul .kit-option > a .footer .valores.mb {
  display: none;
}
@media (max-width: 900px) {
  .area-kits .container > ul .kit-option > a .footer .valores.mb {
    display: flex;
  }
}
.area-kits .container > ul .kit-option > a .footer .valores.dk {
  display: flex;
}
.area-kits .container > ul .kit-option > a .footer .valores span {
  color: #6e7278;
  font-size: 18px;
}
.area-kits .container > ul .kit-option > a .footer .valores s {
  text-decoration: line-through;
  text-decoration-color: #c1121f;
  font-weight: 400;
  color: #6e7278;
}
.area-kits .container > ul .kit-option > a .footer .valores b {
  color: #021956;
  font-weight: 600;
}
.area-kits .container > ul .kit-option > a .footer .valores small {
  font-size: 13px;
  font-weight: 700;
}
.area-kits .container > ul .best-option > a {
  border: 2px solid #d4a84f;
  background: #ffeec9;
}
.area-kits .container > ul .best-option > a .header {
  background: linear-gradient(270deg, #a4823d 0%, #ffd580 25%, #ffd580 69%, #a4823d 100%);
  color: #021956;
  font-size: 24px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.area-kits .container > ul .best-option > a .main strong {
  color: #021956;
}
.area-kits .container > ul .best-option > a .price strong {
  font-size: 58px;
  color: #021956;
}
@media (max-width: 900px) {
  .area-kits .container > ul .best-option > a .price strong {
    font-size: 36px;
  }
}
.area-kits .container > ul .best-option > a .footer {
  background: transparent;
}
.area-kits .container > ul .best-option > a .footer .button {
  max-width: 100%;
}
.area-kits .container > ul .best-option > a .footer .valores b {
  color: #021956;
}
@media (max-width: 900px) {
  .area-kits .container > ul .best-option {
    grid-row: 1;
  }
  .area-kits .container > ul .k3 {
    grid-row: 2;
  }
  .area-kits .container > ul .k1 {
    grid-row: 3;
  }
}
.area-kits .container .medalhas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 20px 0 40px;
}
.area-kits .container .medalhas img {
  width: 105px;
  height: auto;
}
@media (max-width: 900px) {
  .area-kits .container .medalhas {
    gap: 10px;
  }
  .area-kits .container .medalhas img {
    width: 50px;
  }
}

.guarantee {
  position: relative;
  background-image: url("../img/GuaranteeGB.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #D6EEFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 118px;
  padding: 80px 71px;
  overflow: hidden;
  width: 100%;
  min-height: 467px;
}
.guarantee__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.guarantee__bg::before {
  content: "";
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse at center, rgba(53, 246, 15, 0.06) 0%, transparent 70%);
  mix-blend-mode: plus-lighter;
}
.guarantee__bg::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: 10%;
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(17, 104, 0, 0.12) 0%, transparent 70%);
  mix-blend-mode: screen;
}
.guarantee__badge {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 289px;
  height: 289px;
}
.guarantee__badge img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.guarantee__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  flex-shrink: 0;
  width: 607px;
}
.guarantee__text-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.guarantee__heading {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.3;
  color: #ffffff;
}
.guarantee__heading span {
  display: block;
  color: #d4a84f;
}
.guarantee__description {
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #C1C1C1;
}
.guarantee__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 104px;
  background: linear-gradient(to bottom, #35F60F, #1FA604);
  border: none;
  border-bottom: 6px solid #116800;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.15s ease;
  flex-shrink: 0;
}
.guarantee__button:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}
.guarantee__button:active {
  transform: translateY(1px);
  filter: brightness(0.95);
}
.guarantee__button-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.guarantee__button-text {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .guarantee {
    gap: 60px;
    padding: 60px 40px;
  }
  .guarantee .guarantee__content {
    width: auto;
    max-width: 500px;
  }
}
@media (max-width: 768px) {
  .guarantee {
    flex-direction: column;
    gap: 40px;
    padding: 60px 24px;
    text-align: center;
    align-items: center;
  }
  .guarantee .guarantee__badge {
    width: 200px;
    height: 200px;
  }
  .guarantee .guarantee__content {
    width: 100%;
    align-items: center;
  }
  .guarantee .guarantee__heading {
    font-size: 28px;
  }
  .guarantee .guarantee__description {
    font-size: 16px;
  }
  .guarantee .guarantee__button {
    padding: 16px 48px;
  }
  .guarantee .guarantee__button-text {
    font-size: 20px;
  }
}

footer {
  background: #021956;
}
footer .container {
  max-width: 1190px;
}
footer nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 40px 0;
  flex-wrap: wrap;
}
footer nav a {
  color: #fff;
  font-size: 20px;
}
@media (max-width: 900px) {
  footer nav a {
    font-size: 16px;
  }
}
footer nav a:hover {
  color: #d6eeff;
  text-decoration: underline;
}
footer .disclaimer {
  padding: 24px 32px;
  border-radius: 20px;
  border-top: 1px solid #D6EEFF;
}
@media (max-width: 900px) {
  footer .disclaimer {
    padding: 16px;
  }
}
footer .disclaimer p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin: 0 auto;
}
@media (max-width: 900px) {
  footer .disclaimer p {
    font-size: 14px;
  }
}
footer .copy {
  text-align: center;
  display: block;
  background: #FFFFFF;
  padding: 32px 5%;
  color: #0D2A45;
  font-size: 14px;
}
footer .copy * {
  color: currentColor;
}

@keyframes scrollClick {
  0% {
    transform: translateY(0) rotate(-20deg) scale(1);
  }
  20% {
    transform: translateY(10px) rotate(-20deg) scale(1);
  }
  40% {
    transform: translateY(10px) rotate(-20deg) scale(0.95);
  }
  50% {
    transform: translateY(10px) rotate(-20deg) scale(1);
  }
  70% {
    transform: translateY(0) rotate(-20deg) scale(1);
  }
  100% {
    transform: translateY(0) rotate(-20deg) scale(1);
  }
}/*# sourceMappingURL=style.css.map */