@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ====== Reset/Base ====== */
* {
	box-sizing: border-box;
}
html, body {
	height: 100%;
}
body {
	margin: 0px;
	padding: 0;
	height: 100vh;
	display: flex;
	justify-content: center;   /* Alinha horizontalmente */
	align-items: center;       /* Alinha verticalmente */
	font-family: "Montserrat", sans-serif;
	background: #0a0e1c;
	color: #0f172a;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;	
}

/* ====== Layout ====== */
.wrap {
	max-width: 720px;
	margin: 40px auto;
	padding: 16px;
}
.card {
	min-width:500px !important;
	background: #162348;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
	padding: 25px 25px 35px 25px;
}
.center {
	text-align: center;
}
.logo-center {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}
.hidden {
	display: none !important;
}

/* ====== Tipografia ====== */
.titulo {
	margin: 8px 0 6px 0;
	font-size: 17px;
	line-height: 1.25;
	font-weight: 700;
	color: #ffffff;
	text-align:center
}
.subtitulo {
	margin: 0 0 16px 0;
	color: #ffffff;
	font-size: 15px;
	text-align:center
}
.sub-titulo-form {
	margin: 18px 0 8px 0;
	font-size: 15px;
	font-weight: 700;
	color: #0f172a;
}

/* ====== Termo ====== */
.versao-termo {
	margin: 0 0 8px 0;
	font-size: 13px;
	color: #ffffff;
	text-align:center;
	margin-bottom:25px
}
.termo-box {
	background: #0a0e1c;
	border: 1px solid #0a0e1c;
	border-radius: 12px;
	padding: 10px 14px 14px 14px;
	height: 390px;
	overflow: auto;
	scrollbar-gutter: stable;
}
.termo-box h2, .termo-box h3 {
	margin: 12px 0 8px 0;
	color: #ffffff;
	font-size: 16px;
}
.termo-box p {
	margin: 8px 0;
	color: #ffffff;
	font-size: 14px;
	line-height: 1.5;
}
.check-termo {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 15px 0 20px 0;
	font-size: 15px;
	font-weight:600;
	color: #ffffff;
}
.check-termo input {
	width: 22px;
	height: 22px;
	accent-color: #ff8a00;
}

/* ====== Formulários ====== */
label{
	color:#ffffff;
	font-size:14px;
	margin:5px 0 0 0;
}

.input {
	width: 100%;
	padding: 12px 25px;
	margin: 8px 0;
	border: 1px solid #050812;
	border-radius: 12px;
	background: #0a0e1c;
	outline: none;
	color:#ffffff;
	font-size: 16px;
	transition: box-shadow .15s ease, border-color .15s ease;
}
.input:focus {
	border-color: #60a5fa;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, .15);
}
.input[disabled] {
	background: #0a0e1c;
	border: 1px solid #ff8a00;
	color: #ff8a00;
	cursor: not-allowed;
	opacity:0.6
}

input::placeholder {
	color: rgba(255, 255, 255, 0.75); /* branco com leve transparência */
}

input::-webkit-input-placeholder {
	color: rgba(255, 255, 255, 0.75);
}

input:-ms-input-placeholder {
	color: rgba(255, 255, 255, 0.75);
}

input::-ms-input-placeholder {
	color: rgba(255, 255, 255, 0.75);
}

/* Input rows responsivos (se quiser duas colunas, basta agrupar em .row ) */
.row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
@media (max-width: 640px) {
	.row {
		grid-template-columns: 1fr;
	}
}

/* ====== Botões ====== */

.btn-laranja {
	width: auto;
	background: linear-gradient(90deg, #ff8a00, #ff5e00);
	color: #ffffff;
	border:solid 3px #ff8a00;
	padding: 14px 30px;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 12px;
	cursor: pointer;
	transition: 0.25s ease-in-out;
	text-align: center;
	display: inline-block;
	box-shadow: 0 0 12px rgba(255, 115, 0, 0.4);
	text-decoration:none;
}

.btn-laranja:hover {
	filter: brightness(1.1);
	border:solid 3px #ff5e00;
	background: linear-gradient(90deg, #ff5e00, #ff8a00);
	box-shadow: 0 0 16px rgba(255, 115, 0, 0.6);
}

.btn-laranja:active {
	transform: scale(0.97);
}


.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 16px;
	border-radius: 12px;
	border: 0;
	cursor: pointer;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: transform .04s ease, box-shadow .2s ease, background .2s ease;
	user-select: none;
}
.btn:active {
	transform: translateY(1px);
}
.btn[disabled] {
	opacity: .6;
	cursor: not-allowed;
}
.btn-green {
	background: #16a34a;
	color: #ffffff;
	box-shadow: 0 8px 18px rgba(22, 163, 74, .16);
}
.btn-green:hover {
	background: #149146;
}
.btn-blue {
	background: #2563eb;
	color: #ffffff;
	box-shadow: 0 8px 18px rgba(37, 99, 235, .16);
}
.btn-blue:hover {
	background: #1f56d1;
}

/* ====== Quiz ====== */
.quiz-pergunta {
	margin: 10px 0 12px 0;
	font-size: 18px;
	font-weight: 800;
	color: #ffffff;
	padding:5px 5px;
	text-align:center
}
#quiz-opcoes {
	display: grid;
	gap: 10px;
	margin: 6px 0 14px 0;
}
.opcao {
	display: flex;
	align-items: center;
	gap: 10px;
	border: 1px solid #23376e;
	border-radius: 12px;
	padding: 12px;
	cursor: pointer;
	transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
	background: #2d4483;
}
.opcao input[type="radio"] {
	width: 20px;
	height: 20px;
	accent-color: #59b002;
}
.opcao:hover {
	border-color: #ff8a00;
	background: #ff8a00;
	box-shadow: 0 0 0 3px rgba(147, 197, 253, .25);
}
.opcao .letra {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 28px;
	height: 28px;
	border-radius: 8px;
	font-size:18px;
	background: #ff8a00;
	color: #ffffff;
	font-weight: 700;
}
.opcao .texto {
	flex: 1;
	font-size: 16px;
	color: #ffffff;
	font-weight:700;
}

