* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}


html {
  scroll-behavior: smooth;
}


body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  touch-action: manipulation;
  user-select: none;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
}


/* Back Button (Floating) */
.back-button {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 24px);
  left: calc(env(safe-area-inset-left, 0px) + 16px);
  z-index: 9998;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}


.back-button:hover {
  background: rgba(255, 107, 0, 0.15);
  border-color: rgba(255, 107, 0, 0.4);
  transform: translateX(-3px);
}


.back-button:active {
  transform: translateX(-3px) scale(0.95);
}


.back-button i {
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  transition: color 0.3s ease;
}


.back-button:hover i {
  color: #ff6b00;
}

.container {
  width: 100%;
  max-width: 1080px;
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
}


.screen {
  display: none;
  flex-direction: column;
  padding: 5rem 3.75rem 2.5rem 3.75rem;
  min-height: 100vh;
  animation: fadeIn 0.5s ease;
  overflow-y: auto;
  scroll-behavior: smooth;
  position: relative;
  z-index: 1;
}


.screen.active {
  display: flex;
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }


  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.progress-bar {
  position: fixed;
  top: env(safe-area-inset-top, 0px);
  left: 0;
  width: 100%;
  height: 8px;
  background: #1a1a1a;
  z-index: 1000;
}


.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff6b00, #ff8c3a);
  transition: width 0.3s ease;
}


.logo {
  text-align: center;
  margin-bottom: 60px;
}


.logo-text {
  font-size: 48px;
  font-weight: 700;
  color: #ff6b00;
}


.host-avatar {
  width: clamp(480px, 54vw, 720px);
  max-width: 100%;
  height: auto;
  margin: 0 auto 30px;
  display: block;
  object-fit: contain;
}

.host-message {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 107, 0, 0.06) 0%, rgba(20, 18, 16, 0.95) 45%, rgba(14, 12, 10, 0.95) 100%);
  border: 1px solid rgba(255, 107, 0, 0.14);
  border-left: 3px solid #ff6b00;
  padding: 1.75rem 1.5rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.host-message::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.host-message > * { position: relative; z-index: 1; }


/* ─── LGPD screen (Tela 1.5) ──────────────────────────────────
   Substitui o card cinza chumbado por um layout com identidade
   da Bussola: gradient suave laranja→preto, halo radial, icone
   destacado e tipografia hierarquica clara. */
.lgpd-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 16px;
}

.lgpd-card {
  position: relative;
  width: 100%;
  background:
    radial-gradient(circle at top right, rgba(255, 107, 0, 0.18) 0%, transparent 55%),
    linear-gradient(155deg, rgba(255, 107, 0, 0.06) 0%, rgba(18, 16, 14, 0.95) 50%, rgba(10, 9, 8, 0.98) 100%);
  border: 1px solid rgba(255, 107, 0, 0.18);
  border-radius: 20px;
  padding: 36px 28px 32px;
  text-align: left;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.lgpd-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.22) 0%, rgba(255, 107, 0, 0.06) 100%);
  border: 1px solid rgba(255, 107, 0, 0.4);
  color: #ff6b00;
  font-size: 22px;
  margin-bottom: 18px;
}

.lgpd-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.lgpd-body {
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 22px;
}

.lgpd-body strong {
  color: #ffae5e;
  font-weight: 600;
}

.lgpd-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.lgpd-policy-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  color: #ff6b00;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  border: 1px solid rgba(255, 107, 0, 0.35);
  border-radius: 999px;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}

.lgpd-policy-link:hover,
.lgpd-policy-link:active {
  background: rgba(255, 107, 0, 0.1);
  border-color: rgba(255, 107, 0, 0.65);
  color: #ffae5e;
}

.lgpd-policy-link i {
  font-size: 0.7em;
}

.lgpd-screen .nav-buttons {
  position: static;
  background: none;
  padding: 0;
  margin: 0;
  max-width: none;
  /* Sempre empilhados, mesmo em desktop — visualmente fica mais limpo
     com 2 botoes full-width do que esticados horizontal. */
  flex-direction: column !important;
}

