@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {

  --primary-green: #34AE69;
  --secondary-green: #5ECA8E;
  --light-green: #90E5BD;
  --white-green: #f5fbf7;
  --black: #000000;
  --dark-grey: #343A46;
  --secondary-grey: #6D717A;
  --secondary-grey-alpha: #6d717ae7;
  --light-grey: #D9D9D9;
  --white-grey: #F8F9FA;
  --white-grey-alpha: #f8f9faa3;
  --white: #FFFFFF;
  --white-alpha: #ffffffa1;
  --light-grey-alpha: #ececec;
  --font-primary: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, sans-serif;

  --progress-track: #6d717ae7;
  --progress-fill: #90E5BD;

  --shadow-soft: 0 2px 6px rgba(0, 0, 0, 0.08), 0 8px 18px rgba(0, 0, 0, 0.06);
  --shadow-frame: 0 24px 60px rgba(0, 0, 0, 0.16);

  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-xxl: 999px;

}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  color: var(--dark-grey);
  background:
    radial-gradient(circle at top, #6b6b6b 0%, #565656 38%, #474747 100%);
  font-weight: 400;
}

/*≠≠≠≠≠≠≠≠≠≠≠≠GERAL - BASE MOBILE FIRST≠≠≠≠≠≠≠≠≠≠≠*/
.lead,
.eyebrow,
.desktop-copy,
.progress-meta {
  font-weight: 400;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

.page-shell {
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 0;
}

.app-screen {
  width: 100%;
  min-height: 100dvh;
  background: var(--white-green);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero {
  position: relative;
  min-height: 41dvh;
  max-height: 430px;
  overflow: hidden;
  padding: 0;
  background: #dfe5e2;
  clip-path: ellipse(130% 100% at 50% 0%);
}

.hero-image {
  width: 100%;
  height: calc(100% + 20px);
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0.12),
      rgba(0, 0, 0, 0.02) 22%,
      rgba(0, 0, 0, 0) 36%);
}

.hero-topbar {
  position: absolute;
  top: max(16px, calc(env(safe-area-inset-top) + 8px));
  left: 16px;
  right: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-button {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.menu-button:hover {
  opacity: 0.8;
}

.brand {
  width: 140px;
  height: 42px;
  opacity: 0.9;
}

.content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 24px max(24px, env(safe-area-inset-bottom));
  margin-top: -18px;
}

.content-inner {
  width: 100%;
  max-width: 360px;
  min-height: 100%;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 1fr auto auto;
  align-items: stretch;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 1.2;
  color: var(--secondary-grey-alpha);
  margin-bottom: 14px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary-green);
  flex: 0 0 auto;
}

h1 {
  margin: 0;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 400;
}

.h1-strong {
  font-size: 22px;
  font-weight: 700;
}

.lead {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--secondary-grey-alpha);
}

/*----------buttons-----------*/
.actions-choice {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.choice-button {
  width: 100%;
  min-height: 44px;
  margin-top: 10px;
  padding: 0 20px;
  border-radius: var(--radius-xxl);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: opacity 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
}

.choice-button--primary {
  background: var(--secondary-green);
  color: var(--white);
}

.choice-button--secondary {
  background: var(--white-green);
  color: var(--secondary-green);
  border: 2px solid var(--secondary-green);
  box-shadow: none;
}

.manual-view-button {
  gap: 10px;
}

.manual-view-button__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.choice-button:hover {
  opacity: 0.8;
}

.choice-button:active {
  transform: scale(0.985);
}

.choice-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 28%;
}

.choice-divider span {
  flex: 1;
  height: 1px;
  background: var(--secondary-grey);
  opacity: 0.1;
}

.choice-divider p {
  margin: 0;
  font-size: 12px;
  color: var(--light-grey);
  font-weight: 400;
}

.menu-button:focus-visible,
.choice-button:focus-visible {
  outline: 3px solid rgba(17, 17, 17, 0.22);
  outline-offset: 4px;
}

/*----------end buttons----------*/