/* ====== Barra de Progresso ====== */
.progress {
	width: 100%;
	height: 10px;
	background: #0a0e1c;
	border-radius: 999px;
	overflow: hidden;
	margin: 6px 0 12px 0;
}
.progress-bar {
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, #59b002, #447414);
	transition: width .25s ease;
}

/* ====== Resultado ====== */

#passo-resultado h2 {
  font-size: 25px;
}

#passo-resultado .class_p {
  font-size: 15px;
  color:#ff8800
}

.icone-sucesso {
	width: 68px;
	height: 68px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #e8fff1;
	color: #16a34a;
	font-size: 30px;
	margin: 8px auto 10px auto;
}
.resultado-box {
	margin: 5px auto 20px auto;
	padding: 30px;
	border-radius: 14px;
	text-align: left;
}
#resultado-score {
	margin: 0 0 6px 0;
	font-size: 22px;
	font-weight: 800;
}
#resultado-faixa {
	margin: 0 0 6px 0;
	font-size: 20px;
	font-weight: 700;
}
#resultado-msg {
	margin: 0;
}

/* ====== Helpers ====== */
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.w-100 { width: 100%; }

/* ====== Acessibilidade básica ====== */
:focus-visible {
	outline: 3px solid rgba(59, 130, 246, .45);
	outline-offset: 2px;
	border-radius: 10px;
}

/* ====== Links internos (ex: CTA na mensagem) ====== */
.resultado-box a {
	color: #0ea5e9;
	font-weight: 700;
}
.resultado-box a:hover {
	text-decoration: underline;
}

.sc-fUEImY,
.sc-fUEImY.sc-klYcpz.hrJvBT.cWfHCc.Branding__Logo.Branding__TextItem {
  display: none !important;
}

/* ===================================================================== */
/* =========================  LANDING PAGE  ============================= */
/* ===================================================================== */

/* Desativa o centramento vertical do body na landing */
body.is-landing{
  display: block;
  min-height: 100vh;
  background: #0a0e1c;
  color: #f8fafc;
}

/* Header */
.landing-header{
  padding: 40px 20px;
}
.landing-header__inner{
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.landing-logo{ height: 56px; object-fit: contain; }
.landing-logo--jogoseguro{ height: 85px; }
.landing-logo--apostou{ height: 70px; }

/* Barra laranja */
.brand-bar{
  background: #ff8800;
  text-align:center;
  padding:8px 0px
}
.brand-bar__inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 20px;
}
.brand-title{
  margin: 0;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 800;
  letter-spacing: .08em;
  color: #111;
}

/* Conteúdo principal */
.landing-main{
  padding: 120px 20px;
}
.landing-grid{
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
@media (max-width: 992px){
  .landing-grid{
    grid-template-columns: 1fr;
  }
}

.landing-section-title{
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  font-size: clamp(16px, 2.6vw, 18px);
  color: #ffffff;
  margin: 0 0 30px 0;
}

.landing-card{
  background: transparent;
}
.landing-card__body{
  background: #162348;
  border: 1px solid #162348;
  border-radius: 14px;
  padding: 28px;
  text-align: center;
}
.landing-hero-img{
  width: 240px;
  max-width: 60%;
  margin: 0 auto 18px auto;
  display: block;
}

/* CTA (usa seu .btn-laranja e o .btn-green existentes) */
.landing-cta{
  min-width: 90%;
}

/* Rodapé */
.landing-footer{
  background: #2a3344;
}
.landing-footer__inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.landing-footer-logo{ height: 24px; object-fit: contain; }
.landing-footer-sub{ color: #94a3b8; font-size: 12px; }
.landing-footer-copy{ color: #94a3b8; font-size: 12px; }