.lgpd-screen .nav-buttons .btn,
.lgpd-screen .nav-buttons .btn-secondary {
  width: 100%;
  flex: 0 0 auto;
}

.host-message strong {
  color: #ff6b00;
  font-weight: 700;
}

.host-message .strong-text {
  color: #ffae5e;
  font-weight: 600;
}

.host-message span {
  color: rgba(255, 255, 255, 0.85);
}

.host-message span i {
  color: #ff6b00;
  margin-right: 0.5rem;
}

.host-small {
  font-size: 18px;
  color: #b0b0b0;
  margin-top: 16px;
}


h1 {
  font-size: 48px;
  margin-bottom: 24px;
  text-align: center;
}


h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #ff6b00;
}


.btn {
  background: linear-gradient(135deg, #ff6b00 0%, #ff8c3a 100%);
  color: #ffffff;
  border: none;
  padding: 18px 32px;
  font-size: 1.0625rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 14px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease, filter .25s ease;
  min-height: 56px;
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.25),
              inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}


.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 140, 58, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}


.btn:active::after {
  width: 300px;
  height: 300px;
}


.btn:not(:disabled):active,
.btn:not(:disabled):hover {
  transform: scale(0.98);
  background: #ff8c3a;
  box-shadow: 0 2px 8px rgba(255, 107, 0, 0.5);
}


/* Estado disabled — sem isso, o .btn fica laranja vibrante mesmo sem clique
   válido, e o cliente acha que o botão "Continuar" das telas Likert está
   pronto enquanto ainda faltam respostas. Mesma identidade visual do
   .likert-continue:disabled. */
.btn:disabled,
.btn[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
  box-shadow: none;
  pointer-events: none;
}


.btn.clicked {
  background: #ff8c3a;
  animation: btnPulse 0.6s ease;
}


@keyframes btnPulse {
  0% {
    transform: scale(1);
  }


  50% {
    transform: scale(0.95);
  }


  100% {
    transform: scale(1);
  }
}


.btn-disabled {
  opacity: 0.5;
  pointer-events: none;
}


.btn-back {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.72);
  padding: 24px 36px;
  font-size: 18px;
  font-weight: 500;
  min-height: 70px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.01em;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, transform 0.2s ease;
}


.btn-back:active,
.btn-back:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}


.btn-back:active {
  transform: scale(0.985);
}


.btn-back.clicked {
  border-color: rgba(255, 255, 255, 0.65);
  color: #ffffff;
}


.nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 480px;
  margin: 32px auto 0;
  justify-content: center;
  align-items: stretch;
  position: sticky;
  bottom: 20px;
  padding: 16px 0;
  background: linear-gradient(to top, #0a0a0a 75%, transparent);
  z-index: 10;
}

@media (min-width: 720px) {
  .nav-buttons {
    flex-direction: row;
    max-width: 600px;
  }
  .nav-buttons .btn,
  .nav-buttons .btn-secondary {
    flex: 1 1 auto;
  }
}

.nav-buttons .btn,
.nav-buttons .btn-secondary {
  width: 100%;
}

.nav-buttons .btn-back {
  min-height: 56px;
  min-width: 160px;
  padding: 18px 24px;
  font-size: 17px;
}

.caracter {
  flex: 1;
  color: #b0b0b0;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.btn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  padding: 18px 32px;
  font-size: 1.0625rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 14px;
  min-height: 56px;
  min-width: 220px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: none;
}

.btn-secondary:hover,
.btn-secondary:active {
  background: rgba(255, 107, 0, 0.08);
  border-color: rgba(255, 107, 0, 0.55);
  color: #fff;
}


.btn-secondary.clicked {
  background: rgba(255, 107, 0, 0.2);
  border-color: #ff8c3a;
}