.progress-section {
  width: 100%;
  margin-top: auto;
  padding-top: 10px;
}

.progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 9px;
  color: var(--secondary-grey-alpha);
  margin-bottom: 10px;
}

.progress-track {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(120, 150, 141, 0.34);
  overflow: hidden;
}

.progress-fill {
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--progress-fill), var(--progress-track));
  transition: width 0.45s ease;
}

.desktop-copy {
  display: none;
}

.content-main {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 35px;
}


.content-actions {
  margin-top: 24px;
  text-align: center;
}

.content-progress {
  margin-top: 36px;
  align-self: end;
}

@media (max-width: 959px) {
  .eyebrow {
    display: none;
  }
}

/*************END MOBILE***********/

/**************DESKTOP************/
@media (min-width: 960px) {

  .content-inner {
    text-align: left;
    grid-template-rows: 0.8fr auto auto;
  }


  .page-shell {
    padding: 28px;
    align-items: center;
  }

  .app-screen {
    min-height: min(920px, calc(100dvh - 56px));
    max-width: 1100px;
    border-radius: 28px;
    box-shadow: var(--shadow-frame);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    overflow: hidden;
    position: relative;
  }

  .hero {
    min-height: 100%;
    max-height: none;
    clip-path: none;
    overflow: hidden;
    position: relative;
  }

  .hero-topbar {
    top: 18px;
    left: 18px;
    right: 18px;
  }

  .hero-image {
    height: 100%;
  }

  .content {
    position: relative;
    z-index: 2;
    padding: 115px 80px 40px 0;
    background: var(--white-green);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
  }

  .content::before {
    content: "";
    position: absolute;
    top: -14px;
    bottom: -46px;
    left: -154px;
    width: 160px;
    background: var(--white-green);
    border-top-left-radius: 150px 50%;
    border-bottom-left-radius: 160px 50%;
    z-index: 0;
  }

  .content-actions {
    margin-top: 32px;
    text-align: center;
  }

  .content-progress {
    margin-top: 75px;
  }

  h1 {
    font-size: 50px;
    font-weight: 400;
    padding-bottom: 18px;
  }

  .h1-strong {
    font-size: 48px;
    font-weight: 700;
  }

  .lead {
    font-size: 15px;
    line-height: 1.5;
  }

  .desktop-copy {
    display: block;
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.4;
    color: var(--secondary-grey-alpha);
    font-weight: 400;
    padding-top: 15px;
  }

  /* STEPS LAYOUT - DESKTOP */
  .app-step .content-inner {
    grid-template-rows: auto 1fr auto auto;
  }

  .app-step .content-actions {
    margin-top: 0;
    margin-bottom: 18px;
  }

  .app-step .content-progress {
    margin-top: 0;
  }

}

@media (max-height: 740px) {
  .hero {
    min-height: 36dvh;
  }

  .content {
    padding-top: 8px;
  }

  h1 {
    font-size: 22px;
  }
}

/* STEPS LAYOUT */
.app-step .content-inner {
  grid-template-rows: auto 1fr auto auto;
}

.app-step .content-main {
  align-self: start;
}

.app-step .content-actions {
  align-self: end;
  margin-top: 0;
  margin-bottom: 16px;
}

.app-step .content-progress {
  align-self: end;
  margin-top: 0;
}

.progress-adjust {
  margin-bottom: 10px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .choice-button,
  .menu-button {
    transition: none;
  }
}

/*≠≠≠≠≠≠≠≠≠≠≠END GERAL≠≠≠≠≠≠≠≠≠≠≠*/

/*≠≠≠≠≠≠≠STEP 2 - VIDEO≠≠≠≠≠≠≠≠≠≠*/
.hero-video {
  position: relative;
}

.hero-media {
  width: 100%;
  height: calc(100% + 20px);
  object-fit: cover;
  object-position: center;
}

