*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

:root{
  --navy:#091522;
  --navy2:#10263a;
  --gold:#bf985b;
  --gold2:#e2c58f;
  --white:#fff;
  --text:#17212e;
  --muted:#79818c;
  --line:#e4dbce;
  --red:#a84242;
  --green:#15945a;
}

html,body{
  width:100%;
  min-height:100%;
}

body{
  font-family:"Inter",Arial,sans-serif;
  background:#09131f;
  color:white;
}

button,a{
  font:inherit;
}

.background{
  position:fixed;
  inset:0;
  z-index:-2;
  overflow:hidden;
  background:#08131f;
}

.background img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.08);
  filter:brightness(.54) saturate(.72);
}

.background-blur{
  position:absolute;
  inset:-20px;
  backdrop-filter:blur(11px);
  -webkit-backdrop-filter:blur(11px);
}

.background-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(115deg,rgba(6,14,23,.78),rgba(10,22,35,.56)),
    radial-gradient(circle at 20% 20%,rgba(191,152,91,.10),transparent 28%);
}

.desktop-shell{
  width:min(1460px,calc(100% - 34px));
  height:100vh;
  margin:auto;
  display:grid;
  grid-template-rows:112px minmax(0,1fr);
  padding:0 0 18px;
}

.master-header{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  height:112px;
}

.master-logo{
  width:230px;
  height:auto;
  display:block;
  filter:drop-shadow(0 8px 20px rgba(0,0,0,.18));
}

.master-title{
  min-height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px 22px;
  border-radius:999px;
  border:1px solid rgba(226,197,143,.26);
  background:rgba(8,19,31,.68);
  color:var(--gold2);
  font-size:16px;
  font-weight:800;
  white-space:nowrap;
  backdrop-filter:blur(10px);
}

.main-panel{
  min-height:0;
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.11);
  backdrop-filter:blur(9px);
  border-radius:28px;
  padding:28px 34px;
  display:grid;
  grid-template-columns:420px minmax(0,1fr);
  gap:54px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,.20);
}

.video-column{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:0;
}

.video-home{
  width:100%;
  display:flex;
  justify-content:center;
}

.video-frame{
  width:100%;
  max-width:330px;
  aspect-ratio:9/16;
  background:#08131f;
  border:1px solid rgba(226,197,143,.25);
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,.28);
}

.video-frame video{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  background:#08131f;
}

.form-column{
  min-width:0;
  min-height:0;
  display:grid;
  grid-template-rows:auto minmax(0,1fr);
  align-content:start;
}

.intro-panel{
  height:204px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  transition:none;
}

.intro-panel.hidden{
  display:none;
}

.intro-panel h1{
  font-family:"Cormorant Garamond",serif;
  font-size:50px;
  line-height:.98;
  max-width:830px;
  margin-bottom:15px;
}

.intro-panel p{
  font-size:14px;
  line-height:1.55;
  color:rgba(255,255,255,.84);
  max-width:900px;
  margin-top:5px;
}

.form-zone{
  min-height:0;
  display:grid;
  grid-template-rows:36px minmax(0,1fr);
  gap:10px;
}

body.questionnaire-active .form-column{
  grid-template-rows:minmax(0,1fr);
}

body.questionnaire-active .form-zone{
  height:100%;
  align-self:stretch;
}

.progress{
  height:36px;
}

.progress-row{
  height:20px;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  font-size:10px;
  font-weight:800;
  letter-spacing:.12em;
  color:rgba(255,255,255,.88);
}

.progress-track{
  height:4px;
  border-radius:999px;
  background:rgba(255,255,255,.18);
  overflow:hidden;
}

.progress-fill{
  width:25%;
  height:100%;
  background:linear-gradient(90deg,var(--gold),var(--gold2));
  transition:width .25s ease;
}

.form-card{
  min-height:0;
  position:relative;
  overflow:hidden;
  background:rgba(255,255,255,.97);
  border:1px solid rgba(191,152,91,.28);
  border-radius:24px;
  padding:22px 24px;
  color:var(--text);
}