.insight-box {
  background: linear-gradient(135deg, #1a1a1a, #2a1a0a);
  border: 2px solid #ff6b00;
  border-radius: 16px;
  padding: 40px;
  margin: 40px 0;
}


.insight-box h3 {
  color: #ff6b00;
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}


.insight-box p {
  font-size: 20px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 16px;
}

.container-insight-card{
  margin: 30px 0;
}
/* Visual Insight Cards */
.insight-card {
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid #ff6b00;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 16px 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s ease;
}


.insight-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(4px);
}


.insight-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(255, 107, 0, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6b00;
  font-size: 24px;
}


.insight-card-icon i {
  font-size: 24px;
  color: #ff6b00;
}


.insight-card-content {
  flex: 1;
}


.insight-card-title {
  color: #ff6b00;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}


.insight-card-text {
  color: #e0e0e0;
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}


.insight-highlight {
  background: rgba(255, 107, 0, 0.1);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 20px 0;
  border-left: 4px solid #ff6b00;
  text-align: center;
  /*padding: 32px 40px; margin: 40px 0; font-size: 24px*/
}


.insight-highlight strong {
  color: #ff6b00;
  font-size: 22px;
}


.fomo-alert {
  background: #ff6b00;
  color: #0a0a0a;
  padding: 24px;
  border-radius: 12px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin: 30px 0;
  animation: pulse 2s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}


.fomo-alert svg {
  flex-shrink: 0;
}


@keyframes pulse {


  0%,
  100% {
    opacity: 1;
  }


  50% {
    opacity: 0.8;
  }
}


#particlesCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}


.stat-highlight {
  background: #1a1a1a;
  border-left: 4px solid #ff6b00;
  padding: 24px;
  margin: 20px 0;
  font-size: 20px;
}


.stat-highlight strong {
  color: #ff6b00;
  font-size: 32px;
  display: block;
  margin-bottom: 8px;
}


.input-group {
  margin-bottom: 40px;
}


.input-group label {
  display: block;
  font-size: 20px;
  margin-bottom: 16px;
  color: #b0b0b0;
}


.input-group input,
.input-group select {
  width: 100%;
  padding: 28px 32px;
  font-size: 22px;
  background: #1a1a1a;
  border: 2px solid #333;
  border-radius: 12px;
  color: #ffffff;
  transition: border-color 0.3s ease;
}


.input-group input:focus,
.input-group select:focus {
  outline: none;
  border-color: #ff6b00;
}


.input-group input.error {
  border-color: #ff4444;
}


.input-group input.valid {
  border-color: #00d68f;
}


.options-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 60px;
}


.options-grid.two-col {
  grid-template-columns: 1fr 1fr;
}


.option-card {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.04) 0%, rgba(20, 18, 16, 0.95) 100%);
  padding: 24px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: transform .2s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
  text-align: center;
  font-size: 1.05rem;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}


.option-card:active,
.option-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 107, 0, 0.55);
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.12) 0%, rgba(30, 22, 14, 0.95) 100%);
  box-shadow: 0 12px 32px rgba(255, 107, 0, 0.18);
}


.option-card.selected,
.option-card.clicked {
  background: #ff6b00;
  border-color: #ff6b00;
  box-shadow: 0 4px 24px rgba(255, 107, 0, 0.4);
  animation: cardSelect 0.4s ease;
}


@keyframes cardSelect {
  0% {
    transform: scale(1);
  }


  50% {
    transform: scale(0.95);
  }


  100% {
    transform: scale(1);
  }
}

.option-card title {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 10px;
}

.option-card text {
  font-size: 20px;
  opacity: 0.8;
  line-height: 1.4;

}

.multi-select-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}


.chip {
  background: #1a1a1a;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #333;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 20px;
}


.chip:active,
.chip:hover {
  transform: scale(0.98);
  border-color: #ff6b00;
  background: rgba(255, 107, 0, 0.1);
}


.chip.selected {
  background: #ff6b00;
  border-color: #ff6b00;
  animation: chipSelect 0.3s ease;
}


@keyframes chipSelect {
  0% {
    transform: scale(1);
  }


  50% {
    transform: scale(0.95);
  }


  100% {
    transform: scale(1);
  }
}


