@font-face {
  font-family: "Neue Montreal";
  src: url("assets/fonts/NeueMontreal-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("assets/fonts/NeueMontreal-Medium.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("assets/fonts/NeueMontreal-Bold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #011f26;
  --deep: #000000;
  --sea: #072b37;
  --paper: #d9d1c7;
  --gold: #bda385;
  --coral: #d9d1c7;
  --white: #ffffff;
  --danger: #b52828;
  --success: #147a4f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--deep);
  color: var(--ink);
  font-family: "Neue Montreal", Arial, sans-serif;
  line-height: 1.45;
}

img,
video {
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--deep) url("assets/img/hero/bg-kv-27.webp") center / cover no-repeat;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  mix-blend-mode: darken;
}

h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 106px;
  min-height: 41px;
  padding: 12px 26px;
  border: 1px groove var(--gold);
  border-radius: 20px;
  background: var(--coral);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--gold);
  color: var(--sea);
  transform: translateY(-1px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.signup {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 95px 0;
  overflow: hidden;
  background-image: url("assets/img/hero/bg-kv-27.webp");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--paper);
}

.signup::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  pointer-events: none;
}

.signup > * {
  position: relative;
  z-index: 1;
  width: min(690px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  max-width: 600px;
  margin-bottom: 76px;
  color: var(--paper);
  text-align: center;
}

.form {
  display: flex;
  flex-wrap: wrap;
  gap: 0 12px;
  width: min(568px, calc(100% - 40px));
  max-width: 568px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.field {
  flex: 0 0 calc(60% - 4.8px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 1.2rem;
}

.field--full {
  flex-basis: 100%;
}

.field--third {
  flex-basis: calc(33.333333% - 8px);
}

.field--two-third {
  flex-basis: calc(66.666667% - 4px);
}

.field--forty {
  flex-basis: calc(40% - 7.2px);
}

.field--twenty {
  flex-basis: calc(20% - 9.6px);
}

label {
  color: var(--paper);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.required {
  color: #fd4008;
  margin-left: 3px;
}

input,
select {
  width: 100%;
  min-height: auto;
  border: 1px solid var(--gold);
  border-radius: 20px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  padding: 14px 18px;
}

@media (min-width: 1025px) {
  .signup {
    background-attachment: fixed;
  }
}

input:focus,
select:focus {
  outline: 3px solid rgba(189, 163, 133, 0.35);
  border-color: var(--gold);
}

.field__hint {
  color: var(--paper);
  font-size: 0.82rem;
}

.field__hint:empty {
  display: none;
}

.form__actions {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 0;
}

.form__actions .button {
  margin-left: auto;
}

.form__status {
  flex: 0 0 100%;
  order: 2;
  min-height: 0;
  margin: 0;
  font-weight: 400;
  color: var(--paper);
  text-align: left;
}

.form__status:empty {
  display: none;
}

.form__status.is-success {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(217, 209, 199, 0.24);
  font-size: 21px;
  line-height: 1.2;
}

.form__status.is-success::before {
  content: "\2713";
  color: #00a33c;
  font-size: 22px;
  line-height: 1;
}

.form__status.is-error {
  color: var(--danger);
  font-weight: 700;
  text-align: right;
}

.countdown-section {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-items: center;
  align-items: center;
  min-height: 1080px;
  padding: 100px 15px;
  overflow: hidden;
  background: var(--deep) url("assets/img/hero/banner-contagem-2026.webp") bottom center / cover no-repeat;
  color: var(--white);
  text-align: center;
}

.countdown-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.countdown-section > * {
  position: relative;
}

.countdown-section__media {
  display: block;
  width: min(1140px, 100%);
  padding-top: 200px;
}

.countdown-section__media img {
  display: block;
  width: 100%;
  height: auto;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(86px, 1fr));
  gap: 0;
  width: min(992px, 100%);
}

.countdown div {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.countdown strong {
  display: block;
  font-size: 105px;
  font-weight: 700;
  line-height: 1;
}

.countdown span {
  display: block;
  margin-top: 0;
  color: var(--white);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 20px 30px;
  background: var(--deep);
  color: var(--white);
}

.footer__content {
  display: flex;
  width: 100%;
  max-width: 1140px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.footer__label {
  flex: 0 0 100%;
  margin: 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  text-align: center;
  text-transform: uppercase;
}

.footer__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.footer__logo {
  width: min(190px, 72vw);
  height: auto;
}

.social {
  display: flex;
  justify-content: center;
  gap: 11px;
  flex-wrap: wrap;
  margin: 20px 0 20px 30px;
}

.social a {
  display: inline-flex;
  width: 30.4px;
  height: 30.4px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
}

.social svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

body.dialog-prevent-scroll {
  overflow: hidden;
}

#elementor-popup-modal-3873[hidden] {
  display: none;
}

#elementor-popup-modal-3873 {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  pointer-events: all;
}

#elementor-popup-modal-3873 .dialog-widget-content {
  position: relative;
  overflow: hidden;
  background-image: url("assets/img/popup/pop-bg.jpg");
  background-position: center right;
  border-radius: 0;
  box-shadow: 2px 8px 23px 3px rgba(0, 0, 0, 0.2);
  animation-duration: 0.5s;
}

#elementor-popup-modal-3873 .dialog-message {
  width: 420px;
  height: auto;
  line-height: 0;
}

#elementor-popup-modal-3873 .dialog-close-button {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
  display: flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

#elementor-popup-modal-3873 .dialog-close-button svg {
  width: 15px;
  height: 15px;
  fill: var(--paper);
}