.corner-accent{
  position:absolute;
  top:0;
  right:0;
  width:100px;
  height:100px;
  background:linear-gradient(135deg,transparent 49%,rgba(191,152,91,.14) 50%);
  pointer-events:none;
}

.step{
  display:none;
  height:100%;
  position:relative;
  z-index:1;
}

.step.active{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

.kicker{
  font-size:10px;
  font-weight:800;
  letter-spacing:.18em;
  color:#c29d62;
  margin-bottom:8px;
}

.danger-kicker{
  color:#a84242;
}

.step h2{
  font-family:"Cormorant Garamond",serif;
  font-size:31px;
  line-height:1.03;
  margin-bottom:13px;
}

.option{
  width:100%;
  display:grid;
  grid-template-columns:44px minmax(0,1fr) 24px;
  gap:13px;
  align-items:center;
  border:1px solid var(--line);
  border-radius:15px;
  padding:13px 15px;
  background:#fff;
  text-align:left;
  cursor:pointer;
  margin-bottom:10px;
}

.option:hover{
  border-color:#c19b61;
  box-shadow:0 12px 28px rgba(10,20,32,.08);
}

.number{
  width:36px;
  height:36px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--navy);
  color:var(--gold2);
  font-size:10px;
  font-weight:800;
}

.option-copy strong,
.option-copy small{
  display:block;
}

.option-copy strong{
  font-size:14px;
  line-height:1.34;
}

.option-copy small{
  margin-top:3px;
  font-size:11px;
  line-height:1.36;
  color:#8a9098;
}

.arrow{
  text-align:center;
  font-size:19px;
  color:#9b733a;
}

.back{
  width:max-content;
  border:0;
  background:transparent;
  color:#737b85;
  font-size:11px;
  font-weight:800;
  cursor:pointer;
  margin-bottom:8px;
}

.warning-title-row{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-bottom:10px;
}

.warning-circle{
  width:38px;
  height:38px;
  flex:0 0 38px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--red);
  color:#fff;
  font-weight:800;
}

.warning-title-row h2{
  margin-bottom:0;
  font-size:27px;
}

.penalty-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-bottom:11px;
}

.penalty{
  display:grid;
  grid-template-columns:40px 1fr;
  gap:10px;
  align-items:center;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:13px;
  background:#fbfaf7;
}

.penalty-danger{
  background:#fff5f4;
  border-color:#ecc9c5;
}

.penalty small,
.penalty strong{
  display:block;
}

.penalty small{
  font-size:8px;
  letter-spacing:.12em;
  font-weight:800;
  color:#8a9098;
}

.penalty strong{
  font-size:14px;
  line-height:1.25;
  margin:2px 0;
}

.penalty-danger strong{
  color:#9d3f3f;
}

.penalty p{
  font-size:9px;
  line-height:1.32;
  color:#777f89;
}

.qualification{
  margin-top:2px;
  margin-bottom:5px;
}

.qualification-title{
  font-size:25px !important;
  margin-bottom:8px !important;
}

#step2 .option{
  padding:9px 11px;
  margin-bottom:7px;
}

#step2 .option-copy strong{
  font-size:12px;
}

#step2 .option-copy small{
  font-size:9px;
}

.status-icon{
  width:46px;
  height:46px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#fff;
  font-size:20px;
  font-weight:800;
  margin-bottom:10px;
}

.status-icon.success{
  background:var(--green);
}

.status-icon.neutral{
  background:var(--navy);
}

.body-copy{
  font-size:12px;
  line-height:1.55;
  color:#747c86;
  margin-bottom:12px;
}

.body-copy.compact{
  margin-bottom:9px;
}

.primary-button,
.secondary-button,
.gold-button,
.instagram-button{
  width:100%;
  min-height:44px;
  border-radius:11px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  text-decoration:none;
  font-weight:800;
  font-size:13px;
  cursor:pointer;
}

.primary-button{
  border:0;
  background:#189b59;
  color:#fff;
}

.secondary-button{
  border:1px solid #d4d7da;
  background:#fff;
  color:#1b2632;
}