textarea {
  width: 100%;
  padding: 28px 32px;
  font-size: 22px;
  background: #1a1a1a;
  border: 2px solid #333;
  border-radius: 12px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  resize: vertical;
  min-height: 220px;
  scroll-behavior: smooth;
}


textarea:focus {
  outline: none;
  border-color: #ff6b00 !important;
}


.pain-chip {
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  display: flex;
  align-items: center;
  gap: 12px;
}


.pain-chip svg {
  min-width: 24px;
  flex-shrink: 0;
}


.pain-chip:active,
.pain-chip:hover {
  transform: scale(0.98);
  border-color: #ff6b00;
  background: rgba(255, 107, 0, 0.1);
}


.pain-chip.selected {
  background: #ff6b00;
  border-color: #ff6b00;
  animation: chipSelect 0.3s ease;
}


.journey-section {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 2px solid #333;
}


.journey-section:last-child {
  border-bottom: none;
}


.journey-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}


.journey-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6b00, #ff8c3a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.3);
}


.journey-card {
  background: linear-gradient(135deg, #1a1a1a, #252525);
  border: 2px solid #333;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all 0.3s ease;
  touch-action: manipulation;
  position: relative;
  overflow: hidden;
}


.journey-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.03) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}


.journey-card:hover::before {
  opacity: 1;
}


.journey-card:hover {
  border-color: #ff6b00;
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.15);
  transform: translateY(-2px);
}


.journey-card:active {
  transform: scale(0.99);
}


.journey-card.compact {
  padding: 24px;
}


.journey-card-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  flex-shrink: 0;
  border: 2px solid #333;
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.2);
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}


.journey-card-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 107, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}


.journey-card:hover .journey-card-icon::before {
  opacity: 1;
}


.journey-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}


.journey-card:hover .journey-card-icon img {
  transform: scale(1.05);
}


.journey-card-icon svg {
  transition: transform 0.3s ease;
}


.journey-card:hover .journey-card-icon svg {
  transform: scale(1.1);
}


.journey-card.compact .journey-card-icon {
  width: 70px;
  height: 70px;
  font-size: 28px;
  border-radius: 14px;
}


.journey-card-content {
  flex: 1;
}


.journey-card-content h3 {
  font-size: 26px;
  margin-bottom: 12px;
  color: #ffffff;
}


.journey-card.compact .journey-card-content h3 {
  font-size: 22px;
}


.journey-card-content h4 {
  font-size: 20px;
  color: #ff6b00;
  margin: 8px 0;
}


.journey-card-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #b0b0b0;
  margin: 0;
}


.journey-meta {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}


.journey-meta span {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.08) 0%, rgba(255, 107, 0, 0.03) 100%);
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  border: 2px solid rgba(255, 107, 0, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}


.journey-meta span:hover {
  border-color: #ff6b00;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 0, 0.4);
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.12) 0%, rgba(255, 107, 0, 0.06) 100%);
}


.loading-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 40px 0;
}


.spinner {
  width: 120px;
  height: 120px;
  border: 8px solid #1a1a1a;
  border-top-color: #ff6b00;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 60px;
}


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


.loading-text {
  font-size: 28px;
  color: #b0b0b0;
}


.loading-subtext {
  font-size: 20px;
  color: #666;
  margin-top: 20px;
  min-height: 30px;
}


/* ─── Loading chat (Tela 10) ─────────────────────────────────
   Bussola fixa no bottom + mensagens crescem acima como chat. */
.loading-chat {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  position: relative;
}

.loading-chat-header {
  padding: 28px 16px 12px;
  text-align: center;
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
}

.loading-chat-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  color: #ff6b00;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.loading-chat-eyebrow i { margin-right: 6px; }