.video-play-button {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 80px;
  height: 80px;
  border: none;
  background: transparent;
  display: grid;
  place-items: center;
  z-index: 4;
  cursor: pointer;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

@media (min-width: 960px) {
  .video-play-button {
    left: 35%;
    right: auto;
    top: 48%;
    margin: 0;
  }
}

.video-play-button img {
  width: 80px;
  height: 80px;
}

.video-play-button:hover {
  opacity: 0.9;
  transform: scale(1.04);
}

.video-play-button.is-hidden {
  opacity: 0;
  pointer-events: none;
}

/*≠≠≠≠≠≠≠STEP 2 - END VIDEO≠≠≠≠≠≠≠≠≠≠*/

/*≠≠≠≠≠≠≠STEP 3 - FORM*/
.form-group {
  margin-top: 20px;
  width: 100%;
}

.form-select {
  width: 100%;
  height: 48px;
  padding: 0 40px 0 16px;
  border-radius: var(--radius-xxl);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-xxl);
  font-family: var(--font-primary);
  font-size: 12px;
  background: transparent;
  padding: 0 22px;
  font-family: var(--font-primary);
  color: var(--secondary-grey-alpha);
  outline: none;
  appearance: none;
  cursor: pointer;
  opacity: 0.8;
  background-image: url("../svg/arrow-select.svg");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
}

.form-select:focus {
  outline: none;
  border-color: var(--secondary-green);
}

.form-select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
/*≠≠≠≠≠≠≠≠STEP 3 - FORM END≠≠≠≠≠≠≠≠≠≠*/


/*≠≠≠≠≠≠≠STEP 4 - TEAM HORIZONTAL SCROLL≠≠≠≠≠≠≠≠≠≠*/
.app-step .content-inner {
  grid-template-rows: 1fr auto auto;
  min-height: 100%;
  overflow: hidden;
}

.app-step .content-main {
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 35px;
}

.team-step {
  width: 100%;
  text-align: center;
  color: var(--dark-grey);
}

.team-step h1 {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.department-label {
  margin-top: 22px;
  margin-bottom: 38px;
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  background: transparent;
  height: auto;
  padding: 0;
}

.team-carousel {
  margin-left: -24px;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 24px 16px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  cursor: grab;
  touch-action: pan-x;
  user-select: none;
}

.team-carousel:active {
  cursor: grabbing;
}

.team-carousel::-webkit-scrollbar {
  display: none;
}

.team-card {
  flex: 0 0 150px;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--light-grey);
  margin-bottom: 14px;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-card strong {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--black);
  text-align: center;
}

.team-card span {
  margin-top: 3px;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--black);
  text-align: center;
}

.team-photo--you {
  display: grid;
  place-items: center;
}

.team-photo--you img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  opacity: 0.8;
}

.team-carousel {
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      black 40%,
      black 86%,
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      black 40%,
      black 86%,
      transparent 100%);
}

@media (min-width: 960px) {
  .team-card {
    flex: 0 0 240px;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
  }

  .team-photo {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: var(--light-grey);
    margin-bottom: 14px;
    overflow: hidden;
  }
}
/*≠≠≠≠≠≠≠STEP 4 - END TEAM HORIZONTAL SCROLL≠≠≠≠≠≠≠≠≠≠*/

/*≠≠≠≠≠≠≠STEP 5 - UL≠≠≠≠≠≠≠≠≠≠*/
@media (max-width: 768px) {
  #step-description ul {
      list-style: none;
      padding-left: 0;
      margin: 10px 0;
      text-align: center;
  }

  #step-description li {
      text-align: center;
      margin-bottom: 6px;
  }
}
/*≠≠≠≠≠≠≠STEP 5 - END UL≠≠≠≠≠≠≠≠≠≠*/

/*≠≠≠≠≠≠≠STEP 7 - PERSONAL FORM≠≠≠≠≠≠≠*/
.personal-form {
  width: 100%;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.floating-field {
  position: relative;
  width: 100%;
  min-width: 0;
}

.floating-field input {
  width: 100%;
  max-width: 100%;
  height: 48px;
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-xxl);
  background: transparent;
  padding: 0 22px;
  font-family: var(--font-primary);
  font-size: 12px;
  color: var(--secondary-grey-alpha);
  outline: none;
  opacity: 0.7;
}

