 /* ─────────────────────────────────────────────
       DEMO WRAPPER — remova no site de produção
    ───────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: 'Nunito', system-ui, sans-serif; background: #111; }

    .demo-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 48px;
      background: #111;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .demo-nav img { height: 36px; }
    .demo-nav-links { display: flex; gap: 32px; list-style: none; }
    .demo-nav-links a {
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.02em;
    }
    .demo-nav-links a.active { color: #E8601A; }

    .demo-footer {
      background: #111;
      padding: 40px 48px;
      display: flex;
      align-items: center;
      gap: 20px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .demo-footer img { height: 30px; }
    .demo-footer p {
      color: rgba(255,255,255,0.25);
      font-size: 0.8rem;
      font-family: 'Nunito', sans-serif;
    }


    /* ═══════════════════════════════════════════════════
       ✂ RECORTE AQUI — cole no index.html do site
         Sugestão: inserir após a section#courses
         e antes da section#espaco-cultural

       Dependência de fonte:
         Caso o site ainda não use Nunito, adicione
         no <head>:
         <link rel="preconnect" href="https://fonts.googleapis.com">
         <link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800;900&display=swap" rel="stylesheet">
    ═══════════════════════════════════════════════════ */

    .fc {
      /* tokens — ajuste aqui se precisar sincronizar com o design system do site */
      --fc-cream:  #EDE7D4;
      --fc-teal:   #22C4B5;
      --fc-purple: #7B35C8;
      --fc-yellow: #F5C432;
      --fc-pink:   #DC3D7E;
      --fc-orange: #E8601A;
      --fc-dark:   #1C1040;
      --fc-white:  #FFFFFF;

      font-family: 'Nunito', system-ui, sans-serif;
      position: relative;
      background: var(--fc-cream);
      padding: 88px 48px 80px;
      overflow: hidden;
    }

    /* ── Estrelas decorativas ── */
    .fc-stars {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }
    .fc-star {
      position: absolute;
      color: var(--fc-yellow);
      font-style: normal;
      line-height: 1;
      opacity: 0.65;
      animation: fc-float linear infinite;
    }
    @keyframes fc-float {
      0%   { transform: translateY(0) rotate(0deg); }
      50%  { transform: translateY(-14px) rotate(12deg); }
      100% { transform: translateY(0) rotate(0deg); }
    }
    @media (prefers-reduced-motion: reduce) {
      .fc-star { animation: none; }
    }

    /* ── Cabeçalho ── */
    .fc-header {
      flex-direction: column;
      text-align: center;
      margin-bottom: 56px;
      position: relative;
      background-color: var(--fc-cream);
      z-index: 1;
    }
    .fc-eyebrow {
      display: block;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--fc-dark);
      opacity: 0.5;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      margin-bottom: 10px;
    }
    .fc-title {
      font-size: clamp(4rem, 9vw, 7.5rem);
      font-weight: 900;
      line-height: 0.9;
      letter-spacing: -0.02em;
      margin-bottom: 22px;
    }
    .fc-title-teal   { display: block; color: var(--fc-teal); }
    .fc-title-purple { display: block; color: var(--fc-purple); }

    .fc-pill-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .fc-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 9px 22px;
      border-radius: 100px;
      font-weight: 700;
      font-size: 0.88rem;
    }
    .fc-pill--duration {
      background: var(--fc-yellow);
      color: var(--fc-dark);
    }
    .fc-pill--open {
      background: var(--fc-orange);
      color: white;
      animation: fc-pulse 2.4s ease-in-out infinite;
    }
    @keyframes fc-pulse {
      0%, 100% { box-shadow: 0 0 0 0   rgba(232,96,26,0.4); }
      50%       { box-shadow: 0 0 0 10px rgba(232,96,26,0);  }
    }
    @media (prefers-reduced-motion: reduce) {
      .fc-pill--open { animation: none; }
    }

    /* ── Grade de turmas ── */
    .fc-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      max-width: 1100px;
      margin: 0 auto 44px;
      position: relative;
      z-index: 1;
    }
    .fc-tier {
      border-radius: 20px;
      overflow: hidden;
      background: var(--fc-white);
      box-shadow: 0 3px 0 rgba(0,0,0,0.1);
      transition: transform 0.25s ease;
    }
    .fc-tier:hover { transform: translateY(-8px); }

    /* cabeçalho de cada turma */
    .fc-tier-head {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 22px 20px 18px;
      position: relative;
    }
    .fc-tier--kids    .fc-tier-head { background: var(--fc-yellow); }
    .fc-tier--teens   .fc-tier-head { background: var(--fc-teal);   }
    .fc-tier--masters .fc-tier-head { background: var(--fc-pink);   }
    .fc-tier--gamedev .fc-tier-head { background: var(--fc-purple);   }

    .fc-tier-name {
      font-size: 2.1rem;
      font-weight: 900;
      letter-spacing: 0.03em;
      line-height: 1;
    }
    .fc-tier--kids    .fc-tier-name { color: var(--fc-dark); }
    .fc-tier--teens   .fc-tier-name { color: white; }
    .fc-tier--masters .fc-tier-name { color: white; }
    .fc-tier--gamedev .fc-tier-name { color: white; }

    .fc-tier-age {
      display: block;
      font-size: 0.8rem;
      font-weight: 700;
      margin-top: 3px;
      opacity: 0.6;
    }
    .fc-tier--kids    .fc-tier-age { color: var(--fc-dark); }
    .fc-tier--teens   .fc-tier-age { color: white; }
    .fc-tier--masters .fc-tier-age { color: white; }
    .fc-tier--gamedev .fc-tier-age { color: white; }

    .fc-time-chip {
      position: absolute;
      top: 14px;
      right: 14px;
      background: rgba(255,255,255,0.28);
      border-radius: 100px;
      padding: 4px 12px;
      font-size: 0.74rem;
      font-weight: 800;
      white-space: nowrap;
    }
    .fc-tier--kids    .fc-time-chip { color: var(--fc-dark); }
    .fc-tier--teens   .fc-time-chip { color: white; }
    .fc-tier--masters .fc-time-chip { color: white; }
    .fc-tier--gamedev .fc-time-chip { color: white; }
    
    .fc-course-status {
      position: relative;
      top: 14px;
      left: 40%;
      /*background: var(--fc-pink);*/
      border-radius: 100px;
      padding: 4px 12px;
      font-size: 0.74rem;
      font-weight: 800;
      white-space: nowrap;
    }

    .status-finished{
      background: var(--fc-dark);
      color: white;
    }
    .status-onGoing{
      background: #c2c2c2;
      color: var(--fc-dark);
    }
    /*.fc-course-item .fc-course-status { color: white; }*/


    /* lista de cursos */
    .fc-courses { list-style: none; padding: 6px 0 12px; }
    .fc-course-item {
      padding: 10px 20px;
      border-bottom: 1px solid rgba(28,16,64,0.05);
      transition: background 0.12s;
      cursor: default;
    }
    .fc-course-item:last-child  { border-bottom: none; }
    .fc-course-item:hover       { background: rgba(28,16,64,0.025); }

    .course-finished{
      text-decoration: line-through;
    }

    .fc-course-name {
      display: block;
      font-size: 0.88rem;
      font-weight: 800;
    }
    .fc-tier--kids    .fc-course-name { color: var(--fc-yellow); }
    .fc-tier--teens   .fc-course-name { color: var(--fc-teal); }
    .fc-tier--masters .fc-course-name { color: var(--fc-pink); }
    .fc-tier--gamedev .fc-course-name { color: var(--fc-purple); }

    .fc-course-desc {
      display: block;
      font-size: 0.76rem;
      color: var(--fc-dark);
      opacity: 0.48;
      margin-top: 1px;
    }

    /* ── Preços ── */
    .fc-pricing {
      position: relative;
      z-index: 1;
      max-width: 1100px;
      margin: 0 auto 8px;
      background: var(--fc-dark);
      border-radius: 24px;
      padding: 44px 48px;
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      overflow: hidden;
    }
    /* orbs decorativos no painel de preço */
    .fc-pricing::before {
      content: '';
      position: absolute;
      width: 260px; height: 260px;
      background: var(--fc-purple);
      border-radius: 50%;
      opacity: 0.15;
      top: -80px; right: -60px;
      pointer-events: none;
    }
    .fc-pricing::after {
      content: '';
      position: absolute;
      width: 160px; height: 160px;
      background: var(--fc-teal);
      border-radius: 50%;
      opacity: 0.1;
      bottom: -48px; left: 24px;
      pointer-events: none;
    }

    .fc-price-item {
      text-align: center;
      padding: 0 32px;
      position: relative;
      z-index: 1;
    }
    .fc-price-item + .fc-price-item {
      border-left: 1px solid rgba(255,255,255,0.07);
    }

    .fc-price-rs {
      font-size: 1rem;
      font-weight: 700;
      color: rgba(255,255,255,0.35);
      vertical-align: top;
      margin-top: 10px;
      margin-right: 3px;
      display: inline-block;
    }
    .fc-price-val {
      font-size: 3.2rem;
      font-weight: 900;
      color: var(--fc-yellow);
      line-height: 1;
      display: inline-block;
    }
    .fc-price-item:first-child .fc-price-val { font-size: 4.2rem; }

    .fc-price-per {
      display: inline-block;
      margin-top: 10px;
      background: var(--fc-orange);
      color: white;
      font-size: 0.7rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      padding: 3px 11px;
      border-radius: 100px;
    }
    .fc-price-label {
      display: block;
      font-size: 0.8rem;
      font-weight: 800;
      color: var(--fc-orange);
      margin-top: 10px;
    }

    /* ── CTA ── */
    .fc-cta {
      text-align: center;
      position: relative;
      z-index: 1;
    }
    .fc-btn {
      display: inline-block;
      background: var(--fc-orange);
      color: white;
      font-family: 'Nunito', system-ui, sans-serif;
      font-size: 1.05rem;
      font-weight: 800;
      text-decoration: none;
      margin-top: 18px;
      padding: 18px 60px;
      border-radius: 100px;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 20px rgba(232,96,26,0.3);
    }
    .fc-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 32px rgba(232,96,26,0.45);
    }
    .fc-btn:focus-visible {
      outline: 3px solid var(--fc-yellow);
      outline-offset: 4px;
    }

    /* ── Responsivo ── */
    @media (max-width: 960px) {
      .fc { padding: 64px 24px 60px; }

      .fc-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }
      .fc-pricing {
        grid-template-columns: 1fr;
        padding: 36px 28px;
        gap: 0;
      }
      .fc-price-item {
        padding: 24px 0;
      }
      .fc-price-item + .fc-price-item {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.07);
      }
      .fc-price-item:first-child { padding-top: 0; }
    }

    /* ═══════════════════════════════════════════════
       ✂ FIM DO CÓDIGO DA SEÇÃO FÉRIAS CRIATIVAS
    ═══════════════════════════════════════════════ */