.loading-chat-stream {
  flex: 1 1 auto;
  padding: 8px 16px 40px;
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* Status (bussola + texto da etapa) — vive DENTRO do stream, sempre
   logo abaixo da ultima bubble. JS move-o pro final do agentChat a
   cada nova mensagem. Bussola centralizada, texto centralizado. */
.loading-chat-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 24px auto 8px;
  padding: 12px 0;
  text-align: center;
  /* Garante que o status sempre fica visualmente APOS qualquer
     bubble que entra. Sem isso, JS precisaria mover o no no DOM
     toda vez que chega nova mensagem, o que reseta a animacao
     CSS da agulha. */
  order: 9999;
}

.loading-chat-status-compass {
  width: 96px;
  height: 96px;
  filter: drop-shadow(0 0 24px rgba(255, 107, 0, 0.22));
}
.loading-chat-status-compass svg { width: 100%; height: 100%; display: block; }
.loading-chat-status-compass .compass-needle {
  transform-origin: 100px 100px;
  /* Animacao contínua — não reseta porque o no nunca sai do DOM */
  animation: compass-seek 4.4s cubic-bezier(0.34, 1.6, 0.5, 1) infinite;
}

.loading-chat-status-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 500;
  max-width: 32ch;
}

/* Entrada das mensagens dos agentes: alternam dos lados (left/right)
   com fade-in suave. Bem leve e rapida pra nao competir com a
   animacao da bussola. */
.agent-bubble {
  opacity: 0;
  transform: translate3d(0, 6px, 0);
  transition: opacity .28s ease-out, transform .32s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.agent-bubble.from-left  { transform: translate3d(-18px, 4px, 0); }
.agent-bubble.from-right { transform: translate3d(18px, 4px, 0); }
.agent-bubble.is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Footer final aparece quando a mesa concluiu — empilhado, centralizado */
.loading-chat-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin: 32px auto 40px;
  padding: 0 16px;
  max-width: 480px;
}

.loading-chat-footer-eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.loading-chat-footer-countdown {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.88);
}
.loading-chat-footer-countdown strong { color: #ff6b00; }

.loading-chat-footer .btn {
  min-width: 0;
  margin: 4px auto 0;
}


.card {
  background: #1a1a1a;
  padding: 48px;
  border-radius: 16px;
  margin-bottom: 40px;
  border: 2px solid #333;
}


.card h3 {
  font-size: 28px;
  color: #ff6b00;
  margin-bottom: 20px;
}


.card p {
  font-size: 20px;
  line-height: 1.6;
  color: #b0b0b0;
}


.price-container {
  text-align: center;
  margin: 60px 0;
}


.price-old {
  font-size: 32px;
  color: #b0b0b0;
  text-decoration: line-through;
  margin-bottom: 20px;
}


.price-new {
  font-size: 56px;
  font-weight: 700;
  color: #ff6b00;
  margin-bottom: 16px;
}


.price-installment {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 20px;
}


.savings {
  font-size: 24px;
  color: #00d68f;
  font-weight: 600;
}


.badge {
  display: inline-block;
  background: #ff6b00;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
}


.checkmark {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(255, 107, 0, 0.05) 100%);
  border: 3px solid #ff6b00;
  margin: 0 auto 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: checkPop 0.5s ease;
  box-shadow: 0 8px 32px rgba(255, 107, 0, 0.3);
}


@keyframes checkPop {
  0% {
    transform: scale(0);
  }


  50% {
    transform: scale(1.1);
  }


  100% {
    transform: scale(1);
  }
}



.scroll-container {
  flex: 1;
  overflow-y: auto;
  padding-right: 20px;
  margin-bottom: 40px;
  scroll-behavior: smooth;
}


.scroll-container::-webkit-scrollbar {
  width: 8px;
}


.scroll-container::-webkit-scrollbar-track {
  background: #1a1a1a;
}


.scroll-container::-webkit-scrollbar-thumb {
  background: #ff6b00;
  border-radius: 4px;
}


.scroll-container::-webkit-scrollbar-thumb:hover {
  background: #ff8c3a;
}


.benefits-list {
  margin: 40px 0;
}


