:root {
      --color-roxo-background: #0D0C15;
      --color-roxo-box: #161424;
      --color-roxo-claro: #161530;
      --color-roxo-escuro: #161424;
      --color-roxo-terminal: #0e0c1d;
      --color-roxo-editor: #111023;
      --color-white: #ffffff;
      --color-icones: #6325CE;
      --color-black: #000000;
      --color-text-placeholder: #686868;
      --color-cinza-icon:#7B7B7B;
      --color-botoes: #1FC47A;
      --color-green-black: #19945c;
      --color-equipe-caisTech:#25D366;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    }

    body {
      background: linear-gradient(35deg, rgba(22,21,48,1) 54%, rgba(25,23,60,1) 80%, rgba(27,25,70,1) 97%);
      color: black;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    /* NUVENS AO FUNDO */
    .cloud-container {
      position: fixed;
      inset: 0;
      overflow: hidden;
      z-index: -1;
      pointer-events: none;
    }

    .cloud {
      position: absolute;
      left: 110vw;
      filter: drop-shadow(0 0 16px rgba(255,255,255,0.18));
      animation:
        moveCloud var(--speed, 45s) linear infinite,
        cloudFloat var(--floatSpeed, 7s) ease-in-out infinite alternate;
      opacity: var(--startOpacity, 0.9);
      transform: scale(var(--startScale, 1));
    }

    @keyframes moveCloud {
      from { left: 110vw; }
      to   { left: -30vw; }
    }

    @keyframes cloudFloat {
      from {
        opacity: var(--startOpacity);
        transform: scale(var(--startScale));
      }
      to {
        opacity: var(--endOpacity);
        transform: scale(var(--endScale));
      }
    }

    /* PILL DE ATUALIZAÇÃO NO CANTO ESQUERDO */
    .status-pill {
      padding: 0.4rem 0.9rem;
      border-radius: 999px;
      border: 1px solid rgba(37, 211, 102, 0.5);
      background: rgba(37, 211, 102, 0.15);
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      text-transform: uppercase;
      font-size: 0.78rem;
      letter-spacing: 0.06em;
      color: var(--color-equipe-caisTech);
    }

    .status-pill--fixed {
      position: fixed;
      top: 0.8rem;
      left: 0.75rem;
      z-index: 10;
    }

    .status-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--color-equipe-caisTech);
      box-shadow: 0 0 10px rgba(37, 211, 102, 0.9);
      animation: pulse 1.2s infinite ease-in-out;
    }

    @keyframes pulse {
      0% { transform: scale(1); opacity: 0.9; }
      50% { transform: scale(1.25); opacity: 1; }
      100% { transform: scale(1); opacity: 0.9; }
    }

    /* CONTEÚDO PRINCIPAL */
    .container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: 480px;
      margin-top: 16px;
    }

    .card {
      margin-top: 16px;
      background: var(--color-white);
      border-radius: 24px;
      padding: 2.2rem 2.4rem;
      box-shadow: 0 0 32px rgba(49, 39, 113, 0.9);
      border: 1px solid #25213d;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .mascot {
      width: 190px;
      height: 190px;
      border-radius: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mascot img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    h1 {
      color: var(--color-black);
      font-size: 2.3rem;
      font-weight: 700;
      letter-spacing: 0.5px;
    }

    p {
      font-size: 0.98rem;
      color: var(--color-text-placeholder);
      max-width: 340px;
      line-height: 1.5;
    }

    hr {
        border: none;
        height: 2px;
        background: var(--color-icones);
        width: 100%;
        border-radius: 20px;
    }


    .social-text {
      font-size: 0.9rem;
      color: var(--color-cinza-icon);
    }

    .social-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      justify-content: center;
      margin-top: 0.3rem;
    }

    .social-btn {
      border-radius: 999px;
      padding: 0.45rem 0.9rem;
      font-size: 0.85rem;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      text-decoration: none;
      border: 1px solid #e5e5e5;
      background: #f5f5ff;
      color: #111827;
      transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.12s ease-out, border-color 0.12s ease-out;
    }
    .roxin{
        color: #6325CE;
    }

    .social-btn span.icon {
      font-size: 1rem;
    }

    .social-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 18px rgba(70, 13, 123, 0.404);
      border-color: #c7d2fe;
      background: #eef2ff;
    }

    .social-btn--instagram {
      background: #fdf2ff;
      border-color: #f9a8d4;
    }

    .social-btn--instagram:hover {
      background: #fce7f3;
    }

    .social-btn--linkedin {
      background: #e0f2fe;
      border-color: #7dd3fc;
    }

    .social-btn--linkedin:hover {
      background: #dbeafe;
    }

    .social-btn--discord {
      background: #e5e7ff;
      border-color: #a5b4fc;
    }

    .social-btn--discord:hover {
      background: #e0e7ff;
    }

    @media (max-width: 480px) {
      body {
        padding: 1.5rem;
      }

      .card {
        padding: 1.8rem 1.6rem;
      }

      .mascot {
        width: 150px;
        height: 150px;
      }

      h1 {
        font-size: 2rem;
      }
    }
    .footer {
        margin-top: 1.5rem;
        font-size: 0.85rem;
        color: white;
        text-align: center;
    }
