@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:wght@300;400;500;600;700&display=swap');

/* ==================================================
   RESET CONTROLADO (ANTI ELEMENTOR)
================================================== */
#bikkoo-app,
#bikkoo-app * {
  box-sizing: border-box !important;
  font-family: 'Albert Sans', sans-serif !important;
}

/* Evita scroll horizontal causado por 100vw */
html, body {
  width: 100%;
  overflow-x: hidden;
}

/* ==================================================
   APP BASE (QUIZ)
================================================== */
#bikkoo-app {
    max-width: 420px;
    min-height: 100vh;
    margin: 0 auto;
    background: #F3F1E6!important;
    display: flex;
    align-items:center;
    justify-content:center;
}

/* ==================================================
   SPLASH FULLSCREEN (FORA DO CONTAINER)
================================================== */
.bikkoo-splash {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100vh;
  background-color: #022873 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

.bikkoo-splash-content {
  text-align: center;
}

.bikkoo-splash-content img {
  width: 160px;
  height: auto;
  margin-bottom: 40px;
}

/* ==================================================
   LOADING BAR (SPLASH)
================================================== */
.bikkoo-loading-bar {
  width: 160px;
  height: 3px;
  background: rgba(255,255,255,0.25);
  margin: 0 auto;
  border-radius: 2px;
  overflow: hidden;
}

.bikkoo-loading-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: #ffffff;
  animation: bikkooLoading 1.4s ease-in-out forwards;
}

@keyframes bikkooLoading {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ==================================================
   TELA BASE
================================================== */
#bikkoo-app .bikkoo-tela {
  padding: 24px;
  display: flex;
  flex-direction: column;
}

/* ==================================================
   PROGRESSO
================================================== */
#bikkoo-app .bikkoo-progresso {
  height: 4px;
  background: #ddd !important;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

#bikkoo-app .bikkoo-progresso span {
  display: block;
  height: 100%;
  background: #022873 !important;
}

/* ==================================================
   PASSO (1 de 16)
================================================== */
#bikkoo-app .bikkoo-passo {
  text-align: right;
  font-size: 12px;
  color: #999 !important;
  margin-bottom: 16px;
}

/* ==================================================
   TÍTULO
================================================== */
#bikkoo-app .bikkoo-titulo {
  font-size: 22px;
  font-weight: 600;
  color: #0b2a5a !important;
  margin-bottom: 24px;
  line-height: 1.3;
}

/* ==================================================
   ILUSTRAÇÃO
================================================== */
#bikkoo-app .bikkoo-ilustracao {
  width: 100%;
  max-width: 260px;
  margin: 0 auto 24px;
  display: block;
}

#bikkoo-app .bikkoo-ilustracao2 {
    width: 100%;
    max-width: 600px;
    display: block;
    transform: translateY(50px);
}



/* ==================================================
   INPUT
================================================== */
#bikkoo-app .bikkoo-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 24px !important;
  border: 1px solid #ddd !important;
  font-size: 15px;
  margin-bottom: 16px;
  outline: none !important;
  background: #ffffff !important;
  appearance: none !important;
}

/* ==================================================
   BOTÃO
================================================== */
#bikkoo-app .bikkoo-botao {
  width: 100%;
  padding: 14px;
  border-radius: 24px !important;
  border: none !important;
  background: #022873 !important;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  appearance: none !important;
}

/* ==================================================
   BOTÃO DESATIVADO (FUTURO)
================================================== */
#bikkoo-app .bikkoo-botao:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ===== TEXTOS DA TELA 2 ===== */
#bikkoo-app .bikkoo-texto-destaque {
  color: #2f63ff;
  font-weight: 600;
  margin-bottom: 12px;
}

#bikkoo-app .bikkoo-texto {
  font-size: 15px;
  line-height: 1.5;
  color: #0b2a5a;
  margin-bottom: 24px;
}



/* GRID PROFISSOES */
.bikkoo-grid-profissoes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

/* CARD */
.bikkoo-card-profissao {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: 0.2s ease;
  border: 2px solid transparent;
}

.bikkoo-card-profissao img {
  width: 140px;
  margin-bottom: 8px;
}

.bikkoo-card-profissao span {
  font-size: 18px;
  color: #0b2a5a;
  font-weight: 600;
}

.bikkoo-card-profissao.ativo {
  border-color: #022873;
  background: #eef2ff;
}
/* ==================================================
   BOTÃO FIXO (APP STYLE)
================================================== */