.benefit-item {
  display: flex;
  align-items: center;
  padding: 24px;
  margin-bottom: 16px;
  background: #1a1a1a;
  border-radius: 12px;
  font-size: 20px;
}


.benefit-item::before {
  content: '✓';
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #00d68f;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 20px;
  flex-shrink: 0;
}


.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 80vh;
  padding: 2.5rem 0;
}

/* QR Code: experiência pelo celular como alternativa ao totem
   Fixed no canto inferior direito da Tela 1 — não compete com o CTA principal.
   Em mobile (<= 768px) é ocultado: usuário já está no celular. */
.qr-mobile-block {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 200px;
  padding: 14px 14px 12px;
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: center;
}

.qr-mobile-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.78);
}

.qr-mobile-text strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  font-size: 0.78rem;
}

.qr-mobile-text span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
}

.qr-mobile-code {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.qr-mobile-code #qrcodeMobile {
  background: #fff;
  padding: 5px;
  border-radius: 6px;
  display: flex;
  line-height: 0;
}

.qr-mobile-code #qrcodeMobile img,
.qr-mobile-code #qrcodeMobile canvas {
  display: block;
  width: 110px !important;
  height: 110px !important;
}

.qr-mobile-code small {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .qr-mobile-block {
    display: none;
  }
}

/* .center-content button: respeita o sizing canonico do .btn — nao
   sobrescreve font-size/padding. */


.journey-card-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  /* quebra se precisar em telas pequenas */
  gap: 24px;
  /* espaçamento entre as logos */


}

.journey-card-logos img {
  width: 140px;
  height: 60px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}


#etapa1Texto1 span,
#etapa1Texto2 span,
#etapa2Texto1 span,
#etapa3Texto1 span,
#etapa4Texto1 span,
#etapa5Texto1 span,
#etapa6Texto1 span {
  color: #ff6b00;
}


#screen17 h1 {
  font-size: 42px;
  margin-bottom: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.radar-container{
  background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 25px;
            margin: 25px 0;
            display: flex;
            flex-direction: column;
            align-items: center;
}
.radar-container-title{
  text-align: center;
              margin-bottom: 15px;
              color: #ff6b00;
              font-size: 22px;
}
.radar-container-title i{
  margin-right: 10px
}
/* ===============================================
  RESPONSIVE - MOBILE FIRST
  =============================================== */

@media (max-width: 425px) {

  .screen {

    padding: 1rem;

  }

  .host-message {
    font-size: 1rem;
    padding: 1rem;
  }

  .host-message strong {
    font-size: 1.5rem;
  }

  .host-message .strong-text {
    font-size: 1rem;
  }

  .host-message span {
    font-size: 1rem;
  }

  /* .center-content button no mobile: nao sobrescreve sizing do .btn */

  .input-group {
    margin-bottom: 20px;
  }

  .input-group label {
    font-size: 16px;
  }

  .input-group input {
    padding: 16px 28px;
    font-size: 16px;
  }

  /* No mobile padronizado a 17px/56px (definidos no .btn base). Aqui só
     reforçamos full-width quando dentro de nav-buttons */
  .nav-buttons .btn,
  .nav-buttons .btn-secondary { width: 100%; min-width: 0; }


  .options-grid {
    padding-top: 0.5rem;
  }

  .option-card {
    padding: 18px;
  }

  .option-card .title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
  }

  .option-card .text {
    font-size: 12px;
  }

  .multi-select-grid {
    gap: 12px;
    margin-bottom: 10px;
  }

  .chip {
    padding: 10px;
    font-size: 12px;
  }


  .caracter {
    font-size: 12px;
  }

  .card h3 {
    font-size: 20px;
  }
  .card p {
    font-size: 16px;
  }
  .fomo-alert{
    font-size: 16px;
  }
  .insight-box h3{
    font-size: 20px;
  }
  .insight-box p{
    font-size: 16px;
  }
}

/* ---- Avatar pequeno para telas com muito conteúdo ---- */
.host-avatar-sm {
  width: clamp(160px, 22vw, 280px) !important;
}

