/* ========================================= */
/* TEASER PAGE */
/* ========================================= */

.teaser-page {
  padding-top: 0 !important;
  background: var(--c-blue1);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans);
  background: url(../img/background/bkg1_1913.webp) no-repeat center center!important;
  background-size: cover!important;
  overflow: hidden!important;
}
@media (max-width: 991px) {
  .teaser-page {
    background: url(../img/background/bkg1_991.webp) no-repeat center center!important;
    background-size: cover!important;
    overflow: hidden!important;
  }
}

/* Container Principal */
.teaser-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  min-height: calc(100vh - 15rem);
}

@media (max-width: 991px) {
  .teaser-container {
    padding: 3rem 1.5rem;
    min-height: calc(100vh - 12rem);
  }
}

/* Conteúdo */
.teaser-content {
  max-width: 60rem;
  width: 100%;
  text-align: center;
}

/* Logo */
.teaser-logo {
  margin-bottom: 3rem;
  animation: fadeInDown 0.8s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.teaser-logo img {
  max-width: 400px;
  height: auto;
  width: 100%;
}

@media (max-width: 991px) {
  .teaser-logo {
    margin-bottom: 2rem;
  }

  .teaser-logo img {
    max-width: 300px;
  }
}

/* Mensagem Principal */
.teaser-message {
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  text-align: center;
}

.teaser-title {
  font-size: 5rem;
  font-weight: 800;
  font-family: var(--font-sans);
  color: var(--c-white);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  min-height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.text-type {
  display: inline-block;
  white-space: pre-wrap;
  color: var(--c-white) !important;
}

.text-type-cursor {
  display: inline-block;
  margin-left: 0.25rem;
  opacity: 1;
  animation: cursorBlink 0.8s ease-in-out infinite;
  font-weight: 300;
  color: var(--c-white);
}

@keyframes cursorBlink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}

.teaser-text {
  font-size: 2rem;
  color: var(--c-white);
  line-height: 1.3;
  font-weight: 400;
  text-align: center;
}

@media (max-width: 991px) {
  .teaser-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
  }

  .teaser-text {
    font-size: 1.6rem;
  }

  .teaser-message {
    margin-bottom: 3rem;
  }
}

/* Container do Formulário — mesmo padrão visual do Cadastro Pessoal (#frm-cadastro / circleform) */
.teaser-form-container {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  background: #000096 !important;
  background: -webkit-linear-gradient(178deg, rgba(0, 0, 150, 1) 0%, rgba(37, 37, 207, 1) 100%) !important;
  background: -moz-linear-gradient(178deg, rgba(0, 0, 150, 1) 0%, rgba(37, 37, 207, 1) 100%) !important;
  background: linear-gradient(178deg, rgba(0, 0, 150, 1) 0%, rgba(37, 37, 207, 1) 100%) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000096", endColorstr="#2525CF", GradientType=0);
  border-radius: 0.4rem !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 2rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

@media (max-width: 991px) {
  .teaser-form-container {
    padding: 2.5rem 1.5rem;
    border-radius: 0.4rem !important;
  }
}

/* Pergunta Inicial */
.teaser-question {
  text-align: center;
}

.teaser-question-text {
  font-size: 2rem;
  color: var(--c-white);
  margin-bottom: 3rem;
  font-weight: 800;
  font-family: var(--font-sans);
  line-height: 1.2;
}

@media (max-width: 991px) {
  .teaser-question-text {
    /* font-size: 1.5rem; */
    margin-bottom: 2rem;
  }
}

/* Botões */
.teaser-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .teaser-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

.teaser-btn {
  padding: 1.5rem 3rem;
  border: none;
  border-radius: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 20rem;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .teaser-btn {
    min-width: 100%;
    /* padding: 1.2rem 2rem; */
    /* font-size: 1.3rem; */
  }
}

/* Sim / Não — alinhados aos botões do cadastro (próximo = amarelo; voltar = azul escuro) */
.teaser-btn-yes {
  background: var(--c-yellow1) !important;
  border: 0.4rem solid transparent !important;
  color: var(--c-blue1) !important;
  border-radius: 0.4rem !important;
}

.teaser-btn-yes:hover,
.teaser-btn-yes:focus {
  background: var(--c-yellow1) !important;
  color: var(--c-blue1) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  opacity: 1;
}

.teaser-btn-no {
  background: #0000b2 !important;
  border: 0 !important;
  color: var(--c-gray) !important;
  border-radius: 0.4rem !important;
}

.teaser-btn-no:hover,
.teaser-btn-no:focus {
  background: #0000b2 !important;
  color: var(--c-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Formulário de Cadastro */
.teaser-register-form {
  text-align: left;
  animation: fadeIn 0.5s ease-out;
}

.teaser-register-form .float-placeholder {
  display: none;
}

.teaser-form-title {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-sans);
  color: var(--c-white);
  margin-bottom: 2rem;
  text-align: center;
}

@media (max-width: 991px) {
  .teaser-form-title {
    margin-bottom: 2rem;
  }
}

.teaser-form-group {
  margin-bottom: 2rem;
}

.teaser-form-label {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-yellow1);
  margin-bottom: 0.4rem;
  font-family: var(--font-sans);
}

.teaser-form-label .required {
  color: var(--c-yellow1);
}

.teaser-register-form label.custom-control-label {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--c-white);
  padding-top: 0.3rem;
  font-family: var(--font-sans);
}
@media (max-width: 991px) {
  .teaser-register-form label.custom-control-label {
    padding-top: 0.5rem;
    font-size: 1.2rem;
  }
}

