/*
 * Saída CSS do componente para execução imediata no HTML estático.
 * A fonte de verdade editável está em ../scss/_promotion-header.scss.
 */
:root {
  --promotion-header-background: rgba(229, 225, 219, 0.9);
  --promotion-header-primary: #9b1006;
  --promotion-header-text: #706f6f;
  --promotion-header-font-family: "Red Hat Display", sans-serif;
  --hero-section-primary: #9b1006;
  --hero-section-primary-hover: #800d05;
  --hero-section-font-family: "Red Hat Display", sans-serif;
  --steps-section-background: #f6f3f2;
  --steps-section-primary: #9b1006;
  --steps-section-text: #706f6f;
  --steps-section-font-family: "Red Hat Display", sans-serif;
  --prizes-section-background: #fcf9f8;
  --prizes-section-card-background: #f6f3f2;
  --prizes-section-primary: #9b1006;
  --prizes-section-neutral: #706f6f;
  --prizes-section-font-family: "Red Hat Display", sans-serif;
  --regulation-section-background: rgba(229, 225, 219, 0.7);
  --regulation-section-legal-background: #fcf9f8;
  --regulation-section-period-background: #f6f3f2;
  --regulation-section-primary: #9b1006;
  --regulation-section-text: #706f6f;
  --regulation-section-font-family: "Red Hat Display", sans-serif;
  --faq-section-background: #fcf9f8;
  --faq-section-primary: #9b1006;
  --faq-section-text: #706f6f;
  --faq-section-font-family: "Red Hat Display", sans-serif;
  --footer-background: #e5e1db;
  --footer-primary: #9b1006;
  --footer-text: #706f6f;
  --footer-font-family: "Red Hat Display", sans-serif;
  --mobile-note-cta-background: rgba(252, 249, 248, 0.9);
  --mobile-note-cta-primary: #9b1006;
  --mobile-note-cta-primary-hover: #800d05;
  --mobile-note-cta-font-family: "Red Hat Display", sans-serif;
  --note-modal-header-background: #e5e1db;
  --note-modal-primary: #9b1006;
  --note-modal-primary-hover: #800d05;
  --note-modal-text: #706f6f;
  --note-modal-font-family: "Red Hat Display", sans-serif;
}

.promotion-header {
  position: relative;
  z-index: 10;
  padding-inline: 40px;
  background-color: var(--promotion-header-background);
  box-shadow: 0 8px 24px rgba(41, 41, 41, 0.05);
  backdrop-filter: blur(6px);
}

.promotion-header__container {
  min-height: 80px;
  max-width: 1200px;
  padding-inline: 48px;
}

.promotion-header__brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  line-height: 0;
}

.promotion-header__logo {
  display: block;
  width: 120px;
  height: 32px;
  object-fit: contain;
}

.promotion-header__nav {
  flex: 0 0 auto;
}

.promotion-header__menu {
  gap: 32px;
}

.promotion-header__link,
.promotion-header__cta {
  font-family: var(--promotion-header-font-family);
  font-weight: 700;
  text-decoration: none;
}

.promotion-header__link {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  color: var(--promotion-header-text);
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
  transition: color 160ms ease-in-out;
}

.promotion-header__link:hover,
.promotion-header__link:focus-visible,
.promotion-header__link--active {
  color: var(--promotion-header-primary);
}

.promotion-header__link:focus-visible,
.promotion-header__link--active:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.promotion-header__cta {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 120px;
  min-height: 52px;
  padding: 16px 48px;
  border: 0;
  border-radius: 64px;
  background-color: var(--promotion-header-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.4px;
  line-height: 16px;
  white-space: nowrap;
  transition: background-color 160ms ease-in-out, box-shadow 160ms ease-in-out;
}

.promotion-header__cta:hover,
.promotion-header__cta:focus-visible {
  background-color: #800d05;
  color: #fff;
}

.promotion-header__cta:focus-visible {
  outline: 2px solid var(--promotion-header-primary);
  outline-offset: 4px;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.8);
}

.promotion-header__cta-icon {
  display: block;
  flex: 0 0 auto;
  width: 13.333px;
  height: 13.333px;
}

.promotion-header__toggle {
  display: none;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  padding: 9px;
  border: 0;
  border-radius: 50%;
  background: transparent;
}

.promotion-header__toggle:hover,
.promotion-header__toggle:focus-visible {
  background-color: rgba(155, 16, 6, 0.08);
}

.promotion-header__toggle:focus-visible {
  outline: 2px solid var(--promotion-header-primary);
  outline-offset: 2px;
}

.promotion-header__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  margin-block: 4px;
  border-radius: 2px;
  background-color: var(--promotion-header-primary);
  transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
}

@media (max-width: 991.98px) {
  .promotion-header {
    padding-inline: 16px;
  }

  .promotion-header__container {
    gap: 12px;
    padding-inline: 0;
  }

  .promotion-header__logo {
    width: 96px;
    height: auto;
  }

  .promotion-header__nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    padding: 20px;
    border-top: 1px solid rgba(112, 111, 111, 0.16);
    background-color: var(--promotion-header-background);
    box-shadow: 0 8px 24px rgba(41, 41, 41, 0.08);
    backdrop-filter: blur(6px);
  }

  .promotion-header__nav.is-open {
    display: block;
  }

  .promotion-header__menu {
    flex-direction: column;
    align-items: stretch !important;
    gap: 4px;
  }

  .promotion-header__item {
    width: 100%;
  }

  .promotion-header__link {
    width: 100%;
    padding: 10px 8px;
  }

  .promotion-header__cta {
    min-width: 0;
    min-height: 44px;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 16px;
  }

  .promotion-header__toggle {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  .promotion-header__link,
  .promotion-header__cta,
  .promotion-header__toggle-bar {
    transition-duration: 0.01ms;
  }
}

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 817px;
  padding: 88px 0;
  overflow: hidden;
  color: #fff;
}

