/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/
/* css */

/* remove bullet point */
ul {
    list-style-type: none;
}

ul.bullet {
    list-style-type: disc;
    margin-left: 1.5rem;
}


#whatsapp {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, transform 0.2s linear;
}

#whatsapp.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


.styles-module_whatsappButton__tVits {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 7rem;
  right: 1.2rem;
  cursor: pointer;
  background-color: #25d366;
  border-radius: 50%;
  -webkit-user-select: none;
  user-select: none;
  box-shadow: 0px 4px 10px 0px rgb(0 0 0 / 15%);
  z-index: 9998;
}

.styles-module_whatsappButton__tVits svg {
  fill: #fff;
  padding: 0.5rem;
  width: 55px;
  height: 55px;
}



/* comportamento móvel (padrão): traço no início */
@media (max-width: 767.98px) {
  .text-md-end li::before {
    content: "- ";
    display: inline-block;
    margin-right: 0.35rem;
  }
  .text-md-end li::after { content: none; }
}

/* comportamento desktop (md e acima): traço no fim */
@media (min-width: 768px) {
  .text-md-end li::before { content: none; }
  .text-md-end li::after {
    content: " -";
    display: inline-block;
    margin-left: 0.35rem;
  }
}

.bg-upper {
  padding: 140px 0 0;

  @media (max-width: 768px) {
    background-position-y: -100px !important;
    padding: 120px 0 0;
  }
}

.bg-upper-double {
  padding: 40px 0 0;

  @media (max-width: 768px) {
    background-position-y: -130px !important;
    padding:  0 0;
  }
}


@media (max-width: 767.98px) {
  #pre-cadastro {
    position: relative;
  }

  #pre-cadastro::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.70);
    pointer-events: none;
    z-index: 1;
  }

  /* garante que o conteúdo fique acima do overlay */
  #pre-cadastro > .container,
  #pre-cadastro .card,
  #pre-cadastro .heading-block {
    position: relative;
    z-index: 2;
  }
}

.dynamic-bg {
  background: #F4F4F4 !important;

  @media (max-width: 768px) {
    background: #ffffff !important;
  }
}