.gold-button{
  border:1px solid #c29d62;
  background:#f4ead9;
  color:#624921;
}

.instagram-button{
  background:linear-gradient(135deg,#483078,#a4397f 52%,#dc7c38);
  color:#fff;
}

.microcopy,
.instagram-handle{
  text-align:center;
  margin-top:8px;
  color:#8d9298;
  font-size:9px;
}

.final-warning{
  padding:11px 12px;
  border-radius:13px;
  border:1px solid #ecc8c3;
  background:#fff5f4;
  display:flex;
  flex-direction:column;
  gap:5px;
  margin-bottom:10px;
}

.final-warning span{
  color:#777f89;
  font-size:10px;
  line-height:1.35;
}

.final-warning strong{
  color:#9e4040;
  font-size:13px;
}

.final-warning em{
  font-style:normal;
  font-size:9px;
  color:#8a9098;
  font-weight:800;
}

.action-stack{
  display:grid;
  gap:8px;
}

#stepNotInterested h2,
#stepThankYou h2,
#stepInterested h2{
  font-size:29px;
}

/* Desktop: absolutely no page or card scroll */
@media (min-width:981px){
  html,body{
    height:100%;
    overflow:hidden;
  }

  body.questionnaire-active .intro-panel{
    display:none;
  }

  body.questionnaire-active .form-column{
    display:flex;
    flex-direction:column;
    justify-content:center;
  }

  body.questionnaire-active .form-zone{
    height:min(590px,100%);
    width:100%;
  }

  body.questionnaire-active .form-card{
    min-height:0;
  }
}

/* Slight compression for shorter laptops */
@media (min-width:981px) and (max-height:850px){
  .desktop-shell{
    grid-template-rows:88px minmax(0,1fr);
    padding-bottom:12px;
  }

  .master-header{
    height:88px;
  }

  .master-logo{
    width:190px;
  }

  .master-title{
    font-size:13px;
    min-height:40px;
    padding:8px 16px;
  }

  .main-panel{
    padding:18px 28px;
    grid-template-columns:360px minmax(0,1fr);
    gap:42px;
  }

  .video-frame{
    max-width:280px;
  }

  .intro-panel{
    height:165px;
  }

  .intro-panel h1{
    font-size:42px;
  }

  .intro-panel p{
    font-size:12px;
  }

  .form-card{
    padding:17px 19px;
  }

  .step h2{
    font-size:27px;
  }

  body.questionnaire-active .form-zone{
    height:min(520px,100%);
  }
}