.floating-field input[type="date"] {
  display: block;
  min-width: 0;
  text-align: left;
}

.floating-field input[type="date"]::-webkit-date-and-time-value,
.floating-field input[type="date"]::-webkit-datetime-edit,
.floating-field input[type="date"]::-webkit-datetime-edit-fields-wrapper {
  text-align: left;
}

.floating-field label {
  position: absolute;
  top: -9px;
  left: 34px;
  padding: 0 8px;
  background: var(--white-green);
  color: var(--progress-track);
  font-size: 12px;
  line-height: 1;
  pointer-events: none;
}

.document-form .floating-field label {
  background: var(--white);
}

.contact-form .floating-field label {
  background: var(--white);
}

.floating-field input:focus {
  border-color: var(--secondary-green);
}

.floating-field input:focus+label {
  color: var(--secondary-green);
}

.info-consent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 1.2;
  color: var(--secondary-grey-alpha);
  margin-bottom: 14px;
}

/*≠≠≠≠≠≠≠STEP 7 - END PERSONAL FORM≠≠≠≠≠≠≠*/





/*≠≠≠≠≠≠≠STEP 10 -  TABS DOCUMENTS≠≠≠≠≠≠≠*/

/*≠≠≠≠≠≠≠STEP 10 - END TABS DOCUMENTS≠≠≠≠≠≠≠*/





/*≠≠≠≠≠≠≠STEP 15 - TRAINING≠≠≠≠≠≠≠*/
.training-card {
  overflow: hidden;
}

.training-card-header h2 {
  margin: 0 0 6px;
  font-size: 20px;
}

.training-progress-badge {
  font-size: 13px;
  color: #777;
}

.training-lessons {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.training-lesson {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px;
  border: none;
  text-align: left;
  background-color: var(--white);
  cursor: pointer;
  border-radius: 20px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.training-lesson:last-child {
  border-bottom: none;
}

/* Ícone */
.lesson-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lesson-icon img {
  height: 20px;
}

/* Estados dos ícones */
.training-lesson.completed .lesson-icon {
  background: #dff3df;
}

.training-lesson.current .lesson-icon {
  background: #dff3df;
}

.training-lesson.locked .lesson-icon {
  background: #f2f2f2;
  opacity: 0.7;
}

/* Conteúdo */
.lesson-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-family: var(--font-primary);
}

.lesson-content strong {
  font-size: 18px;
  font-weight: 600;
  color: #666;
}

.lesson-content span {
  padding-top: 5px;
  font-size: 12px;
  color: #666;
}

/* Estado (badge) */
.lesson-status {
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-family: var(--font-primary);
  color: #fff;
}

/* CONCLUÍDO */
.training-lesson.completed .lesson-status {
  background: var(--secondary-green);
  cursor: default;
  opacity: 0.5;
}

.training-lesson.completed {
  cursor: default;
  pointer-events: none;
}

/* VER AGORA */
.training-lesson.current .lesson-status {
  background: var(--primary-green);
  cursor: pointer;
}

.training-lesson.current {
  cursor: pointer;
}

.training-lesson.current:hover {
  opacity: 0.8;
  transition: opacity 0.5s ease-in-out;
}

/* PENDENTE */
.training-lesson.locked .lesson-status {
  background: var(--light-grey);
  color: #fff;
  opacity: 0.8;
  cursor: not-allowed;
}

.training-lesson.locked {
  cursor: not-allowed;
  pointer-events: none;
}


/*≠≠≠≠≠≠≠STEP 16 - QUIZ≠≠≠≠≠≠≠*/
.quiz {
  width: 100%;
  text-align: left;
}

.app-step .content-main:has(.quiz) {
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.quiz-header {
  margin-bottom: 24px;
}

.quiz-header h2 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dark-grey);
}

.quiz-progress-badge {
  font-size: 13px;
  color: var(--secondary-grey);
}