/* ================================================================
   TELAS DE APRESENTAÇÃO (1.6 – 1.9)
   ================================================================ */

.pres-screen {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 12px;
}

.pres-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b00, #ff8c3a);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 6px 16px;
  border-radius: 50px;
  align-self: flex-start;
}

.pres-title {
  font-size: clamp(1.75rem, 3.8vw, 2.6rem);
  font-weight: 700;
  line-height: 1.22;
  color: #ffffff;
}

.pres-title span {
  color: #ff6b00;
}

.pres-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
  margin-top: -8px;
}

/* ---- Stats Row ---- */
.pres-stats {
  display: flex;
  gap: 12px;
}

.pres-stat {
  flex: 1;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 14px;
  padding: 16px 10px;
  text-align: center;
}

.pres-stat-number {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: #ff6b00;
  line-height: 1;
}

.pres-stat-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 5px;
  line-height: 1.3;
}

/* ---- Bullet list ---- */
.pres-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pres-bullet {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 16px;
}

.pres-bullet i {
  color: #ff6b00;
  font-size: 1.1rem;
  width: 22px;
  flex-shrink: 0;
  text-align: center;
}

.pres-bullet span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.4;
}

/* ---- Page indicator dots ---- */
.pres-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 4px 0;
}

.pres-dot {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.18);
  transition: all 0.3s ease;
  width: 8px;
  cursor: pointer;
}

.pres-dot:hover {
  background: rgba(255, 107, 0, 0.5);
}

.pres-dot.active {
  background: #ff6b00;
  width: 24px;
}

/* ---- Includes grid ---- */
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.include-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 13px 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.include-item i {
  color: #ff6b00;
  font-size: 1rem;
  width: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.include-item-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
}

.include-item-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2px;
}

/* ---- Experience items ---- */
.exp-items {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.exp-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.exp-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.22);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.exp-icon i {
  color: #ff6b00;
  font-size: 1.1rem;
}

.exp-text-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: 3px;
}

.exp-text-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.4;
}

.guarantee-box {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 140, 58, 0.05));
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 14px;
  padding: 15px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.guarantee-box i {
  color: #ff6b00;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.guarantee-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

/* ---- Track cards ---- */
.tracks-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.track-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.track-card.featured {
  border-color: rgba(255, 107, 0, 0.35);
  background: rgba(255, 107, 0, 0.06);
}

.track-badge {
  background: linear-gradient(135deg, #ff6b00, #ff8c3a);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  flex-shrink: 0;
  min-width: 52px;
}

.track-badge-num {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
}

.track-content-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.track-content-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.4;
  margin-bottom: 6px;
}

.track-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.track-tag {
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.22);
  color: rgba(255, 107, 0, 0.9);
  font-size: 0.68rem;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 50px;
}



/* ── Marca de conteúdo gerado/refinado por IA ───────────────────── */
.ai-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c9a8ff;
  background: rgba(123, 97, 255, 0.12);
  border: 1px solid rgba(123, 97, 255, 0.35);
  padding: 2px 8px;
  border-radius: 999px;
  vertical-align: middle;
  margin-left: 8px;
  white-space: nowrap;
}
.ai-tag i { font-size: 0.7rem; }

.ai-disclaimer {
  margin-top: 24px;
  padding: 14px 18px;
  border-radius: 10px;
  background: rgba(123, 97, 255, 0.06);
  border: 1px solid rgba(123, 97, 255, 0.22);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}
.ai-disclaimer .ai-tag { margin-left: 0; flex-shrink: 0; }
.ai-disclaimer-text {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
}
.ai-disclaimer-text strong { color: rgba(255,255,255,0.88); }

/* ────────────────────────────────────────────────────────────
   Device mode — totem físico (?mode=totem)
   Esconde elementos que só fazem sentido em mobile:
   - QR para abrir no celular
   - Copiar link do relatório
   - Disclaimer LGPD inteiro (base legal + link Política de Privacidade)
     na tela LGPD — em totem físico não faz sentido o cliente sair do
     fluxo pra abrir uma página externa.
   ─────────────────────────────────────────────────────────── */