.elementor-3873 img {
  display: block;
  width: 420px;
  height: auto;
  max-width: 100%;
}

@media (max-width: 820px) {
  .hero {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .form {
    padding: 0;
  }

  .field,
  .field--third,
  .field--two-third,
  .field--forty,
  .field--twenty {
    flex-basis: 100%;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .countdown-section {
    min-height: 580px;
    padding: 75px 30px;
  }

  .countdown-section__media {
    padding-top: 55px;
  }

  .countdown strong {
    font-size: 70px;
    letter-spacing: 0.04em;
  }

  .countdown span {
    font-size: 20px;
    letter-spacing: 1.1px;
  }

  .footer__row {
    flex-direction: column;
    gap: 22px;
  }
}

@media (max-width: 480px) {
  .signup {
    padding: 50px 0 0;
  }

  .signup > * {
    width: calc(100% - 10px);
  }

  .form {
    width: calc(100% - 40px);
  }

  .section-heading {
    margin-bottom: 54px;
  }

  h2 {
    font-size: 21px;
    line-height: 1.2;
  }

  .button {
    width: 106px;
  }

  .countdown {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  .countdown div:last-child {
    display: none;
  }

  .countdown-section {
    min-height: 484px;
    padding: 60px 0;
    background-position: -100px 0%;
  }

  .countdown-section::before {
    background: transparent;
  }

  .countdown-section__media {
    padding: 20px;
  }

  .countdown strong {
    font-size: 46px;
    line-height: 1;
  }

  .countdown span {
    font-size: 14px;
    line-height: 1;
  }

  .footer {
    padding: 40px 20px;
  }

  .footer__content {
    gap: 25px;
  }

  .footer__row {
    gap: 27px;
  }

  .footer__logo {
    width: min(240px, 72vw);
  }

  .social {
    gap: 14px;
    margin: 0;
  }

  .social a {
    width: 29px;
    height: 29px;
  }

  .social svg {
    width: 18px;
    height: 18px;
  }

  #elementor-popup-modal-3873 .dialog-message {
    width: 360px;
  }

  #elementor-popup-modal-3873 .dialog-widget-content {
    background-position: top center;
    background-size: cover;
  }
}