.quiz-question:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.quiz-question__badge {
  display: inline-block;
  margin-left: -10px;
  margin-bottom: 10px;
  padding: 5px 12px;
  border-radius: var(--radius-xxl);
  background: #dff3df;
  color: var(--primary-green);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.quiz-question__text {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
  color: var(--dark-grey);
}

.quiz-question__hint {
  margin: -8px 0 16px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--secondary-grey);
}

.quiz-scenario {
  margin: 0 0 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--light-grey);
  box-shadow: var(--shadow-soft);
}

.quiz-scenario img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 2px solid var(--light-grey);
  border-radius: var(--radius-lg);
  background: var(--white);
  text-align: left;
  font-family: var(--font-primary);
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.quiz-option:hover:not(:disabled) {
  border-color: var(--secondary-green);
}

.quiz-option:active:not(:disabled) {
  transform: scale(0.99);
}

.quiz-option__letter {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white-green);
  color: var(--primary-green);
  font-size: 12px;
  font-weight: 700;
}

.quiz-option__text {
  flex: 1;
  font-size: 13px;
  line-height: 1.4;
  color: var(--dark-grey);
}

.quiz-option.is-selected {
  border-color: var(--secondary-green);
  background: var(--white-green);
}

.quiz-option.is-correct {
  border-color: var(--primary-green);
  background: #e8f8ef;
}

.quiz-option.is-correct .quiz-option__letter {
  background: var(--primary-green);
  color: var(--white);
}

.quiz-option.is-incorrect {
  border-color: #e57373;
  background: #fff5f5;
}

.quiz-option.is-incorrect .quiz-option__letter {
  background: #e57373;
  color: var(--white);
}

.quiz-option:disabled {
  cursor: default;
}

.quiz-impostor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.quiz-impostor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 120px;
  padding: 14px 10px;
  border: 2px solid var(--light-grey);
  border-radius: var(--radius-lg);
  background: var(--white);
  text-align: center;
  font-family: var(--font-primary);
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.quiz-impostor-card:hover:not(:disabled) {
  border-color: var(--secondary-green);
}

.quiz-impostor-card:active:not(:disabled) {
  transform: scale(0.98);
}

.quiz-impostor-card__icon {
  font-size: 28px;
  line-height: 1;
}

.quiz-impostor-card__icon img {
  height: 40px;
}

.quiz-impostor-card__text {
  font-size: 11px;
  line-height: 1.35;
  color: var(--dark-grey);
}

.quiz-impostor-card.is-selected {
  border-color: var(--secondary-green);
  background: var(--white-green);
}

.quiz-impostor-card.is-correct {
  border-color: var(--primary-green);
  background: #e8f8ef;
}

.quiz-impostor-card.is-incorrect {
  border-color: #e57373;
  background: #fff5f5;
}

.quiz-impostor-card:disabled {
  cursor: default;
}

.quiz-feedback {
  margin: 12px 0 0;
  min-height: 18px;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
}

.quiz-feedback:empty {
  display: none;
}

.quiz-feedback.is-correct {
  color: var(--primary-green);
}

.quiz-feedback.is-incorrect {
  color: #c62828;
}

.quiz--review .quiz-option,
.quiz--review .quiz-impostor-card {
  pointer-events: none;
  cursor: default;
}

.quiz--review .quiz-option:hover,
.quiz--review .quiz-impostor-card:hover {
  border-color: var(--light-grey);
}

.quiz-result-label {
  margin: 18px 0 0;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}

.quiz-result-label.is-correct {
  color: var(--primary-green);
}

.quiz-result-label.is-incorrect {
  color: #c62828;
}

.quiz-explanation {
  margin: 0;
  padding: 8px;
  border-radius: var(--radius-lg);
  background: var(--white-grey);
  font-size: 12px;
  line-height: 1.5;
  color: var(--secondary-grey);
}

.quiz-text-field {
  display: block;
  width: 100%;
}

.quiz-text-field__label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--secondary-grey);
}