.hero-section__background {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-section__background-image {
  position: absolute;
  top: -43.98%;
  left: -2.5%;
  display: block;
  width: 105%;
  max-width: none;
  height: 187.95%;
}

.hero-section__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1104px;
  min-height: 597.03px;
  padding-inline: 0;
}

.hero-section__content {
  flex: 0 0 459.4px;
  width: 459.4px;
  max-width: 100%;
}

.hero-section__slogan-wrapper {
  display: block;
  max-width: 448px;
  margin: 0 0 48px;
  padding: 0;
  font-size: inherit;
  line-height: 0;
}

.hero-section__slogan {
  display: block;
  width: 448px;
  max-width: 100%;
  height: 200.235px;
}

.hero-section__period-wrapper {
  width: 100%;
  padding-bottom: 32px;
}

.hero-section__period {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 39px;
  padding: 9px 25px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 84px;
  background-color: rgba(0, 0, 0, 0.4);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(6px);
}

.hero-section__period-icon {
  position: relative;
  z-index: 1;
  display: block;
  flex: 0 0 auto;
  width: 15px;
  height: 16.667px;
}

.hero-section__period-text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--hero-section-font-family);
  font-size: 14px;
  font-weight: 500;
  line-height: 20.3px;
  white-space: nowrap;
}

.hero-section__period-text strong {
  color: #fff;
  font-weight: 700;
}

.hero-section__actions {
  gap: 16px;
  flex-wrap: wrap;
}

.hero-section__primary-action,
.hero-section__secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--hero-section-font-family);
  font-size: 16px;
  font-weight: 800;
  line-height: 16px;
  text-decoration: none;
  white-space: nowrap;
}

.hero-section__primary-action {
  gap: 8px;
  min-height: 52px;
  padding: 16px 48px;
  border: 0;
  border-radius: 64px;
  background-color: var(--hero-section-primary);
  box-shadow: 0 12px 28px rgba(155, 16, 6, 0.5);
  color: #fff;
  letter-spacing: 0.4px;
  transition: background-color 160ms ease-in-out, box-shadow 160ms ease-in-out;
}

.hero-section__primary-action:hover,
.hero-section__primary-action:focus-visible {
  background-color: var(--hero-section-primary-hover);
  color: #fff;
  box-shadow: 0 14px 32px rgba(155, 16, 6, 0.6);
}

.hero-section__primary-action:focus-visible,
.hero-section__secondary-action:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.hero-section__primary-icon {
  display: block;
  flex: 0 0 auto;
  width: 13.333px;
  height: 13.333px;
}

.hero-section__secondary-action {
  gap: 8px;
  min-height: 52px;
  padding: 17px 33px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 74px;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  color: #fff;
  letter-spacing: 0.32px;
  backdrop-filter: blur(6px);
  transition: background-color 160ms ease-in-out, border-color 160ms ease-in-out;
}

.hero-section__secondary-action:hover,
.hero-section__secondary-action:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.hero-section__secondary-icon {
  display: block;
  flex: 0 0 auto;
  width: 9px;
  height: 5.55px;
}

.hero-section__badges {
  position: relative;
  flex: 0 0 293.46px;
  width: 293.46px;
  height: 597.03px;
}

.hero-section__badge {
  position: absolute;
  display: block;
  width: 293.46px;
  height: 293.46px;
  max-width: none;
}

.hero-section__badge--red {
  top: 0;
  left: 0;
}

.hero-section__badge--beige {
  right: 0;
  bottom: 0;
}

.hero-section__badge-plus {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 64.96px;
  height: 64.96px;
  transform: translate(-50%, -50%);
}

