body,
html {
  margin: 0;
  padding: 0;
  height: 100dvh;
  color: #fff;
  font-family: "NaturaAndCo", "Roboto", sans-serif;
  background-color: #720037;
}

.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-form-control-bg);
  border-color: #fd0046;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(253, 0, 70, 0.25);
}

.fw-light {
  font-family: "NaturaAndCo-Book", "Roboto", sans-serif !important;
}

.fs-7 {
  font-size: 0.875rem !important;
}

.text-primary {
  color: #720037 !important;
}

.text-secondary {
  color: #f3ac00 !important;
}

.background {
  background-color: #720037;
}

.bg-custom {
  background: url(../images/bg.svg);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: cover;
}

.bg-board {
  background: url(../images/bg_board.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.container {
  max-width: 800px;
  text-align: center;
}

.w-90 {
  width: 90%;
}
.w-70 {
  width: 70%;
}
.logo {
  cursor: pointer;
}

.slide-content {
  margin-inline: 10%;
}

.header-text-intro {
  margin-top: -18px;
}

.header-text-thanks {
  margin-top: -25px;
}

.h-preview {
  min-height: 25px;
}
.btn-custom {
  background-color: #ffffff;
  color: #720037;
  border-radius: 3px;
}
.btn-custom:hover {
  background-color: #720037;
  color: #fff;
}

.btn-custom-2 {
  background-color: #f3ac00;
  color: #fff;
  border-radius: 3px;
}
.btn-custom-2:hover {
  background-color: #ffffff;
  color: #f3ac00;
}

::placeholder {
  color: #720037 !important;
}
.neon-lines {
  position: absolute;
  width: 30%;
  height: 50%;
  background: radial-gradient(
    circle,
    transparent 20%,
    #6a04db 60%,
    transparent 80%
  );
  border-radius: 50%;
  filter: blur(15px);
  animation: rotate 6s linear infinite;
  z-index: -1;
}

#preview p {
  color: #720037 !important;
}

.wish-box {
  background-color: #fff;
  color: #1d034f;
  padding: 1rem;
  border-radius: 5px;
  margin-top: 1rem;
  font-size: 1rem;
  min-height: 130px;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Estilo do spinner */
#loadingModal .modal-body,
#loadingModal2 .modal-body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white; /* Texto branco */
}

/* Estilo para garantir que o modal ocupe toda a tela */
#loadingModal .modal-dialog,
#loadingModal2 .modal-dialog {
  max-width: 100%;
  width: 100%;
  height: 100%;
  margin: 0;
}

#loadingModal .modal-content,
#loadingModal2 .modal-content {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.no-resize {
  resize: none;
}

.image-radio {
  display: grid; /* Muda para grid */
  gap: 10px;
  grid-template-columns: repeat(2, 1fr); /* Máximo de 2 colunas */
}

.image-radio input[type="radio"] {
  display: none; /* Esconde o botão de rádio */
}

.image-radio label {
  cursor: pointer;
  border: 5px solid transparent;
  border-radius: 5px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.image-radio label img {
  display: block;
}

.image-radio input[type="radio"]:checked + label {
  border-color: #3468b0; /* Borda azul quando selecionado */
}

.text-color1 {
  color: #720037;
}

.postal-1-text {
  margin-left: 20%;
  margin-right: 10%;
  margin-bottom: 3%;
}
.postal-2-text {
  margin-left: 8%;
  margin-right: 8%;
  margin-bottom: 7%;
  margin-top: 7%;
}

.postal-3-text {
  margin-left: 5%;
  margin-right: 5%;
  margin-bottom: 5%;
  margin-top: 5%;
}

.postal .image-container {
  position: relative;
  display: inline-block; /* Para que o tamanho do contêiner seja igual ao da imagem */
  text-align: center; /* Centraliza o texto horizontalmente */
}

.postal .image-container img {
  width: 100%; /* Faz a imagem responsiva */
  height: auto; /* Mantém a proporção */
  display: block;
}

.postal .image-container .postal-1 {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #720037;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: clamp(0.8rem, 2vw, 1rem); /* Adapta entre 1rem e 2.5rem */
  width: 90%; /* Responsivo em relação à imagem */
  text-align: center;
  word-wrap: break-word; /* Quebra palavras longas */
}

.postal .image-container .postal-2 {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #720037;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: clamp(0.8rem, 2vw, 1rem); /* Adapta entre 1rem e 2.5rem */
  width: 90%; /* Responsivo em relação à imagem */
  text-align: center;
  word-wrap: break-word; /* Quebra palavras longas */
}

.postal .image-container .postal-3 {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #720037;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: clamp(0.8rem, 2vw, 1rem); /* Adapta entre 1rem e 2.5rem */
  width: 90%; /* Responsivo em relação à imagem */
  text-align: center;
  word-wrap: break-word; /* Quebra palavras longas */
}

.postal .image-container .postal-4 {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #720037;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: clamp(0.8rem, 2vw, 1rem); /* Adapta entre 1rem e 2.5rem */
  width: 90%; /* Responsivo em relação à imagem */
  text-align: center;
  word-wrap: break-word; /* Quebra palavras longas */
}

.img-postal {
  max-width: 150px;
}

.star-mask {
  width: 175px;
  height: 175px;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.star {
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 460px) {
  .fs-7 {
    font-size: 0.725rem !important;
  }
  .bg-custom {
    background: url(../images/bg_mob.svg);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: cover;
  }
}

@media (min-width: 576px) {
  .header-text-intro {
    margin-top: -20px;
  }

  .header-text-thanks {
    margin-top: -27px;
  }

  .h-preview {
    min-height: 20px !important;
  }
}

@media (min-width: 768px) {
  .header-text-intro {
    margin-top: -20px;
  }

  .header-text-thanks {
    margin-top: -25px;
  }
}

@media (min-width: 992px) {
  body {
    height: 100%;
  }
  .header-text-thanks {
    margin-top: -23px;
  }
}

@media (min-width: 1200px) {
  .header-text-thanks {
    margin-top: -27px;
  }
}

@media (min-width: 1600px) {
  .header-text-thanks {
    margin-top: -30px;
  }
}

@media (min-width: 2560px) {
  .header-text-thanks {
    margin-top: -36px;
  }
}