.quiz-text-field__input {
  width: 100%;
  min-height: 112px;
  padding: 14px 16px;
  border: 2px solid var(--light-grey);
  border-radius: var(--radius-lg);
  background: var(--white);
  font-family: var(--font-primary);
  font-size: 13px;
  line-height: 1.45;
  color: var(--dark-grey);
  resize: vertical;
  outline: none;
  transition: border-color 0.18s ease;
}

.quiz-text-field__input::placeholder {
  color: var(--secondary-grey);
}

.quiz-text-field__input:focus {
  border-color: var(--secondary-green);
}

.quiz-open-answer {
  margin: 0 0 12px;
  padding: 12px 14px;
  border-radius: var(--radius-lg);
  background: var(--white-green);
  font-size: 13px;
  line-height: 1.5;
  color: var(--dark-grey);
  white-space: pre-wrap;
}

.quiz--review .quiz-text-field__input {
  pointer-events: none;
  resize: none;
  background: var(--white-grey);
}

.quiz-prompt {
  width: 100%;
  text-align: center;
}

.quiz-prompt h1 {
  margin: 0;
}

.quiz-prompt .lead {
  margin-top: 18px;
}

.choice-button.is-disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
  box-shadow: none;
}

@media (min-width: 960px) {
  .quiz-scenario img {
    height: 140px;
  }

  .quiz-impostor-card {
    min-height: 140px;
    padding: 18px 12px;
  }

  .quiz-impostor-card__text {
    font-size: 12px;
  }
}
/*≠≠≠≠≠≠≠STEP 16 - END QUIZ≠≠≠≠≠≠≠*/

/*≠≠≠≠≠≠≠STEP 21≠≠≠≠≠≠≠*/
.quiz-result-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  margin-top: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.quiz-result-header{
  display:flex;
  align-items:center;
  gap:16px;
}

.quiz-result-header .lesson-icon{
  width:58px;
  height:58px;
  border-radius:50%;
  background:#EAF8F1;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.quiz-result-header .lesson-icon img{
  width:24px;
}

.quiz-result-header .lesson-content{
  display:flex;
  flex-direction:column;
}

.quiz-result-header strong{
  font-size:20px;
  color:#2F3747;
}

.quiz-result-header span{
  margin-top:4px;
  color:#7D8697;
  font-size:14px;
}

.quiz-score{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.quiz-score-item{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:22px;
  border-radius:18px;
}

.quiz-score-item.success{
  background:#EAF8F1;
}

.quiz-score-item.error{
  background:#F8F8F8;
}

.quiz-score-number{
  font-size:44px;
  font-weight:700;
  line-height:1;
}

.success .quiz-score-number{
  color:#59C98A;
}

.error .quiz-score-number{
  color:#FF8A8A;
}

.quiz-score-label{
  margin-top:8px;
  font-size:15px;
  color:#495163;
  text-align:center;
}

.quiz-divider{
  width:10px;
}
/*≠≠≠≠≠≠≠STEP 21 - END*/

/*≠≠≠≠≠≠≠STEP 29 - SOCIAL≠≠≠≠≠≠≠*/
.social-follow {
  margin-top: 32px;
  text-align: left;
}

.social-follow p {
  margin-bottom: 16px;
  font-weight: 600;
}

.social-icons {
  display: flex;
  justify-content: left;
  gap: 18px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: left;
  width: 44px;
  height: 44px;
}

.social-icons a:hover {
  opacity: 0.5;
}

.social-icons img {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .social-follow {
      text-align: center;
  }

  .social-icons {
      justify-content: center;
      margin-bottom: 20px;
  }
}
/*≠≠≠≠≠≠≠STEP 29 - END SOCIAL≠≠≠≠≠≠≠*/

/*≠≠≠≠≠≠≠STEP 12 - ADD BUTTON≠≠≠≠≠≠≠*/
.add-contact-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 15px;
}

.add {
  width: 38px;
  height: 38px;
  min-height:38px;
  padding: 0;
  margin-top: 0;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-primary);
}
/*≠≠≠≠≠≠≠STEP 12 - END ADD BUTTON≠≠≠≠≠≠≠*/

.team-photo--you img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
  cursor:pointer;
}

