@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap" );

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

  body {
    font-family: 'Segoe UI', sans-serif;
    background: #1a1542;
    display: flex;
    justify-content: center;
    min-height: 100vh;
  }

  .app {
    width: 100%;
    max-width: 430px;
    min-height: 100vh;
    background: #1a1542;
    position: relative;
    display: flex;
    flex-direction: column;
  }

  /* PROGRESS BAR */
  .progress-bar-wrap { width: calc(100% - 48px); margin: 12px 24px 0; height: 6px; background: #2a1547; border-radius: 3px; overflow: hidden; }
  .progress-bar-fill { height: 100%; background: #bd30cd; transition: width 0.4s ease; border-radius: 3px; min-width: 8%; }

  /* BACK BUTTON */
  .back-btn {
    visibility: hidden;
    background: none; border: none; color: #fff;
    font-size: 22px; cursor: pointer; z-index: 10;
    padding: 10px 14px 6px;
    align-self: flex-start;
  }
  .back-btn.visible { visibility: visible; }

  /* SCREENS */
  .screen { display: none; flex-direction: column; padding: 20px 16px 40px; min-height: 100vh; animation: fadeIn 0.3s ease; }
  .screen.active { display: flex; }
  @keyframes fadeIn { from { opacity:0; transform:translateX(20px); } to { opacity:1; transform:translateX(0); } }

  /* ── SCREEN 1 ── */
  #screen1 { padding-top: 16px; }

  .s1-header { text-align: center; margin-bottom: 14px; padding: 0 4px; }
  .s1-header h1 {
    color: #fff; font-size: 24px; font-weight: 600;
    text-transform: uppercase; line-height: 1.2; margin-bottom: 14px;
    text-align: center; font-family: 'Inter', sans-serif;
  }
  .s1-subtitle {
    color: #fff; font-size: 16px; font-weight: 300;
    text-transform: uppercase; line-height: 1.2;
    display: inline; background: #bd30cd;
    box-decoration-break: clone; -webkit-box-decoration-break: clone;
    padding: 0px 0px; border-radius: 1px; font-family: 'Inter', sans-serif;
  }
  .s1-header > div { text-align: center !important; }
  .s1-step {
    color: #fff; font-size: 24px; font-weight: 600;
    text-align: center; margin: 22px 4px 16px;
    line-height: 1.3; font-family: 'Inter', sans-serif;
  }

  /* SIGN GRID */
  .signs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
  .sign-card {
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    border: 1px solid #bd30cd;
    transition: transform 0.15s;
  }
  .sign-card:active { transform: scale(0.94); }

  .sign-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 4px 10px;
    flex: 1;
  }
  .sign-icon svg { width: 64px; height: 64px; display: block; }

  .sign-label {
    background: #bd30cd;
    font-family: 'Inter', sans-serif;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    padding: 15px 4px;
  }

  /* ── SCREENS 2-5 ── */
  .screen-inner { padding-top: 15px; display: flex; flex-direction: column; flex: 1; }
  .question { color: #fff; font-family: 'Inter', sans-serif; font-size: 24px; font-weight: 600; text-align: center; margin-bottom: 30px; line-height: 1.35; }
  .question .sincera { display: block; color: #ffe030; font-size: 16px; font-weight: 300; margin-top: 10px; }
  .options-list { display: flex; flex-direction: column; gap: 8px; }
  .option-btn {
    background: #bd30cd; border: none; border-radius: 14px;
    color: #fff; font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 400;
    padding: 18px 16px; display: flex; align-items: center;
    gap: 12px; cursor: pointer; transition: transform 0.15s, filter 0.15s;
    text-align: left; width: 100%;
  }
  .option-btn:active { transform: scale(0.97); filter: brightness(0.88); }
  .option-emoji { font-size: 22px; flex-shrink: 0; }
  .option-label { flex: 1; }
  .option-arrow { margin-left: auto; font-size: 18px; opacity: 0.85; flex-shrink: 0; }

  /* ── CARROSSEL ── */
  .carousel-wrap {
    position: relative;
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
  }
  .carousel-track {
    display: flex;
    transition: transform 0.35s ease;
    will-change: transform;
  }
  .carousel-slide {
    flex-shrink: 0;
    width: 78%;
    margin-right: 10px;
  }
  .carousel-img-box {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid #7722bb;
  }
  .carousel-img-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
  }
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }
  .dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #44246a;
    cursor: pointer;
    transition: background 0.2s;
  }
  .dot.active { background: #cc33ff; }

  /* ── CTA BUTTON ── */
  .cta-btn {
    width: 95%;
    display: block;
    margin: 0 auto;
    background: #bd30cd;
    border: none;
    border-radius: 14px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    padding: 20px;
    cursor: pointer;
    transition: filter 0.15s, transform 0.15s;
  }
  .cta-btn:active { filter: brightness(0.88); transform: scale(0.97); }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-18px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .alerta-atencao {
    animation: slideDown 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
  }