.teaser-register-form .form-check .form-check-input {
  background-color: #0000b2;
  border-color: rgba(255, 255, 255, 0.35);
  border-radius: 0.4rem;
}

.teaser-register-form .form-check .form-check-input:checked {
  background: var(--c-yellow1) !important;
  border-color: var(--c-yellow1) !important;
}

.teaser-form-input {
  width: 100%;
  padding: 0 2rem;
  height: 50px;
  line-height: 50px;
  border: 1px solid #0823b3 !important;
  border-radius: 0.4rem !important;
  font-size: 1.5rem;
  font-family: var(--font-sans);
  font-weight: 400;
  color: #ffffff !important;
  background: #0000b2 !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.86) !important;
  transition: all 0.3s ease;
}

.teaser-form-input::placeholder {
  color: rgba(255, 255, 255, 0.95);
}

.teaser-form-input:focus {
  outline: none !important;
  background: #0104bf !important;
  border: 1px solid #1035ea !important;
  border-bottom: 1px solid #ffff00 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.teaser-form-input:-webkit-autofill,
.teaser-form-input:-webkit-autofill:hover,
.teaser-form-input:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0 30px #0104bf inset !important;
  box-shadow: 0 0 0 30px #0104bf inset !important;
  border: 1px solid #1035ea !important;
  border-bottom: 1px solid #ffff00 !important;
}

.teaser-form-input.error {
  /* border-color: var(--c-error) !important; */
  /* border-bottom-color: var(--c-error) !important; */
}

/* Alinhado a label.error / [class*="vld-"] + .error (limppano.css) */
.teaser-form-error {
  text-align: left;
  display: block;
  width: 100%;
  font-size: 1.2rem;
  line-height: 1;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-top: 0.6rem;
  margin-bottom: 8px;
  padding: 0;
  background: transparent;
  color: var(--c-error);
}

.teaser-form-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2.5rem;
}

@media (max-width: 991px) {
  .teaser-form-actions {
    flex-direction: column;
    gap: 1rem;
  }
}

.teaser-btn-submit {
  background: var(--c-yellow1) !important;
  border: 0.4rem solid transparent !important;
  color: var(--c-blue1) !important;
  min-width: 15rem;
  border-radius: 0.4rem !important;
}

