:root {
  --color-bg-main: #0B0E14;
  --color-text-primary: #FFFFFF;
  --color-text-secondary: #A0AAB2;
  --color-accent: #E5A93D;
  --color-accent-hover: #D4982F;
  --color-features-bg: #11151F;
  --font-primary: Inter, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: #fff;
  color: var(--color-text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.separador {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: auto;
}

.promo-banner {
  background: #10589C;
  position: relative;
  padding: 40px 0;
}
.promo-banner__msg {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.promo-banner__title {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.35;
  max-width: 820px;
  text-align: center;
  margin: 0;
}
.promo-banner__title strong {
  font-weight: 700;
}
@media (max-width: 900px) {
  .promo-banner__title {
    font-size: 26px;
  }
}
.promo-banner__countdown-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 32px;
  width: 100%;
}
.promo-banner__clock-icon {
  width: 72px;
  height: 72px;
  display: block;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .promo-banner__clock-icon {
    width: 48px;
    height: 48px;
  }
}
.promo-banner #countdown {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 72px;
  line-height: 1.3;
  color: #ffdc17;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .promo-banner #countdown {
    font-size: 48px;
  }
}

.area-kits {
  background: #FFFFFF;
  padding: 30px 0;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .area-kits {
    padding: 40px 0;
  }
  .area-kits .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.area-kits__title {
  text-align: center;
  width: 90%;
  max-width: 1210px;
  margin: 0 auto 48px;
}
.area-kits__title h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #0F2A44;
  line-height: 1.35;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .area-kits__title h2 {
    font-size: 1.625rem;
  }
}
.area-kits__title h2 .highlight {
  color: #1F8A5C;
  font-weight: inherit;
}
.area-kits__title p {
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #4F6A7C;
}
.area-kits__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: flex-end;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .area-kits__list {
    grid-template-columns: 1fr;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    gap: 24px;
    padding: 0 8px;
    box-sizing: border-box;
  }
  .area-kits__list .kit-option--popular {
    order: 1;
  }
  .area-kits__list .kit-option--standard {
    order: 2;
  }
  .area-kits__list .kit-option--basic {
    order: 3;
  }
}
.area-kits .kit-option {
  min-width: 0;
  max-width: 100%;
}
.area-kits .kit-option a {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #EAF5FF;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 4px 44px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.area-kits .kit-option a:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(31, 138, 92, 0.2);
}
.area-kits .kit-option__header {
  width: 100%;
  padding: 16px;
  background: #0F2A44;
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
  box-sizing: border-box;
}
.area-kits .kit-option__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .area-kits .kit-option__inner {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 8px 14px 0;
  }
}
.area-kits .kit-option__main {
  padding: 24px 16px 0;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  min-width: 0;
}
@media (max-width: 768px) {
  .area-kits .kit-option__main {
    padding: 0;
    flex: 1 0 0;
    min-width: 0;
    text-align: center;
  }
}
.area-kits .kit-option__main strong {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #0F2A44;
  line-height: 1.1;
}
@media (max-width: 768px) {
  .area-kits .kit-option__main strong {
    font-size: 1.4rem;
    margin-top: -40px;
    text-align: center;
  }
}
.area-kits .kit-option__main .days {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #828282;
  text-transform: uppercase;
  margin: 4px 0 12px;
}
@media (max-width: 768px) {
  .area-kits .kit-option__main .days {
    font-size: 0.65rem;
    margin: 0 0 4px;
  }
}
.area-kits .kit-option__main .area-img {
  position: relative;
  max-width: 100%;
}
.area-kits .kit-option__main .area-img .cursor {
  position: absolute;
  width: 60px;
  transform: rotate(-20deg);
  right: 0;
  z-index: 10;
  top: 458px;
  animation: scrollClick 2.5s ease-in-out infinite;
  transform-origin: center center;
}
.area-kits .kit-option__main .area-img .frete {
  max-width: 110px;
  position: absolute;
  top: -8%;
  left: 8%;
  z-index: 5;
}
@media (max-width: 768px) {
  .area-kits .kit-option__main .area-img .frete {
    display: none;
  }
}
.area-kits .kit-option__main .area-img .save {
  position: absolute;
  z-index: 10;
  bottom: 10px;
  right: 8%;
  width: 76px;
  height: 76px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.area-kits .kit-option__main .area-img .save svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.area-kits .kit-option__main .area-img .save b {
  position: relative;
  z-index: 1;
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.25;
  text-align: center;
}
@media (max-width: 768px) {
  .area-kits .kit-option__main .area-img .save {
    width: 56px;
    height: 46px;
    bottom: 70px;
    right: 0;
  }
  .area-kits .kit-option__main .area-img .save b {
    font-size: 9px;
  }
}
.area-kits .kit-option__main .area-img img {
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  max-width: 100%;
}
@media (max-width: 768px) {
  .area-kits .kit-option__main .area-img img {
    height: 130px;
  }
}
@media (max-width: 768px) {
  .area-kits .kit-option__main .area-img {
    margin-top: -12px;
  }
}
.area-kits .kit-option__footer {
  padding: 20px 28px 24px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}
@media (max-width: 768px) {
  .area-kits .kit-option__footer {
    padding: 0 0 16px;
    flex: 1 0 0;
    min-width: 0;
    align-items: flex-start;
  }
}
.area-kits .kit-option .price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  line-height: 1;
  margin-bottom: 16px;
  color: #828282;
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .area-kits .kit-option .price {
    justify-content: flex-start;
    margin-bottom: 8px;
    font-size: 0.65rem;
  }
}
.area-kits .kit-option .price strong {
  font-family: "Inter", sans-serif;
  font-size: 4.167rem;
  font-weight: 700;
  color: #0F2A44;
  line-height: 1;
  display: flex;
  align-items: flex-start;
  margin-bottom: -4px;
}
.area-kits .kit-option .price strong small {
  font-size: 1.1rem;
  font-weight: 700;
  padding-top: 12px;
  color: inherit;
}
@media (max-width: 768px) {
  .area-kits .kit-option .price strong small {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .area-kits .kit-option .price strong {
    font-size: 34px;
  }
}
.area-kits .kit-option .garantias {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 768px) {
  .area-kits .kit-option .garantias {
    gap: 4px;
    margin-bottom: 8px;
  }
}
.area-kits .kit-option .garantia-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 6px;
  background: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #6E7278;
  text-align: left;
}
@media (max-width: 768px) {
  .area-kits .kit-option .garantia-item {
    padding: 2px 0;
    gap: 2px;
    line-height: 1;
    font-size: 10px;
    background: transparent;
    border-radius: 0;
    white-space: nowrap;
  }
}
.area-kits .kit-option .garantia-item--off {
  color: #828282;
  background: rgba(214, 233, 204, 0.15);
}
@media (max-width: 768px) {
  .area-kits .kit-option .garantia-item--off {
    background: transparent;
  }
}
.area-kits .kit-option .garantia-icon {
  display: block;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .area-kits .kit-option .garantia-icon {
    width: 14px;
    height: 14px;
  }
}
.area-kits .kit-option .garantia-icon--off {
  opacity: 0.45;
}
.area-kits .kit-option .valores {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 1.5625rem;
  font-weight: 600;
  padding: 12px 0 20px;
  color: #6E7278;
}
@media (max-width: 768px) {
  .area-kits .kit-option .valores {
    justify-content: center;
    font-size: 0.95rem;
    margin-bottom: 2px;
  }
}
.area-kits .kit-option .valores s {
  font-weight: 400;
  color: #6E7278;
  text-decoration: line-through;
  text-decoration-color: #f44336;
}
.area-kits .kit-option .valores span {
  color: #0F2A44;
}
.area-kits .kit-option .btn-cta {
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 320px;
  margin-bottom: 10px;
  padding: 0;
}
.area-kits .kit-option .btn-cta img {
  width: 100%;
  display: block;
}
@media (max-width: 768px) {
  .area-kits .kit-option .btn-cta {
    max-width: 100%;
    margin-bottom: 6px;
  }
}
.area-kits .kit-option .bandeiras {
  margin: 0 auto;
  max-width: 220px;
  display: block;
}
@media (max-width: 768px) {
  .area-kits .kit-option .bandeiras {
    margin: 0;
    max-width: 100%;
  }
}
.area-kits .kit-option--popular a {
  border: 3px solid #B09100;
  box-shadow: 4px 15px 44px rgba(221, 255, 242, 0.8);
  animation: pulse-popular 2s ease-in-out infinite;
  background: #FFF5E8;
}
.area-kits .kit-option--popular a:hover {
  animation: none;
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 56px;
}
@media (max-width: 768px) {
  .area-kits .kit-option--popular a {
    animation: none;
    box-shadow: 4px 15px 42px;
  }
}
.area-kits .kit-option--popular .kit-option__main strong {
  color: #0F2A44;
}
.area-kits .kit-option--popular .kit-option__main .days {
  color: #6E7278;
}
.area-kits .kit-option--popular .price {
  color: #0F2A44;
}
.area-kits .kit-option--popular .price div {
  color: #6E7278;
}
.area-kits .kit-option--popular .price strong {
  font-size: 5rem;
  color: #0F2A44;
}
.area-kits .kit-option--popular .garantia-item {
  background: #FFFFFF;
  color: #6E7278;
}
.area-kits .kit-option--popular .valores {
  color: #6E7278;
}
.area-kits .kit-option--popular .valores s {
  color: #6E7278;
}
.area-kits .kit-option--popular .valores span {
  color: #0F2A44;
}
.area-kits .kit-option--popular .kit-option__header {
  background: linear-gradient(90deg, #C8A95A 0%, #E5C97A 50%, #C8A95A 100%);
  color: #0F2A44;
  font-weight: 700;
  font-size: 1.35rem;
  padding: 20px;
}
.area-kits .kit-option--popular .btn-cta {
  position: relative;
}
.area-kits .kit-option--popular .btn-cta .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 .kit-option--popular .btn-cta .cursor {
    width: 30px;
  }
}
@media (max-width: 768px) {
  .area-kits .kit-option--popular .price strong {
    font-size: 1.9rem;
  }
  .area-kits .kit-option--popular .garantia-item {
    background: transparent;
  }
  .area-kits .kit-option--popular .garantia-item--off {
    color: #eaebeb;
    background: transparent;
  }
}
.area-kits .kit-option--standard a {
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.area-kits .medalhas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 20px 0 40px;
}
.area-kits .medalhas img {
  width: 105px;
  height: auto;
}
@media (max-width: 900px) {
  .area-kits .medalhas {
    gap: 10px;
  }
  .area-kits .medalhas img {
    width: 50px;
  }
}