/* Mobile/tablet: video first screen, questionnaire below */
@media (max-width:980px){
  body{
    overflow:auto;
  }

  .desktop-shell{
    width:min(100% - 18px,760px);
    height:auto;
    display:block;
    padding:8px 0 18px;
  }

  .master-header{
    height:auto;
    min-height:74px;
    gap:8px;
    padding:4px 2px 8px;
  }

  .master-logo{
    width:min(38vw,150px);
  }

  .master-title{
    font-size:11px;
    line-height:1.3;
    white-space:normal;
    min-height:36px;
    padding:7px 10px;
  }

  .main-panel{
    display:block;
    padding:12px;
    border-radius:20px;
    overflow:visible;
  }

  .video-column{
    min-height:calc(100vh - 108px);
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .video-frame{
    max-width:250px;
  }

  .form-column{
    min-height:100vh;
    display:block;
    padding-top:18px;
  }

  .intro-panel{
    height:auto;
    display:block;
    margin-bottom:15px;
  }

  .intro-panel h1{
    font-size:38px;
  }

  .intro-panel p{
    font-size:12px;
  }

  .form-zone{
    display:block;
  }

  .progress{
    margin-bottom:10px;
  }

  .form-card{
    min-height:0;
    height:auto;
    overflow:visible;
    padding:18px 16px;
  }

  .step.active{
    height:auto;
  }

  .penalty-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:520px){
  .master-logo{
    width:min(36vw,120px);
  }

  .master-title{
    font-size:9.8px;
  }

  .video-frame{
    max-width:215px;
  }

  .intro-panel h1{
    font-size:31px;
  }

  .option{
    grid-template-columns:38px minmax(0,1fr) 20px;
    padding:12px 11px;
    gap:10px;
  }

  .number{
    width:31px;
    height:31px;
  }

  .option-copy strong{
    font-size:12px;
  }

  .option-copy small{
    font-size:9.5px;
  }
}

/* Floating video only on mobile */
.floating-video-host{
  position:fixed;
  right:10px;
  bottom:10px;
  width:min(42vw,148px);
  z-index:999;
  display:none;
  user-select:none;
}

.floating-video-host.active{
  display:block;
}

.floating-bar{
  height:30px;
  padding:0 5px 0 8px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border:1px solid rgba(226,197,143,.3);
  border-bottom:0;
  border-radius:12px 12px 0 0;
  background:rgba(8,19,31,.96);
}

.drag-handle{
  display:flex;
  align-items:center;
  gap:5px;
  color:var(--gold2);
  font-size:9px;
  font-weight:800;
  touch-action:none;
  cursor:grab;
}

.floating-actions{
  display:flex;
  gap:4px;
}

.floating-actions button{
  width:23px;
  height:23px;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:17px;
  cursor:pointer;
}

.floating-video-host .video-frame{
  width:100%;
  max-width:none;
  border-radius:0 0 14px 14px;
}

.floating-video-host.minimized{
  width:78px;
}

.floating-video-host.minimized .video-frame{
  display:none;
}

.floating-video-host.minimized .floating-bar{
  border-radius:12px;
  border-bottom:1px solid rgba(226,197,143,.3);
}

.floating-video-host.minimized .drag-handle span:last-child{
  display:none;
}

@media(min-width:981px){
  .floating-video-host{
    display:none !important;
  }
}


/* V32 - destaque maior e mesma cor para as duas penalidades */
.penalty-grid{
  gap:12px !important;
}

.penalty,
.penalty-danger{
  background:linear-gradient(180deg,#fff5f3 0%, #ffeceb 100%) !important;
  border:1px solid #efb7b2 !important;
  box-shadow:0 10px 24px rgba(168,66,66,.10) !important;
}

.penalty .number,
.penalty-danger .number{
  background:#8f2f2f !important;
  color:#fff2dc !important;
}

.penalty small,
.penalty-danger small{
  color:#9a4a4a !important;
  font-size:8.5px !important;
  letter-spacing:.14em !important;
}

.penalty strong,
.penalty-danger strong{
  color:#9a2f2f !important;
  font-size:16px !important;
  line-height:1.18 !important;
}

.penalty p,
.penalty-danger p{
  color:#8a5a5a !important;
  font-size:9.5px !important;
  line-height:1.34 !important;
  font-weight:600 !important;
}

@media (max-width:980px){
  .penalty strong,
  .penalty-danger strong{
    font-size:15px !important;
  }
}


/* V33 - centralização do texto principal + leve aumento da tipografia do formulário */

/* bloco de apresentação */
.intro-panel{
  align-items:center !important;
  text-align:center !important;
}

.intro-panel h1{
  text-align:center !important;
  max-width:900px !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

.intro-panel p{
  text-align:center !important;
  max-width:860px !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* formulário - aumento leve de fontes */
.step h2{
  font-size:33px !important;
}

.option-copy strong{
  font-size:15px !important;
}

.option-copy small{
  font-size:11.5px !important;
}

.kicker{
  font-size:10.5px !important;
}

.progress-row{
  font-size:10.5px !important;
}

.warning-title-row h2{
  font-size:29px !important;
}

.penalty small{
  font-size:8.6px !important;
}

.penalty strong{
  font-size:17px !important;
}

.penalty p{
  font-size:9.8px !important;
}

.qualification-title{
  font-size:27px !important;
}

#step2 .option-copy strong{
  font-size:12.8px !important;
}

#step2 .option-copy small{
  font-size:9.6px !important;
}

.body-copy{
  font-size:12.6px !important;
}

.primary-button,
.secondary-button,
.gold-button,
.instagram-button{
  font-size:13.6px !important;
}

.final-warning span{
  font-size:10.5px !important;
}

.final-warning strong{
  font-size:13.6px !important;
}

.microcopy,
.instagram-handle{
  font-size:9.4px !important;
}

@media (min-width:981px) and (max-height:850px){
  .step h2{
    font-size:29px !important;
  }

  .warning-title-row h2{
    font-size:26px !important;
  }

  .option-copy strong{
    font-size:13.8px !important;
  }

  .option-copy small{
    font-size:10.8px !important;
  }
}

@media (max-width:980px){
  .intro-panel h1{
    max-width:100% !important;
  }

  .intro-panel p{
    max-width:100% !important;
  }

  .step h2{
    font-size:30px !important;
  }

  .option-copy strong{
    font-size:13.2px !important;
  }

  .option-copy small{
    font-size:10px !important;
  }
}

@media (max-width:520px){
  .step h2{
    font-size:28px !important;
  }

  .body-copy{
    font-size:12px !important;
  }
}


/* V34 - redução leve do logotipo */
.master-logo{
  width:210px !important;
}

@media (min-width:981px) and (max-height:850px){
  .master-logo{
    width:175px !important;
  }
}

@media (max-width:980px){
  .master-logo{
    width:min(35vw,140px) !important;
  }
}

@media (max-width:520px){
  .master-logo{
    width:min(34vw,112px) !important;
  }
}


/* V35 - destaque com botão de play no centro do vídeo */
.video-frame{
  position:relative;
}

.video-play-overlay{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:min(78%, 220px);
  min-height:86px;
  border:1px solid rgba(226,197,143,.42);
  border-radius:18px;
  background:linear-gradient(180deg, rgba(9,21,34,.88), rgba(9,21,34,.76));
  box-shadow:0 20px 40px rgba(0,0,0,.28);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  cursor:pointer;
  z-index:4;
  transition:opacity .22s ease, transform .22s ease, box-shadow .22s ease;
}

.video-play-overlay:hover{
  transform:translate(-50%,-50%) scale(1.03);
  box-shadow:0 24px 46px rgba(0,0,0,.34);
}

.video-play-overlay.hidden{
  opacity:0;
  pointer-events:none;
}

.video-play-icon{
  width:46px;
  height:46px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg, var(--gold2), var(--gold));
  color:#122134;
  font-size:20px;
  font-weight:800;
  padding-left:3px;
  box-shadow:0 10px 24px rgba(191,152,91,.28);
}

.video-play-text{
  color:#fff;
  font-size:13px;
  font-weight:800;
  letter-spacing:.02em;
  text-align:center;
}

@media (max-width:980px){
  .video-play-overlay{
    width:min(82%, 200px);
    min-height:78px;
    gap:7px;
  }

  .video-play-icon{
    width:40px;
    height:40px;
    font-size:18px;
  }

  .video-play-text{
    font-size:12px;
  }
}

@media (max-width:520px){
  .video-play-overlay{
    min-height:72px;
    border-radius:16px;
  }

  .video-play-text{
    font-size:11px;
  }
}


/* V36 - remoção do kicker de qualificação com espaçamento preservado */
.qualification-title{
  margin-top:10px !important;
}


/* V37 - centralização do texto do passo interessado */
#stepInterested h2{
  text-align:center !important;
}

