    /* ============================================
       RESET E BASE
       ============================================ */
    *, *::before, *::after { box-sizing: border-box; }
    html, body { margin: 0; padding: 0; }
    body {
      min-height: 100vh;
      font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
      color: #1e3a5f;
      background:
        radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #cfe8f5 0%, #7fb8d4 45%, #3f8fb8 100%);
      background-attachment: fixed;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 32px 20px;
      position: relative;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* Brilhos decorativos flutuantes (estilo Santorini) */
    body::before, body::after {
      content: '';
      position: fixed;
      border-radius: 50%;
      filter: blur(60px);
      pointer-events: none;
      z-index: 0;
    }
    body::before {
      width: 320px; height: 320px;
      background: rgba(255, 255, 255, 0.35);
      top: -100px; left: -100px;
      animation: flutuar 12s ease-in-out infinite;
    }
    body::after {
      width: 380px; height: 380px;
      background: rgba(255, 255, 255, 0.2);
      bottom: -120px; right: -120px;
      animation: flutuar 14s ease-in-out infinite reverse;
    }
    @keyframes flutuar {
      0%, 100% { transform: translate(0, 0); }
      50% { transform: translate(30px, -30px); }
    }

    /* ============================================
       TOPO / MARCA
       ============================================ */
    .topo {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 720px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
      animation: fadeInDown 0.6s ease-out;
    }
    .marca {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #1e3a5f;
      text-decoration: none;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 1.1rem;
    }
    .marca .logo-icone {
      width: 36px; height: 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #1e3a5f 0%, #3f8fb8 100%);
      color: white;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
    }
    .topo-nav a {
      color: #1e3a5f;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      padding: 8px 14px;
      border-radius: 8px;
      transition: background 0.2s ease;
    }
    .topo-nav a:hover {
      background: rgba(255, 255, 255, 0.4);
    }

    /* ============================================
       CARD PRINCIPAL
       ============================================ */
    .em-breve-wrapper {
      max-width: 720px;
      width: 100%;
      position: relative;
      z-index: 1;
      animation: fadeInUp 0.8s ease-out 0.1s both;
    }
    .em-breve-card {
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border-radius: 28px;
      padding: 48px 44px;
      box-shadow:
        0 24px 60px rgba(30, 58, 95, 0.25),
        0 4px 12px rgba(30, 58, 95, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
      text-align: center;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.5);
    }
    /* Linha brilhante no topo do card */
    .em-breve-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, #cfe8f5, #3f8fb8, #1e3a5f, #3f8fb8, #cfe8f5);
      background-size: 200% 100%;
      animation: shimmer 4s linear infinite;
    }
    @keyframes shimmer {
      0%   { background-position: 0% 0; }
      100% { background-position: 200% 0; }
    }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ============================================
       ÍCONE PRINCIPAL ANIMADO
       ============================================ */
    .icone-principal {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 110px;
      height: 110px;
      border-radius: 50%;
      background: linear-gradient(135deg, #3f8fb8 0%, #1e3a5f 100%);
      color: white;
      font-size: 52px;
      margin-bottom: 24px;
      box-shadow: 0 12px 30px rgba(63, 143, 184, 0.45);
      position: relative;
    }
    .icone-principal::before {
      content: '';
      position: absolute;
      inset: -6px;
      border-radius: 50%;
      border: 2px solid rgba(63, 143, 184, 0.4);
      animation: pulse-anel 2.4s ease-out infinite;
    }
    @keyframes pulse-anel {
      0%   { transform: scale(1);   opacity: 0.8; }
      100% { transform: scale(1.4); opacity: 0; }
    }
    .icone-principal i {
      animation: balanco 3s ease-in-out infinite;
    }
    @keyframes balanco {
      0%, 100% { transform: rotate(0); }
      25%      { transform: rotate(15deg); }
      75%      { transform: rotate(-15deg); }
    }

    /* ============================================
       TIPOGRAFIA
       ============================================ */
    .badge {
      display: inline-block;
      background: rgba(63, 143, 184, 0.12);
      color: #1e3a5f;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 999px;
      margin-bottom: 16px;
    }
    .em-breve-card h1 {
      font-family: 'Montserrat', sans-serif;
      font-size: 2.25rem;
      font-weight: 800;
      color: #1e3a5f;
      margin: 0 0 8px;
      line-height: 1.15;
      letter-spacing: -0.02em;
    }
    .em-breve-card h1 .destaque-azul {
      background: linear-gradient(135deg, #3f8fb8 0%, #1e3a5f 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .nome-curso-destaque {
      display: inline-block;
      color: #1e3a5f;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 1.15rem;
      background: rgba(207, 232, 245, 0.6);
      padding: 6px 18px;
      border-radius: 999px;
      margin-top: 4px;
      border: 1px dashed rgba(63, 143, 184, 0.5);
    }
    .subtitulo {
      color: #4b5563;
      font-size: 1.05rem;
      line-height: 1.7;
      margin: 24px 0 8px;
      max-width: 540px;
      margin-left: auto;
      margin-right: auto;
    }
    .subtitulo strong {
      color: #1e3a5f;
      font-weight: 700;
    }

    /* ============================================
       BARRA DE PROGRESSO
       ============================================ */
    .progresso-container {
      margin: 32px auto 8px;
      max-width: 480px;
      text-align: left;
    }
    .progresso-label {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.85rem;
      color: #1e3a5f;
      margin-bottom: 8px;
      font-weight: 600;
      font-family: 'Montserrat', sans-serif;
    }
    .progresso-label i {
      color: #3f8fb8;
      margin-right: 6px;
    }
    .progresso-barra {
      height: 10px;
      background: #e5e7eb;
      border-radius: 999px;
      overflow: hidden;
      position: relative;
    }
    .progresso-preenchimento {
      height: 100%;
      background: linear-gradient(90deg, #7fb8d4 0%, #3f8fb8 50%, #1e3a5f 100%);
      border-radius: 999px;
      width: 75%;
      position: relative;
      animation: preencher 1.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .progresso-preenchimento::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
      animation: brilho-progresso 2.5s linear infinite;
    }
    @keyframes preencher {
      from { width: 0; }
      to   { width: 65%; }
    }
    @keyframes brilho-progresso {
      0%   { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }

    /* ============================================
       SEÇÃO "ENQUANTO ESPERA"
       ============================================ */
    .enquanto-espera {
      background: linear-gradient(135deg, rgba(207, 232, 245, 0.4) 0%, rgba(255, 255, 255, 0.5) 100%);
      border: 1px solid rgba(63, 143, 184, 0.15);
      border-radius: 18px;
      padding: 24px 28px;
      margin: 32px 0 8px;
      text-align: left;
    }
    .enquanto-espera h2,
    .redes-sociais h2 {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.1rem;
      color: #1e3a5f;
      margin: 0 0 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .enquanto-espera h2 i,
    .redes-sociais h2 i {
      color: #3f8fb8;
      font-size: 1.1rem;
    }
    .enquanto-espera ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .enquanto-espera li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: #4b5563;
      font-size: 0.95rem;
      line-height: 1.5;
    }
    .enquanto-espera li > i {
      color: #3f8fb8;
      width: 20px;
      text-align: center;
      margin-top: 3px;
      flex-shrink: 0;
    }
    .enquanto-espera a {
      color: #1e3a5f;
      font-weight: 700;
      text-decoration: none;
      border-bottom: 2px solid rgba(63, 143, 184, 0.4);
      padding-bottom: 1px;
      transition: border-color 0.2s ease, color 0.2s ease;
    }
    .enquanto-espera a:hover {
      color: #3f8fb8;
      border-color: #3f8fb8;
    }

    /* ============================================
       REDES SOCIAIS
       ============================================ */
    .redes-sociais {
      margin: 28px 0 8px;
    }
    .redes-grid {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 12px;
    }
    .rede-item {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 12px 16px;
      background: rgba(255, 255, 255, 0.7);
      border: 1px solid rgba(63, 143, 184, 0.2);
      border-radius: 12px;
      color: #1e3a5f;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.92rem;
      font-family: 'Montserrat', sans-serif;
      transition: all 0.25s ease;
    }
    .rede-item i {
      font-size: 1.2rem;
      color: #3f8fb8;
      transition: color 0.25s ease;
    }
    .rede-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(30, 58, 95, 0.18);
    }
    .rede-item.linkedin:hover    { background: #0077b5; color: white; border-color: #0077b5; }
    .rede-item.instagram:hover   { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; border-color: transparent; }
    .rede-item.facebook:hover   { background: #1877f2; color: white; border-color: #1877f2; }
    .rede-item.email:hover      { background: #1e3a5f; color: white; border-color: #1e3a5f; }
    .rede-item:hover i          { color: white; }

    /* ============================================
       BOTÕES / AÇÕES
       ============================================ */
    .acoes {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 32px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 12px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 0.98rem;
      text-decoration: none;
      transition: all 0.25s ease;
      cursor: pointer;
      border: 2px solid transparent;
    }
    .btn-primary {
      background: linear-gradient(135deg, #3f8fb8 0%, #1e3a5f 100%);
      color: white;
      box-shadow: 0 6px 16px rgba(63, 143, 184, 0.35);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(63, 143, 184, 0.5);
    }
    .btn-outline {
      background: transparent;
      color: #1e3a5f;
      border-color: #1e3a5f;
    }
    .btn-outline:hover {
      background: #1e3a5f;
      color: white;
      transform: translateY(-2px);
    }

    /* ============================================
       AVISO DE GRATUIDADE
       ============================================ */
    .aviso-gratuito {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(34, 197, 94, 0.1);
      color: #15803d;
      font-size: 0.85rem;
      font-weight: 600;
      padding: 8px 16px;
      border-radius: 999px;
      margin-top: 24px;
      border: 1px solid rgba(34, 197, 94, 0.25);
    }
    .aviso-gratuito i {
      color: #22c55e;
    }

    /* ============================================
       RESPONSIVIDADE
       ============================================ */
    @media (max-width: 640px) {
      body { padding: 20px 16px; }
      .topo { margin-bottom: 12px; }
      .em-breve-card { padding: 36px 24px; border-radius: 22px; }
      .em-breve-card h1 { font-size: 1.75rem; }
      .icone-principal { width: 90px; height: 90px; font-size: 42px; }
      .redes-grid { grid-template-columns: 1fr 1fr; }
      .enquanto-espera { padding: 20px; }
      .acoes { flex-direction: column; }
      .btn { width: 100%; justify-content: center; }
    }
    @media (max-width: 380px) {
      .redes-grid { grid-template-columns: 1fr; }
    }

    /* Acessibilidade: reduzir animações */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

    /* Foco visível para navegação por teclado */
    a:focus-visible, .btn:focus-visible {
      outline: 3px solid rgba(63, 143, 184, 0.6);
      outline-offset: 3px;
      border-radius: 12px;
    }