.bikkoo-bottom-fixo {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 420px;
  padding: 16px 20px 24px;
  background: linear-gradient(to top, #F3F1E6 70%, rgba(243,241,230,0));
  z-index: 9999;
}

.bikkoo-bottom-fixo .bikkoo-botao {
  width: 100%;
}

/* Espaço para o conteúdo não ficar escondido atrás do botão */
.bikkoo-tela {
  padding-bottom: 120px !important;
}

.bikkoo-servicos-lista {
  border: 2px solid #0b2a5a;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 20px;
}

.bikkoo-servico-item {
  padding: 14px 18px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  background: #fff;
}

.bikkoo-servico-item:last-child {
  border-bottom: none;
}

.bikkoo-servico-item.ativo {
  background: #e9f0ff;
  font-weight: 600;
}


/* ==========================
   DROPDOWN SERVIÇOS
========================== */

.bikkoo-dropdown {
  position: relative;
  width: 100%;
  margin-bottom: 24px;
}

.bikkoo-dropdown-selected {
  background: #fff;
  border: 2px solid #1f3b7a;
  border-radius: 40px;
  padding: 14px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}

.bikkoo-dropdown-list {
  display: none;
  position: absolute;
  width: 100%;
  background: #fff;
  border: 2px solid #1f3b7a;
  border-radius: 20px;
  margin-top: 10px;
  max-height: 260px;
  overflow-y: auto;
  z-index: 99;
}

.bikkoo-dropdown.aberto .bikkoo-dropdown-list {
  display: block;
}

.bikkoo-dropdown-item {
  padding: 14px 18px;
  cursor: pointer;
}

.bikkoo-dropdown-item:hover {
  background: #f2f5ff;
}

.bikkoo-seta {
  font-size: 14px;
}

/* ===== SERVIÇO DESTAQUE ===== */
.bikkoo-servico-destaque {
  background: #4c78d8;
  color: #fff;
  padding: 16px;
  border-radius: 30px;
  text-align: center;
  font-weight: 600;
  margin: 20px 0;
}

/* ===== PERGUNTA ===== */
.bikkoo-pergunta {
  font-weight: 600;
  margin-bottom: 12px;
  color: #0b2a5a;
}

/* ===== BOTÃO VERMELHO ===== */
.bikkoo-botao-vermelho {
  width: 100%;
  padding: 14px;
  border-radius: 24px;
  border: none;
  background: #d13b35;
  color: #fff;
  font-weight: 500;
  margin-bottom: 12px;
  cursor: pointer;
}

/* ===== VOLTAR ===== */
.bikkoo-topo-voltar {
  font-size: 14px;
  color: #0b2a5a;
  margin-bottom: 10px;
  cursor: pointer;
}

/* ==========================
   TELA CONFIRMAÇÃO SERVIÇOS
========================== */

.bikkoo-titulo-centro {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  color: #0b2a5a;
  margin-bottom: 24px;
  line-height: 1.4;
}

.bikkoo-ilustracao-confirmacao {
  width: 100%;
  max-width: 220px;
  margin: 0 auto 24px;
  display: block;
}

.bikkoo-servicos-confirmacao {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.bikkoo-servico-confirmacao {
  background: linear-gradient(135deg, #4c78d8, #2f63ff);
  padding: 14px 18px;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-weight: 500;
}

.bikkoo-servico-confirmacao .valor {
  font-weight: 600;
}

/* Botão outline vermelho */

.bikkoo-botao-vermelho-outline {
  width: 100%;
  padding: 14px;
  border-radius: 24px;
  border: 2px solid #d13b35;
  background: transparent;
  color: #d13b35;
  font-weight: 500;
  cursor: pointer;
}

.bikkoo-card-profissao.desabilitada {
  opacity: 0.4;
  pointer-events: none;
}

/* ===== RESUMO PROFISSOES ===== */

.resumo-grid {
  margin-bottom: 24px;
}

.bikkoo-card-profissao.resumo {
  pointer-events: none;
  border: 2px solid #022873;
  background: #eef2ff;
}

/* ===== TELA IMPACTO ===== */

.bikkoo-titulo-centro.grande {
  font-size: 28px;
  text-align: center;
  margin-bottom: 12px;
}

.bikkoo-texto-centro {
  text-align: center;
  font-size: 16px;
  color: #0b2a5a;
  margin-bottom: 24px;
}

.bikkoo-ilustracao-servico {
  width: 100%;
  max-width: 260px;
  margin: 0 auto 24px;
  display: block;
}

/* CARD SIMULAÇÃO */

.bikkoo-card-simulacao {
  background: #f8f6ef;
  border-radius: 20px;
  padding: 16px;
  margin-bottom: 24px;
}


.bikkoo-imagem-full {
  width: 100%;
  border-radius: 24px;
  margin-bottom: 24px;
}

.bikkoo-titulo-centro.grande {
  font-size: 28px;
  text-align: center;
  margin-bottom: 12px;
}

.bikkoo-texto-centro {
  text-align: center;
  font-size: 16px;
  color: #0b2a5a;
  margin-bottom: 24px;
}

/* ===== EXPERIÊNCIA ===== */

.bikkoo-estrelas {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0 20px;
}

.bikkoo-estrelas .estrela {
  width: 70px;
  transition: 0.3s ease;
}

.bikkoo-anos {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  color: #022873;
  margin-bottom: 20px;
}

.bikkoo-anos span {
  font-size: 64px;
}

.bikkoo-slider {
  width: 100%;
  margin-bottom: 40px;
  appearance: none;
  height: 6px;
  border-radius: 6px;
  background: #cfd6e6;
  outline: none;
}

.bikkoo-slider::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  background: #022873;
  border-radius: 50%;
  cursor: pointer;
}

.bikkoo-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #022873;
  border-radius: 50%;
  cursor: pointer;
}


.bikkoo-texto-centro.destaque {
  text-align: center;
  font-size: 17px;
  color: #0b2a5a;
  line-height: 1.5;
  margin: 20px 0 40px;
  font-weight: 500;
}

.bikkoo-imagem-grande {
  width: 100%;
  margin-top: 40px;
}


.bikkoo-multi {
  margin: 30px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bikkoo-option {
  display: flex !important;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  color: #022873;
  cursor: pointer;
  width: 100%;
}

.bikkoo-option input {
  width: 18px;
  height: 18px;
  accent-color: #022873;
}