#stepInterested .body-copy{
  text-align:center !important;
  max-width:760px;
  margin-left:auto !important;
  margin-right:auto !important;
}


/* V38 - etapa para coletar nome e personalização da segunda etapa */
.centered-name-copy{
  max-width:720px;
}

.name-field-wrap{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin:8px 0 14px;
}

.name-input{
  width:100%;
  min-height:54px;
  border:1px solid #d7d1c6;
  border-radius:14px;
  padding:0 16px;
  font-size:15px;
  font-weight:600;
  color:#1b2632;
  background:#fff;
  outline:none;
}

.name-input:focus{
  border-color:#c29d62;
  box-shadow:0 0 0 4px rgba(194,157,98,.14);
}

.name-input::placeholder{
  color:#9aa2aa;
  font-weight:500;
}

.name-error{
  display:none;
  color:#a84242;
  font-size:11px;
  font-weight:700;
}

.name-error.visible{
  display:block;
}

.continue-name-btn{
  max-width:260px;
}

#penaltyPersonalizedTitle{
  max-width:940px;
}

@media (max-width:980px){
  .name-input{
    min-height:50px;
    font-size:14px;
  }

  .continue-name-btn{
    max-width:100%;
  }
}


/* V39 - destaque visual no nome da pessoa na etapa de contratação */
.person-name-highlight{
  display:inline-block;
  color:#9a2f2f;
  background:linear-gradient(180deg,#fff1db 0%, #f6e1b6 100%);
  border:1px solid rgba(191,152,91,.45);
  border-radius:10px;
  padding:2px 8px;
  margin-right:3px;
  box-shadow:0 6px 16px rgba(191,152,91,.18);
}


/* V41 - remover "PRIMEIRA PERGUNTA" mantendo o espaçamento visual */
.first-question-title{
  margin-top:18px !important;
}


/* V42 MOBILE - vídeo maior no primeiro visual e sem janela flutuante */
@media (max-width:980px){
  .desktop-shell{
    width:min(100% - 12px, 760px) !important;
    padding-top:4px !important;
  }

  .master-header{
    min-height:62px !important;
    padding:2px 2px 4px !important;
  }

  .master-logo{
    width:min(33vw,132px) !important;
  }

  .master-title{
    min-height:32px !important;
    padding:6px 9px !important;
    font-size:10px !important;
  }

  .main-panel{
    padding:8px !important;
  }

  .video-column{
    min-height:calc(100vh - 84px) !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
  }

  .video-home{
    height:100% !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
  }

  .video-frame{
    width:auto !important;
    height:min(calc(100vh - 108px), 76vh) !important;
    max-width:92vw !important;
    max-height:calc(100vh - 108px) !important;
    aspect-ratio:9/16 !important;
  }

  .video-frame video{
    width:100% !important;
    height:100% !important;
    object-fit:contain !important;
  }

  .form-column{
    padding-top:12px !important;
  }

  .floating-video-host{
    display:none !important;
  }
}

@media (max-width:520px){
  .desktop-shell{
    width:calc(100% - 8px) !important;
  }

  .master-header{
    min-height:58px !important;
  }

  .master-logo{
    width:min(31vw,112px) !important;
  }

  .master-title{
    font-size:9.2px !important;
    padding:5px 7px !important;
  }

  .video-column{
    min-height:calc(100vh - 76px) !important;
  }

  .video-frame{
    height:min(calc(100vh - 96px), 78vh) !important;
    max-height:calc(100vh - 96px) !important;
    max-width:94vw !important;
  }
}


/* V43 MOBILE - cabeçalho fixo durante a rolagem */
@media (max-width:980px){
  .master-header{
    position:sticky !important;
    top:0 !important;
    z-index:1200 !important;
    background:rgba(8,19,31,.90) !important;
    backdrop-filter:blur(12px) !important;
    -webkit-backdrop-filter:blur(12px) !important;
    border-bottom:1px solid rgba(226,197,143,.18) !important;
    border-radius:0 0 14px 14px !important;
    box-shadow:0 8px 24px rgba(0,0,0,.16) !important;
  }
}

@media (max-width:520px){
  .master-header{
    min-height:58px !important;
  }
}


/* V44 - ícone do WhatsApp nos botões */
.primary-button.whatsapp{
  gap:10px;
}

.whatsapp-inline-icon{
  width:20px;
  height:20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 20px;
}

.whatsapp-inline-icon svg{
  width:100%;
  height:100%;
  display:block;
  color:currentColor;
}

@media (max-width:520px){
  .primary-button.whatsapp{
    gap:8px;
  }

  .whatsapp-inline-icon{
    width:18px;
    height:18px;
    flex-basis:18px;
  }
}


/* V45 - ícones positivos/negativos na etapa de decisão */
.choice-icon-positive{
  background:linear-gradient(180deg,#22b36b 0%, #0d8f52 100%) !important;
  color:#ffffff !important;
  box-shadow:0 10px 22px rgba(21,148,90,.22);
  font-size:18px !important;
  font-weight:900 !important;
}

.choice-icon-negative{
  background:linear-gradient(180deg,#d85a5a 0%, #b43a3a 100%) !important;
  color:#ffffff !important;
  box-shadow:0 10px 22px rgba(168,66,66,.20);
  font-size:17px !important;
  font-weight:900 !important;
}

.positive-choice:hover{
  border-color:#22b36b !important;
  box-shadow:0 14px 30px rgba(21,148,90,.12) !important;
}

.negative-choice:hover{
  border-color:#d85a5a !important;
  box-shadow:0 14px 30px rgba(168,66,66,.10) !important;
}

@media (max-width:520px){
  .choice-icon-positive{
    font-size:16px !important;
  }
  .choice-icon-negative{
    font-size:15px !important;
  }
}


/* V46 - etapa CNH do Brasil */
.cnh-app-brand{
  width:100%;
  display:flex;
  justify-content:center;
  margin:4px 0 8px;
}

.cnh-app-brand img{
  width:min(100%, 250px);
  height:auto;
  display:block;
  border-radius:10px;
  box-shadow:0 10px 26px rgba(0,0,0,.08);
}

.cnh-app-copy{
  text-align:center;
  max-width:720px;
  margin-left:auto;
  margin-right:auto;
}

@media (max-width:980px){
  .cnh-app-brand img{
    width:min(100%, 220px);
  }
}


/* V47 - ajustes CNH do Brasil e centralização da pergunta de qualificação */
.cnh-app-brand{
  margin:6px 0 10px !important;
}

.cnh-app-brand img{
  background:transparent !important;
  box-shadow:none !important;
}

.qualification-title{
  text-align:center !important;
  margin-top:14px !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

@media (max-width:980px){
  .qualification-title{
    text-align:center !important;
    margin-top:16px !important;
  }
}


/* V48 - ajuste de textos */
.qualification-title{
  text-align:left !important;
  margin-left:0 !important;
  margin-right:0 !important;
}

.cnh-app-copy{
  text-align:center !important;
}


/* V49 - remover duplicidade e reorganizar textos da etapa CNH */
.cnh-app-copy{
  margin-top:2px !important;
  margin-bottom:12px !important;
  font-size:14px !important;
  line-height:1.45 !important;
  color:#7c848e !important;
}

@media (max-width:980px){
  .cnh-app-copy{
    font-size:13px !important;
  }
}


/* V50 - manter somente uma frase grande na etapa CNH */
.cnh-app-copy{
  display:none !important;
}


/* V51 - rodapé centralizado para PC e celular */
.site-footer{
  width:100%;
  padding:10px 16px 18px;
  display:flex;
  justify-content:center;
}

.site-footer-inner{
  width:min(920px, 100%);
  text-align:center;
  border-top:1px solid rgba(226,197,143,.20);
  padding-top:14px;
}

.site-footer-title{
  color:rgba(255,255,255,.96);
  font-family:"Cormorant Garamond",serif;
  font-size:28px;
  line-height:1.05;
  font-weight:700;
  margin-bottom:4px;
}

.site-footer-line{
  color:rgba(255,255,255,.78);
  font-size:12px;
  line-height:1.55;
  margin:0;
}

@media (min-width:981px){
  .desktop-shell{
    height:auto !important;
    min-height:100vh !important;
  }

  html, body{
    min-height:100% !important;
  }

  body{
    overflow:auto !important;
  }
}

@media (max-width:980px){
  .site-footer{
    padding:8px 12px 18px;
  }

  .site-footer-inner{
    padding-top:12px;
  }

  .site-footer-title{
    font-size:22px;
  }

  .site-footer-line{
    font-size:11px;
    line-height:1.5;
  }
}

@media (max-width:520px){
  .site-footer-title{
    font-size:20px;
  }

  .site-footer-line{
    font-size:10.5px;
  }
}