.guarantee {
  background: #10589c;
  padding: 60px 80px;
  position: relative;
  overflow: hidden;
}
.guarantee__inner {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.guarantee__seal {
  flex-shrink: 0;
  width: 388px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guarantee__seal img {
  width: 100%;
  max-width: 388px;
  display: block;
}
.guarantee__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #fff;
  max-width: 607px;
}
.guarantee__label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 2.1px;
  text-transform: uppercase;
  line-height: 1.35;
  margin: 0;
  color: #fff;
}
.guarantee__title {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.35;
  margin: 0;
  color: #fff;
}
.guarantee__title--highlight {
  color: #fbad41;
}
.guarantee__desc {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  margin: 0;
  color: #fff;
}
.guarantee__desc a {
  color: #fff;
  text-decoration: underline;
}
.guarantee__btn {
  display: block;
  max-width: 380px;
  cursor: pointer;
}
@media (max-width: 900px) {
  .guarantee {
    flex-direction: column;
    padding: 40px 24px;
    text-align: center;
  }
  .guarantee__seal {
    width: 220px;
  }
  .guarantee__title {
    font-size: 28px;
  }
  .guarantee__desc {
    font-size: 15px;
  }
  .guarantee__btn {
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .guarantee {
    padding: 40px 24px;
  }
  .guarantee__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .guarantee__seal {
    width: 200px;
  }
  .guarantee__seal img {
    max-width: 200px;
  }
  .guarantee__content {
    align-items: center;
    max-width: 100%;
  }
  .guarantee__title {
    font-size: 28px;
  }
  .guarantee__desc {
    font-size: 15px;
    text-align: center;
  }
  .guarantee__btn {
    max-width: 100%;
    margin: 0 auto;
  }
}

.footer {
  background-color: #0F2A44;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 80px 32px;
  width: 100%;
}
@media (max-width: 768px) {
  .footer {
    padding: 60px 24px;
    gap: 24px;
  }
}

.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  list-style: none;
}
@media (max-width: 768px) {
  .footer__nav-list {
    gap: 16px;
  }
}

.footer__nav-link {
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.footer__nav-link:hover {
  opacity: 0.7;
}
.footer__nav-link:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
  border-radius: 2px;
}

.footer__disclaimer {
  border-top: 1px solid #FFFFFF;
  border-radius: 20px;
  padding: 24px 32px;
  width: 100%;
  max-width: 1007px;
}
@media (max-width: 768px) {
  .footer__disclaimer {
    padding: 24px 0;
  }
}

.footer__disclaimer-text {
  font-size: 16px;
  font-weight: 400;
  color: #D6EEFF;
  line-height: 1.4;
  text-align: center;
}

.copyright {
  background-color: #10589C;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  width: 100%;
}

.copyright__text {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .copyright__text {
    white-space: normal;
  }
}

@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 */