.teaser-btn-submit:hover,
.teaser-btn-submit:focus {
  background: var(--c-yellow1) !important;
  color: var(--c-blue1) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.teaser-btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.teaser-btn-cancel {
  background: #0000b2 !important;
  border: 0 !important;
  color: var(--c-gray) !important;
  min-width: 15rem;
  border-radius: 0.4rem !important;
}

.teaser-btn-cancel:hover,
.teaser-btn-cancel:focus {
  background: #0000b2 !important;
  color: var(--c-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Mensagem de Sucesso */
.teaser-success {
  text-align: center;
  padding: 4rem 3rem;
  animation: successSlideIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.teaser-success::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(28, 177, 17, 0.05) 0%, transparent 70%);
  animation: successGlow 3s ease-in-out infinite;
  pointer-events: none;
}

.teaser-success-icon {
  width: 12rem;
  height: 12rem;
  background: linear-gradient(135deg, #1cb111 0%, #16a085 50%, #1cb111 100%);
  background-size: 200% 200%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 3rem;
  position: relative;
  box-shadow: 
    0 10px 40px rgba(28, 177, 17, 0.3),
    0 0 0 0 rgba(28, 177, 17, 0.4),
    inset 0 2px 10px rgba(255, 255, 255, 0.2);
  animation: 
    successIconPulse 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both,
    successGradient 3s ease infinite;
  z-index: 2;
}

.teaser-success-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #1cb111 0%, #16a085 100%);
  opacity: 0.4;
  animation: successRipple 2s ease-out infinite;
  z-index: -1;
}

.teaser-success-icon::after {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  background: linear-gradient(135deg, #1cb111 0%, #16a085 100%);
  opacity: 0.2;
  animation: successRipple 2s ease-out 0.5s infinite;
  z-index: -2;
}

.teaser-success-icon i {
  font-size: 5.5rem;
  color: var(--c-white);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  animation: successCheckmark 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
}

.teaser-success-text {
  font-size: 2.2rem;
  color: var(--c-black);
  line-height: 1.9;
  /* font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; */
  font-weight: 400;
  max-width: 55rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  letter-spacing: 0.02em;
  text-align: center;
  min-height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

#text-type-success {
  display: inline-block;
  white-space: pre-line;
  color: var(--c-white);
  text-align: center;
  font-size: 2rem;
  line-height: 1.2;
  text-align: center;
  font-weight: 700;
}

#text-type-success-cursor {
  display: inline-block;
  margin-left: 0.25rem;
  opacity: 1;
  animation: cursorBlink 0.8s ease-in-out infinite;
  font-weight: 300;
  color: var(--c-black);
}

@media (max-width: 991px) {
  .teaser-success {
    padding: 3rem 2rem;
  }

  .teaser-success-icon {
    width: 10rem;
    height: 10rem;
    margin-bottom: 2.5rem;
  }

  .teaser-success-icon i {
    font-size: 4.5rem;
  }

  .teaser-success-text {
    font-size: 1.7rem;
  }

  .teaser-success-text strong {
    font-size: 1.9rem;
  }
}

/* Mensagem de Não Interesse */
.teaser-no-interest {
  text-align: center;
  padding: 2rem 0;
  animation: fadeIn 0.5s ease-out;
}

.teaser-no-interest-text {
  font-size: 2rem;
  line-height: 1.2;
  text-align: center;
  font-weight: 700;
  color: var(--c-white);
}

@media (max-width: 991px) {
  .teaser-no-interest-text {
    font-size: 1.5rem;
  }
}

/* Footer */
.teaser-footer {
  background: var(--c-white);
  padding: 2rem;
  margin-top: auto;
}

.teaser-footer-content {
  max-width: 120rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 991px) {
  .teaser-footer {
    padding: 1.5rem;
  }

  .teaser-footer-content {
    gap: 1.5rem;
  }
}

/* Redes Sociais */
.teaser-social {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.teaser-social-link {
  width: 5rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  transition: all 0.3s cubic-bezier(0.68, 0.85, 0.265, 1.85);
  border-radius: 0.5rem;
  margin: 0 0.5rem;
  box-shadow:
    inset 1px 1px 2px rgba(255, 255, 255, 0.3),
    0 0 5px rgba(68, 68, 68, 0.1);
  background: rgba(255, 255, 255, 0.1);
  color: var(--c-white);
  font-size: 2rem;
  text-decoration: none;
  position: relative;
}

.teaser-social-link:hover {
  background-color: var(--c-white);
  background-position:
    -100px 100px,
    -100px 100px;
  transform: perspective(180px) rotateX(60deg) translateY(2px);
}

.teaser-social-link i {
  cursor: pointer;
  width: 100%;
  height: 100%;
  border: none;
  background-color: transparent;
  font-size: 2rem;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.68, -0.85, 0.265, 1.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.teaser-social-link:hover > i {
  transform: translate3d(0px, 20px, 30px) perspective(80px) rotateX(-60deg)
    translateY(2px) translateZ(10px);
}

/* Facebook - Azul */
.teaser-social-link[href*="facebook"] i {
  color: #1877F2 !important;
}

.teaser-social-link[href*="facebook"]:hover {
  box-shadow: 0px 10px 10px rgba(24, 119, 242, 0.6);
}

.teaser-social-link[href*="facebook"]:hover i {
  color: #1877F2 !important;
}

/* Instagram - Rosa */
.teaser-social-link[href*="instagram"] i {
  color: #f21894 !important;
}

.teaser-social-link[href*="instagram"]:hover {
  box-shadow: 0px 10px 10px rgba(200, 11, 93, 0.6);
}

.teaser-social-link[href*="instagram"]:hover i {
  color: #f21894 !important;
}

/* YouTube - Vermelho */
.teaser-social-link[href*="youtube"] i {
  color: #FF0000 !important;
}

.teaser-social-link[href*="youtube"]:hover {
  box-shadow: 0px 10px 10px rgba(255, 0, 0, 0.6);
}

.teaser-social-link[href*="youtube"]:hover i {
  color: #FF0000 !important;
}

@media (max-width: 991px) {
  .teaser-social-link {
    font-size: 2rem;
  }
}

/* Política de Privacidade */
.teaser-privacy {
  text-align: center;
}

.teaser-privacy-link {
  color: var(--c-blue1);
  font-size: 1.3rem;
  text-decoration: underline;
  transition: all 0.3s ease;
  /* font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; */
}

.teaser-privacy-link:hover {
  color: var(--c-yellow1);
}

@media (max-width: 991px) {
  .teaser-privacy-link {
    font-size: 1.2rem;
  }
}

/* Animações */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-3rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(3rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes successSlideIn {
  from {
    opacity: 0;
    transform: translateY(2rem) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes successIconPulse {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes successCheckmark {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-45deg);
  }
  50% {
    transform: scale(1.2) rotate(5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes successRipple {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

@keyframes successGradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes successGlow {
  0%, 100% {
    transform: rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: rotate(180deg);
    opacity: 0.6;
  }
}

@keyframes successTextHighlight {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(-1rem);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