html.device-totem .qr-mobile-block,
html.device-totem .copy-share-block,
html.device-totem .lgpd-disclaimer {
  display: none !important;
}

/* ────────────────────────────────────────────────────────────
   CTA pós-radar (tela 11) — convite low-pressure ao programa
   ─────────────────────────────────────────────────────────── */
.pos-radar-cta {
  margin-top: 32px;
  padding: 24px;
  border-top: 1px solid rgba(255, 107, 0, 0.2);
}
.pos-radar-cta-heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  margin: 0 0 8px;
  line-height: 1.35;
}
.pos-radar-cta-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  margin: 0 0 16px;
  line-height: 1.4;
}

/* Escolha 50/50 — botões com peso de largura idêntico (não navegação) */
.pos-radar-cta .nav-buttons .btn,
.pos-radar-cta .nav-buttons .btn-back {
  flex: 1 1 0;
  min-width: 0;
}

/* ────────────────────────────────────────────────────────────
   Stand CTA (tela 1.9 fim do carrossel — fluxo "não conhece")
   ─────────────────────────────────────────────────────────── */
.stand-cta {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 24px 0 8px;
  padding: 18px 20px;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 10px;
}
.stand-cta i {
  color: #ff6b00;
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.stand-cta-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  line-height: 1.5;
}
.stand-cta-text strong {
  color: rgba(255, 255, 255, 0.98);
}

/* ────────────────────────────────────────────────────────────
   Tela 2 (captura de dados) — aviso e helper text dos inputs
   ─────────────────────────────────────────────────────────── */
.capture-warning {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 24px;
  padding: 14px 16px;
  background: rgba(255, 107, 0, 0.08);
  border-left: 3px solid #ff6b00;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  line-height: 1.45;
}
.capture-warning i {
  color: #ff6b00;
  font-size: 1.05rem;
  margin-top: 1px;
  flex-shrink: 0;
}
.capture-warning strong {
  color: rgba(255, 255, 255, 0.98);
}
.input-hint {
  display: block;
  margin-top: 8px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

/* ────────────────────────────────────────────────────────────
   CTA sticky (tela 13) — oferta sempre acessível ao scroll
   ─────────────────────────────────────────────────────────── */
.cta-sticky {
  position: sticky;
  bottom: 0;
  padding: 20px 0;
  background: linear-gradient(to top, #0a0a0a 80%, transparent);
  z-index: 10;
}




/* ────────────────────────────────────────────────────────────
   Preço Hero — fallback profissional quando o fetch falha.
   Esconde a linha "ou X à vista" e mostra mensagem comercial.
   ─────────────────────────────────────────────────────────── */
.price-hero-fallback { display: none; }
.price-hero.price-fallback-active .price-hero-sub { display: none; }
.price-hero.price-fallback-active .price-hero-fallback { display: block; }
.price-hero.price-fallback-active .price-hero-main {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ============================================
   LGPD HARD OVERRIDE (forca specificity)
   ============================================ */
.screen #screen1 .lgpd-card,
.lgpd-screen .lgpd-card {
  background:
    radial-gradient(circle at top right, rgba(255,107,0,.18) 0%, transparent 55%),
    linear-gradient(155deg, rgba(255,107,0,.06) 0%, rgba(18,16,14,.95) 50%, rgba(10,9,8,.98) 100%) !important;
  border: 1px solid rgba(255,107,0,.18) !important;
  border-radius: 20px !important;
  padding: 36px 28px 32px !important;
  box-shadow: 0 24px 64px rgba(0,0,0,.55) !important;
}

.lgpd-screen .lgpd-policy-link {
  color: #ff6b00 !important;
  border: 1px solid rgba(255,107,0,.35) !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  padding: 10px 16px !important;
}
.lgpd-screen .lgpd-policy-link:hover { color: #ffae5e !important; }

.lgpd-screen .nav-buttons { flex-direction: column !important; }