@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
    padding: 72px 16px 80px;
  }

  .hero-section__background-image {
    top: 0;
    left: 50%;
    width: auto;
    min-width: 100%;
    height: 100%;
    min-height: 100%;
    transform: translateX(-50%);
    object-fit: cover;
  }

  .hero-section__container {
    flex-direction: column;
    gap: 64px;
    min-height: auto;
  }

  .hero-section__content {
    flex: 0 1 auto;
    width: 100%;
  }

  .hero-section__slogan-wrapper {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-section__period-text {
    font-size: 12px;
  }

  .hero-section__actions {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .hero-section__period {
    padding-inline: 14px;
  }

  .hero-section__period-text {
    font-size: 11px;
  }

  .hero-section__actions {
    flex-direction: column;
    align-items: stretch !important;
  }

  .hero-section__primary-action,
  .hero-section__secondary-action {
    width: 100%;
  }

  .hero-section__badges {
    transform: scale(0.88);
    transform-origin: top center;
    margin-bottom: -71.64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-section__primary-action,
  .hero-section__secondary-action {
    transition-duration: 0.01ms;
  }
}

.steps-section {
  padding: 88px 40px;
  background-color: var(--steps-section-background);
}

.steps-section__container {
  max-width: 1200px;
  gap: 48px;
  padding-inline: 48px;
}

.steps-section__intro {
  display: flex;
  width: 100%;
  max-width: 672px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.steps-section__eyebrow {
  margin: 0 0 4px;
  color: var(--steps-section-primary);
  font-family: var(--steps-section-font-family);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.4px;
  line-height: 20.3px;
  text-transform: uppercase;
}

.steps-section__title {
  margin: 0 0 8px;
  color: var(--steps-section-text);
  font-family: var(--steps-section-font-family);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 46px;
}

.steps-section__description {
  max-width: 577.55px;
  margin: 0;
  color: var(--steps-section-text);
  font-family: var(--steps-section-font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}

.steps-section__grid {
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding-top: 16px;
}

.steps-section__card {
  display: flex;
  min-width: 0;
  height: 298px;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border: 0;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(41, 41, 41, 0.03);
}

.steps-section__card-content {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 8px;
}

.steps-section__card-header {
  width: 100%;
  min-height: 56.67px;
}

.steps-section__number {
  color: var(--steps-section-primary);
  font-family: var(--steps-section-font-family);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.96px;
  line-height: 48px;
}

.steps-section__icon {
  display: block;
  flex: 0 0 auto;
  width: 56.67px;
  height: 56.67px;
  object-fit: contain;
}

.steps-section__icon--large {
  width: 57.46px;
  height: 57.46px;
}

.steps-section__card-title {
  margin: 16px 0 0;
  color: var(--steps-section-text);
  font-family: var(--steps-section-font-family);
  font-size: 20px;
  font-weight: 800;
  line-height: 25px;
}

.steps-section__card-description {
  margin: 0;
  color: var(--steps-section-text);
  font-family: var(--steps-section-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.steps-section__card-description strong {
  font-weight: 700;
}

.steps-section__card-note {
  margin: auto 0 0;
  padding-top: 24px;
  color: var(--steps-section-primary);
  font-family: var(--steps-section-font-family);
  font-size: 14px;
  font-weight: 700;
  line-height: 20.3px;
}

.steps-section__follow-up {
  display: flex;
  width: 576px;
  max-width: 100%;
  min-height: 163px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 32px;
  border-radius: 8px;
  background-color: var(--steps-section-primary);
}

.steps-section__follow-up-heading {
  gap: 8px;
}

.steps-section__follow-up-icon {
  display: block;
  flex: 0 0 auto;
  width: 14.667px;
  height: 18.333px;
}

.steps-section__follow-up-text {
  color: #fff;
  font-family: var(--steps-section-font-family);
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  text-align: center;
}

.steps-section__follow-up-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 15.5px 48px 16.5px;
  border: 0;
  border-radius: 64px;
  background-color: #fff;
  color: var(--steps-section-primary);
  font-family: var(--steps-section-font-family);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.32px;
  line-height: 16px;
  text-decoration: none;
  transition: background-color 160ms ease-in-out, color 160ms ease-in-out;
}

.steps-section__follow-up-action:hover,
.steps-section__follow-up-action:focus-visible {
  background-color: var(--steps-section-background);
  color: var(--steps-section-primary);
}

.steps-section__follow-up-action:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

@media (max-width: 991.98px) {
  .steps-section {
    padding: 72px 24px;
  }

  .steps-section__container {
    padding-inline: 0;
  }

  .steps-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .steps-section {
    padding: 64px 16px;
  }

  .steps-section__title {
    font-size: 32px;
    line-height: 38px;
  }

  .steps-section__description {
    font-size: 16px;
    line-height: 24px;
  }

  .steps-section__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .steps-section__card {
    height: auto;
    min-height: 298px;
  }

  .steps-section__follow-up-heading {
    justify-content: center;
    text-align: center;
  }

  .steps-section__follow-up-text {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .steps-section__follow-up-action {
    transition-duration: 0.01ms;
  }
}

.prizes-section {
  padding: 88px 40px;
  background-color: var(--prizes-section-background);
}

.prizes-section__container {
  max-width: 1200px;
  gap: 64px;
  padding-inline: 48px;
}

.prizes-section__intro {
  display: flex;
  width: 100%;
  max-width: 672px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.prizes-section__eyebrow {
  margin: 0 0 4px;
  color: var(--prizes-section-primary);
  font-family: var(--prizes-section-font-family);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.4px;
  line-height: 20.3px;
  text-transform: uppercase;
}

.prizes-section__title {
  margin: 0 0 8px;
  color: var(--prizes-section-neutral);
  font-family: var(--prizes-section-font-family);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 46px;
}

.prizes-section__description {
  max-width: 435px;
  margin: 0;
  color: var(--prizes-section-neutral);
  font-family: var(--prizes-section-font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}

.prizes-section__grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.prizes-section__featured-card {
  display: flex;
  min-width: 0;
  height: 609.484px;
  grid-column: span 7;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 16px;
  background-color: var(--prizes-section-card-background);
  box-shadow: 0 8px 24px rgba(41, 41, 41, 0.04);
}

.prizes-section__featured-content {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 8px;
  padding: 48px;
}

.prizes-section__tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  min-height: 28.3px;
  padding: 3.5px 16px 3.8px;
  border-radius: 62px;
  color: #fff;
  font-family: var(--prizes-section-font-family);
  font-size: 14px;
  font-weight: 700;
  line-height: 20.3px;
  text-transform: uppercase;
  white-space: nowrap;
}

.prizes-section__tag--primary {
  background-color: var(--prizes-section-primary);
}

.prizes-section__tag--neutral {
  border-radius: 52px;
  background-color: var(--prizes-section-neutral);
}

.prizes-section__tag-icon {
  display: block;
  flex: 0 0 auto;
  width: 13.333px;
  height: 13.333px;
}

.prizes-section__tag-icon--instant {
  width: 8px;
  height: 13.333px;
}

.prizes-section__card-title {
  margin: 16px 0 0;
  color: var(--prizes-section-neutral);
  font-family: var(--prizes-section-font-family);
  font-size: 28px;
  font-weight: 800;
  line-height: 35px;
}

.prizes-section__card-title--primary {
  color: var(--prizes-section-primary);
}

.prizes-section__card-description {
  margin: 0;
  color: var(--prizes-section-neutral);
  font-family: var(--prizes-section-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.prizes-section__card-description strong {
  font-weight: 700;
}

.prizes-section__featured-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 15.5px;
}

.prizes-section__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--prizes-section-primary);
  font-family: var(--prizes-section-font-family);
  font-size: 14px;
  font-weight: 700;
  line-height: 20.3px;
  white-space: nowrap;
}

.prizes-section__meta-icon {
  display: block;
  flex: 0 0 auto;
}

.prizes-section__meta-icon--coupons {
  width: 16.5px;
  height: 12px;
}

.prizes-section__meta-icon--draw {
  width: 13.5px;
  height: 15px;
}

.prizes-section__featured-visual {
  position: relative;
  width: 100%;
  height: 288px;
  flex: 0 0 288px;
  overflow: hidden;
  background-color: var(--prizes-section-card-background);
}

.prizes-section__featured-image {
  position: absolute;
  top: -11.16%;
  left: 0;
  display: block;
  width: 100%;
  max-width: none;
  height: 122.32%;
}

.prizes-section__voucher-card {
  display: flex;
  min-width: 0;
  min-height: 609.484px;
  grid-column: span 5;
  flex-direction: column;
  padding: 48px;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 8px 12px rgba(41, 41, 41, 0.04);
}

.prizes-section__voucher-content {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 24px;
}

.prizes-section__card-description--voucher {
  padding-bottom: 24px;
}

.prizes-section__voucher-illustration {
  display: flex;
  width: 100%;
  height: 226px;
  flex-direction: column;
  align-items: center;
  padding: 32px;
  border-radius: 8px;
  background-color: var(--prizes-section-card-background);
}

.prizes-section__voucher-mark-wrapper {
  width: 80px;
  height: 96px;
  padding-bottom: 16px;
}

.prizes-section__voucher-mark {
  display: flex;
  width: 80px;
  height: 80px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5px;
  border-radius: 12px;
  background-color: var(--prizes-section-primary);
}

.prizes-section__voucher-number {
  color: #fff;
  font-family: var(--prizes-section-font-family);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 40px;
}

.prizes-section__voucher-label {
  color: #fff;
  font-family: var(--prizes-section-font-family);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 10px;
  text-transform: uppercase;
}

.prizes-section__voucher-value {
  margin: 0;
  color: var(--prizes-section-neutral);
  font-family: var(--prizes-section-font-family);
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  text-align: center;
  white-space: nowrap;
}

.prizes-section__voucher-description {
  max-width: 281.34px;
  margin: 0;
  color: var(--prizes-section-neutral);
  font-family: var(--prizes-section-font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 20.3px;
  text-align: center;
}

.prizes-section__voucher-footer {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  margin-top: auto;
}

.regulation-section {
  padding: 88px 40px;
  background-color: var(--regulation-section-background);
}

.regulation-section__panel {
  width: 100%;
  max-width: 1104px;
  margin-inline: auto;
  padding: 64px;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 8px 12px rgba(41, 41, 41, 0.03);
}

.regulation-section__container {
  display: flex;
  width: 100%;
  max-width: 976px;
  flex-direction: column;
  align-items: flex-start;
}

.regulation-section__intro {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
}

.regulation-section__eyebrow {
  margin: 0 0 3.3px;
  color: var(--regulation-section-primary);
  font-family: var(--regulation-section-font-family);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.4px;
  line-height: 20.3px;
  text-transform: uppercase;
}

.regulation-section__title {
  margin: 0 0 4px;
  color: var(--regulation-section-text);
  font-family: var(--regulation-section-font-family);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 46px;
}

.regulation-section__description {
  margin: 0 0 4px;
  padding: 4px 0 28px;
  color: var(--regulation-section-text);
  font-family: var(--regulation-section-font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}

.regulation-section__period {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 37px;
  padding: 8px 24px;
  border-radius: 4px;
  background-color: var(--regulation-section-period-background);
}

.regulation-section__period-icon {
  display: block;
  flex: 0 0 auto;
  width: 13.5px;
  height: 15px;
}

.regulation-section__period-copy {
  color: var(--regulation-section-text);
  font-family: var(--regulation-section-font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 20.3px;
  white-space: nowrap;
}

.regulation-section__period-copy strong {
  font-weight: 700;
}

.regulation-section__legal-box {
  width: 100%;
  min-height: 224px;
  margin-top: 20px;
  padding: 32px;
  border-radius: 8px;
  background-color: var(--regulation-section-legal-background);
}

.regulation-section__legal-copy {
  color: var(--regulation-section-text);
  font-family: var(--regulation-section-font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 22.75px;
}

.regulation-section__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 8px;
  margin-top: 20px;
  padding: 14px 32px;
  border: 0;
  border-radius: 44px;
  background-color: var(--regulation-section-primary);
  color: #fff;
  font-family: var(--regulation-section-font-family);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.32px;
  line-height: 16px;
  text-decoration: none;
  transition: background-color 160ms ease-in-out, color 160ms ease-in-out;
}

.regulation-section__action:hover,
.regulation-section__action:focus-visible {
  background-color: #800d05;
  color: #fff;
}

.regulation-section__action:focus-visible {
  outline: 2px solid var(--regulation-section-primary);
  outline-offset: 4px;
}

.regulation-section__action-icon {
  display: block;
  flex: 0 0 auto;
  width: 16.667px;
  height: 16.667px;
}

@media (max-width: 991.98px) {
  .regulation-section {
    padding: 72px 24px;
  }

  .regulation-section__panel {
    padding: 48px;
  }

  .regulation-section__period-copy {
    white-space: normal;
  }
}

@media (max-width: 575.98px) {
  .regulation-section {
    padding: 64px 16px;
  }

  .regulation-section__panel {
    padding: 32px;
  }

  .regulation-section__title {
    font-size: 32px;
    line-height: 38px;
  }

  .regulation-section__description {
    font-size: 16px;
    line-height: 24px;
  }

  .regulation-section__period {
    width: 100%;
    align-items: flex-start;
    padding-inline: 16px;
  }

  .regulation-section__legal-box {
    padding: 24px;
  }

  .regulation-section__action {
    width: 100%;
    padding-inline: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .regulation-section__action {
    transition-duration: 0.01ms;
  }
}

.faq-section {
  padding: 88px 40px;
  background-color: var(--faq-section-background);
}

.faq-section__container {
  max-width: 1200px;
  gap: 64px;
  padding-inline: 48px;
}

.faq-section__intro {
  display: flex;
  width: 100%;
  max-width: 672px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.faq-section__eyebrow {
  margin: 0 0 4px;
  color: var(--faq-section-primary);
  font-family: var(--faq-section-font-family);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.4px;
  line-height: 20.3px;
  text-transform: uppercase;
}

.faq-section__title {
  margin: 0 0 8px;
  color: var(--faq-section-text);
  font-family: var(--faq-section-font-family);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 46px;
}

.faq-section__description {
  margin: 0;
  color: var(--faq-section-text);
  font-family: var(--faq-section-font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}

.faq-section__accordion {
  display: flex;
  width: 100%;
  max-width: 768px;
  flex-direction: column;
  gap: 16px;
}

.faq-section__item {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 12px rgba(41, 41, 41, 0.03);
}

.faq-section__question {
  margin: 0;
}

.faq-section__trigger {
  display: flex;
  width: 100%;
  min-height: 73px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border: 0;
  background: transparent;
  color: var(--faq-section-text);
  font-family: var(--faq-section-font-family);
  font-size: 20px;
  font-weight: 800;
  line-height: 25px;
  text-align: left;
  transition: color 160ms ease-in-out, background-color 160ms ease-in-out;
}

.faq-section__trigger:hover,
.faq-section__trigger:focus-visible {
  color: var(--faq-section-primary);
}

.faq-section__trigger:focus-visible {
  outline: 2px solid var(--faq-section-primary);
  outline-offset: -2px;
}

.faq-section__icon {
  display: block;
  flex: 0 0 auto;
  width: 12px;
  height: 7.4px;
  transition: transform 160ms ease-in-out;
}

.faq-section__item.is-open .faq-section__icon {
  transform: rotate(180deg);
}

.faq-section__answer {
  display: none;
  padding: 0 24px 24px;
  color: var(--faq-section-text);
  font-family: var(--faq-section-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.faq-section__item.is-open .faq-section__answer {
  display: block;
}

@media (max-width: 991.98px) {
  .faq-section {
    padding: 72px 24px;
  }

  .faq-section__container {
    padding-inline: 0;
  }
}

@media (max-width: 575.98px) {
  .faq-section {
    padding: 64px 16px;
  }

  .faq-section__title {
    font-size: 32px;
    line-height: 38px;
  }

  .faq-section__description {
    font-size: 16px;
    line-height: 24px;
  }

  .faq-section__trigger {
    min-height: 68px;
    padding: 20px 16px;
    font-size: 18px;
    line-height: 23px;
  }

  .faq-section__answer {
    padding: 0 16px 20px;
    font-size: 15px;
    line-height: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-section__trigger,
  .faq-section__icon {
    transition-duration: 0.01ms;
  }
}

.site-footer {
  padding-inline: 40px;
  background-color: var(--footer-background);
}

.site-footer__container {
  max-width: 1200px;
  padding: 88px 48px 12px;
}

.site-footer__top {
  width: 100%;
  max-width: 1104px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 48px;
}

.site-footer__brand-column,
.site-footer__navigation-column,
.site-footer__support-column {
  min-width: 0;
  grid-column: span 4;
}

.site-footer__brand-column {
  display: flex;
  min-height: 205px;
  flex-direction: column;
  gap: 16px;
}

.site-footer__brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  line-height: 0;
}

.site-footer__logo {
  display: block;
  width: 119.58px;
  height: 32px;
  object-fit: contain;
}

.site-footer__description,
.site-footer__support-description,
.site-footer__hours,
.site-footer__disclaimer,
.site-footer__copyright,
.site-footer__legal-link {
  color: var(--footer-text);
  font-family: var(--footer-font-family);
  font-weight: 400;
}

.site-footer__description {
  max-width: 336px;
  font-size: 18px;
  line-height: 27px;
}

.site-footer__navigation-column {
  display: flex;
  min-height: 205px;
  flex-direction: column;
  gap: 8px;
}

.site-footer__heading {
  margin: 0 0 4px;
  color: var(--footer-text);
  font-family: var(--footer-font-family);
  font-size: 20px;
  font-weight: 800;
  line-height: 25px;
}

.site-footer__navigation {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
}

.site-footer__navigation-link,
.site-footer__legal-link {
  display: inline-flex;
  width: fit-content;
  color: var(--footer-text);
  font-family: var(--footer-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  transition: color 160ms ease-in-out;
}

.site-footer__navigation-link:hover,
.site-footer__navigation-link:focus-visible,
.site-footer__legal-link:hover,
.site-footer__legal-link:focus-visible {
  color: var(--footer-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__navigation-link:focus-visible,
.site-footer__legal-link:focus-visible {
  outline: 2px solid var(--footer-primary);
  outline-offset: 2px;
}

.site-footer__navigation-link--active,
.site-footer__navigation-link--cta {
  color: var(--footer-primary);
  font-weight: 700;
}

.site-footer__navigation-link--cta {
  margin-top: 4px;
}

.site-footer__support-column {
  display: flex;
  min-height: 204.2px;
  flex-direction: column;
  gap: 15.5px;
}

.site-footer__support-description {
  max-width: 336px;
  margin: 0;
  font-size: 16px;
  line-height: 24px;
}

.site-footer__phone {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--footer-primary);
  font-family: var(--footer-font-family);
  font-size: 20px;
  font-weight: 800;
  line-height: 25px;
  text-decoration: none;
  transition: color 160ms ease-in-out;
}

.site-footer__phone:hover,
.site-footer__phone:focus-visible {
  color: var(--footer-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__phone:focus-visible {
  outline: 2px solid var(--footer-primary);
  outline-offset: 2px;
}

.site-footer__phone-icon {
  display: block;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
}

.site-footer__hours {
  margin: 0;
  font-size: 14px;
  line-height: 20.3px;
}

.site-footer__disclaimer {
  width: 100%;
  max-width: 827px;
  margin: 64px auto 0;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
}

.site-footer__bottom {
  width: 100%;
  max-width: 1104px;
  gap: 24px;
  margin-top: 64px;
}

.site-footer__copyright,
.site-footer__legal-link {
  font-size: 14px;
  line-height: 24px;
}

.site-footer__copyright {
  flex: 0 0 auto;
}

.site-footer__legal-navigation {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-footer__neurodigital {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  line-height: 0;
}

.site-footer__neurodigital img {
  display: block;
  width: 95.09px;
  height: 8px;
}

@media (max-width: 991.98px) {
  .site-footer {
    padding-inline: 24px;
  }

  .site-footer__container {
    padding: 72px 0 24px;
  }

  .site-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__brand-column {
    grid-column: span 2;
  }

  .site-footer__navigation-column,
  .site-footer__support-column {
    grid-column: span 1;
  }

  .site-footer__disclaimer {
    margin-top: 48px;
  }

  .site-footer__bottom {
    align-items: flex-start !important;
    flex-wrap: wrap;
    margin-top: 48px;
  }

  .site-footer__neurodigital {
    margin-left: auto;
  }
}

@media (max-width: 575.98px) {
  .site-footer {
    padding-inline: 16px;
  }

  .site-footer__container {
    padding: 64px 0 24px;
  }

  .site-footer__top {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .site-footer__brand-column,
  .site-footer__navigation-column,
  .site-footer__support-column {
    grid-column: auto;
    min-height: auto;
  }

  .site-footer__bottom {
    align-items: flex-start !important;
    flex-direction: column;
  }

  .site-footer__legal-navigation {
    flex-wrap: wrap;
    gap: 12px 24px;
  }

  .site-footer__neurodigital {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer__navigation-link,
  .site-footer__legal-link,
  .site-footer__phone {
    transition-duration: 0.01ms;
  }
}

.prizes-section__regulation-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--prizes-section-primary);
  font-family: var(--prizes-section-font-family);
  font-size: 14px;
  font-weight: 700;
  line-height: 20.3px;
  text-decoration: none;
}

.prizes-section__regulation-link:hover,
.prizes-section__regulation-link:focus-visible {
  color: var(--prizes-section-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prizes-section__regulation-link:focus-visible {
  outline: 2px solid var(--prizes-section-primary);
  outline-offset: 4px;
}

.prizes-section__external-icon {
  display: block;
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
}

.prizes-section__disclaimer {
  color: var(--prizes-section-neutral);
  font-family: var(--prizes-section-font-family);
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 20.3px;
  text-align: left;
}

@media (max-width: 991.98px) {
  .prizes-section {
    padding: 72px 24px;
  }

  .prizes-section__container {
    padding-inline: 0;
  }

  .prizes-section__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .prizes-section__featured-card {
    height: auto;
    min-height: 609.484px;
    grid-column: auto;
  }

  .prizes-section__voucher-card {
    grid-column: auto;
  }
}

@media (max-width: 575.98px) {
  .prizes-section {
    padding: 64px 16px;
  }

  .prizes-section__title {
    font-size: 32px;
    line-height: 38px;
  }

  .prizes-section__description {
    font-size: 16px;
    line-height: 24px;
  }

  .prizes-section__featured-content,
  .prizes-section__voucher-card {
    padding: 32px;
  }

  .prizes-section__featured-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .prizes-section__featured-visual {
    height: 220px;
    flex-basis: 220px;
  }

  .prizes-section__card-title {
    font-size: 24px;
    line-height: 30px;
  }

.prizes-section__voucher-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }
}

.mobile-note-cta {
  display: none;
}

.mobile-note-cta__container {
  min-height: 80px;
  padding: 14px 20px;
}

.mobile-note-cta__button {
  min-height: 52px;
  padding: 16px 48px;
  overflow: hidden;
  border-radius: 64px;
  background-color: var(--mobile-note-cta-primary);
  color: #fff;
  font-family: var(--mobile-note-cta-font-family);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.4px;
  line-height: 16px;
  text-decoration: none;
  transition: background-color 160ms ease-in-out, box-shadow 160ms ease-in-out;
}

.mobile-note-cta__button:hover {
  background-color: var(--mobile-note-cta-primary-hover);
  color: #fff;
}

.mobile-note-cta__button:focus-visible {
  outline: 2px solid var(--mobile-note-cta-primary);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(252, 249, 248, 0.9);
}

.mobile-note-cta__icon {
  display: block;
  flex: 0 0 auto;
  width: 13.333px;
  height: 13.333px;
}

@media (max-width: 599.98px) {
  .mobile-note-cta {
    position: fixed;
    z-index: 1030;
    inset-inline: 0;
    bottom: 0;
    display: block;
    min-height: 80px;
    background-color: var(--mobile-note-cta-background);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-note-cta__button {
    transition-duration: 0.01ms;
  }
}

.note-modal {
  --bs-modal-bg: transparent;
  --bs-modal-border-width: 0;
  --bs-modal-box-shadow: none;
  --bs-modal-width: 808px;
  background-color: transparent;
}

.note-modal.show {
  display: block;
}

.note-modal__dialog {
  width: 100%;
  max-width: 808px;
  margin: 0 auto;
}

.note-modal__content {
  max-height: calc(100vh - 1rem);
  padding: 20px;
  overflow-y: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.note-modal__panel {
  width: 100%;
  min-width: 0;
}

.note-modal__header {
  position: relative;
  padding: 33px 64px 32px 33px;
  border: 1px solid #dcd7ce;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  background-color: var(--note-modal-header-background);
}

.note-modal__title {
  margin: 0 0 8px;
  color: var(--note-modal-primary);
  font-family: var(--note-modal-font-family);
  font-size: 30px;
  font-weight: 800;
  line-height: 36px;
}

.note-modal__description {
  color: var(--note-modal-text);
  font-family: var(--note-modal-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.note-modal__description strong {
  font-weight: 700;
}

.note-modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--note-modal-text);
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  transition: background-color 160ms ease-in-out, color 160ms ease-in-out;
}

.note-modal__close:hover,
.note-modal__close:focus-visible {
  background-color: rgba(155, 16, 6, 0.08);
  color: var(--note-modal-primary);
}

.note-modal__close:focus-visible {
  outline: 2px solid var(--note-modal-primary);
  outline-offset: 2px;
}

.note-modal__form {
  padding: 32px 33px 33px;
  border: 1px solid #dcd7ce;
  border-top: 0;
  border-radius: 0 0 12px 12px;
  background-color: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.note-modal__section {
  min-width: 0;
  margin: 0;
  padding: 24px 0;
  border: 0;
}

.note-modal__section + .note-modal__section {
  border-top: 1px solid #f0ece5;
}

.note-modal__section-title {
  display: flex;
  width: 100%;
  min-height: 24px;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  color: var(--note-modal-primary);
  font-family: var(--note-modal-font-family);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.7px;
  line-height: 20px;
  text-transform: uppercase;
}

.note-modal__step {
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--note-modal-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.7px;
  line-height: 16px;
}

.note-modal__fields {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.note-modal__fields--address {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.note-modal__field {
  min-width: 0;
}

.note-modal__field--full {
  grid-column: 1 / -1;
}

.note-modal__field--cep,
.note-modal__field--number,
.note-modal__field--neighborhood {
  grid-column: span 2;
}

.note-modal__field--street,
.note-modal__field--complement {
  grid-column: span 4;
}

.note-modal__field--city {
  grid-column: 3 / span 3;
}

.note-modal__field--state {
  grid-column: 6 / span 1;
}

.note-modal__label {
  display: block;
  margin: 0 0 5.6px;
  color: #4a4a4a;
  font-family: var(--note-modal-font-family);
  font-size: 13.2px;
  font-weight: 700;
  letter-spacing: 0.396px;
  line-height: 19.8px;
  text-transform: uppercase;
}

.note-modal__input,
.note-modal__select {
  min-height: 45.6px;
  border: 1px solid #dcd7ce;
  border-radius: 6px;
  color: #292929;
  font-family: var(--note-modal-font-family);
  font-size: 15.2px;
  font-weight: 400;
  line-height: 20px;
}

.note-modal__input::placeholder {
  color: #9ca3af;
  opacity: 1;
}

.note-modal__input:focus,
.note-modal__select:focus {
  border-color: var(--note-modal-primary);
  box-shadow: 0 0 0 3px rgba(155, 16, 6, 0.12);
}

.note-modal__input {
  padding: 12.4px 14.6px 13.2px;
}

.note-modal__select {
  padding: 11.4px 30.6px 11.4px 18.6px;
}

.note-modal__upload-zone {
  display: flex;
  min-height: 168px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 34px;
  border: 2px dashed #dcd7ce;
  border-radius: 12px;
  background-color: #faf8f6;
  color: #292929;
  cursor: pointer;
  text-align: center;
  transition: border-color 160ms ease-in-out, background-color 160ms ease-in-out;
}

.note-modal__upload-zone:hover,
.note-modal__upload-zone:focus-within,
.note-modal__upload-zone.is-dragging {
  border-color: var(--note-modal-primary);
  background-color: rgba(155, 16, 6, 0.04);
}

.note-modal__upload-icon-wrapper {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border: 1px solid #e5e1db;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.note-modal__upload-icon {
  display: block;
  width: 24px;
  height: 24px;
}

.note-modal__upload-title,
.note-modal__upload-help {
  display: block;
  font-family: var(--note-modal-font-family);
  text-align: center;
}

.note-modal__upload-title {
  color: #292929;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.note-modal__upload-help {
  padding-top: 4px;
  color: var(--note-modal-text);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.note-modal__submission {
  padding-top: 25px;
  border-top: 1px solid #f0ece5;
}

.note-modal__terms {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  padding: 17px;
  border: 1px solid #e5e1db;
  border-radius: 8px;
  background-color: #f7f5f2;
}

.note-modal__checkbox {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  margin: 4px 0 0;
  border: 1px solid #767676;
  border-radius: 2.5px;
}

.note-modal__checkbox:checked {
  border-color: var(--note-modal-primary);
  background-color: var(--note-modal-primary);
}

.note-modal__checkbox:focus {
  border-color: var(--note-modal-primary);
  box-shadow: 0 0 0 3px rgba(155, 16, 6, 0.12);
}

.note-modal__terms-label {
  color: var(--note-modal-text);
  font-family: var(--note-modal-font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.note-modal__terms-label a {
  color: var(--note-modal-primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.note-modal__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
}

.note-modal__cancel,
.note-modal__submit {
  min-height: 48px;
  font-family: var(--note-modal-font-family);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.note-modal__cancel {
  padding: 14px 25px;
  border: 1px solid #dcd7ce;
  border-radius: 48px;
  color: var(--note-modal-text);
}

.note-modal__cancel:hover,
.note-modal__cancel:focus-visible {
  border-color: var(--note-modal-primary);
  color: var(--note-modal-primary);
}

.note-modal__cancel:focus-visible {
  outline: 2px solid var(--note-modal-primary);
  outline-offset: 2px;
}

.note-modal__submit {
  min-width: 385px;
  padding: 14px 32px;
  border: 0;
  border-radius: 68px;
  background-color: var(--note-modal-primary);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  color: #fff;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  transition: background-color 160ms ease-in-out, box-shadow 160ms ease-in-out;
}

.note-modal__submit:hover,
.note-modal__submit:focus-visible {
  background-color: var(--note-modal-primary-hover);
  color: #fff;
}

.note-modal__submit:focus-visible {
  outline: 2px solid var(--note-modal-primary);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.85);
}

.note-modal__submit-icon {
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

@media (max-width: 767.98px) {
  .note-modal__dialog {
    min-height: 100%;
    margin: 0;
  }

  .note-modal__content {
    max-height: 100vh;
    padding: 8px;
  }

  .note-modal__header {
    padding: 28px 48px 24px 20px;
  }

  .note-modal__title {
    font-size: 26px;
    line-height: 32px;
  }

  .note-modal__description {
    font-size: 15px;
    line-height: 22px;
  }

  .note-modal__form {
    padding: 20px;
  }

  .note-modal__fields,
  .note-modal__fields--address {
    grid-template-columns: minmax(0, 1fr);
  }

  .note-modal__field,
  .note-modal__field--full,
  .note-modal__field--cep,
  .note-modal__field--number,
  .note-modal__field--neighborhood,
  .note-modal__field--street,
  .note-modal__field--complement,
  .note-modal__field--city,
  .note-modal__field--state {
    grid-column: auto;
  }

  .note-modal__upload-zone {
    padding: 28px 16px;
  }

  .note-modal__terms-label {
    font-size: 13px;
    line-height: 19px;
  }

  .note-modal__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .note-modal__submit {
    min-width: 0;
    order: -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .note-modal__close,
  .note-modal__upload-zone,
  .note-modal__submit {
    transition-duration: 0.01ms;
  }
}

body.modal-open {
  overflow: hidden;
}
