@charset "ISO-8859-1";
 /* ----- RESET & BASE ----- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    }

    body {
      background: linear-gradient(145deg, #f9f3ff 0%, #f0f7ff 100%);
      color: #0a1e2f;
      line-height: 1.6;
      min-height: 100vh;
      padding: 20px;
    }

    .container {
      max-width: 900px;
      margin: 0 auto;
    }

    /* ----- BOTÃO FLUTUANTE PARA VOLTAR ----- */
    .btn-float-home {
      position: fixed;
      bottom: 30px;
      left: 30px;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: linear-gradient(145deg, #f43b6b, #ff6b8a);
      color: white;
      border: none;
      box-shadow: 0 8px 28px rgba(244, 59, 107, 0.30);
      cursor: pointer;
      font-size: 1.4rem;
      transition: 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      text-decoration: none;
    }

    .btn-float-home:hover {
      transform: scale(1.08) translateY(-3px);
      box-shadow: 0 12px 40px rgba(244, 59, 107, 0.45);
    }

    .btn-float-home:active {
      transform: scale(0.95);
    }

    .btn-float-home i {
      color: white;
    }

    /* ----- CARD PRINCIPAL ----- */
    .terms-card {
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 48px;
      padding: 48px 44px 44px;
      box-shadow: 0 30px 80px rgba(0, 20, 40, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.5);
      margin-top: 20px;
      animation: fadeInUp 0.5s ease;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ----- HEADER ----- */
    .terms-header {
      text-align: center;
      margin-bottom: 36px;
      padding-bottom: 28px;
      border-bottom: 2px solid rgba(244, 59, 107, 0.10);
    }

    .terms-header .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 2rem;
      font-weight: 800;
      background: linear-gradient(135deg, #f43b6b, #ff6b8a);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-decoration: none;
      margin-bottom: 8px;
    }

    .terms-header .logo i {
      background: linear-gradient(145deg, #f43b6b, #ff9a56);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-size: 2.2rem;
    }

    .terms-header h1 {
      font-size: 2.2rem;
      font-weight: 900;
      color: #072033;
      margin-top: 8px;
    }

    .terms-header .last-update {
      color: #4a6a84;
      font-size: 0.9rem;
      margin-top: 4px;
    }

    .terms-header .last-update i {
      color: #f43b6b;
      margin-right: 6px;
    }

    .terms-header .accept-badge {
      display: inline-block;
      margin-top: 12px;
      background: linear-gradient(135deg, #25d366, #128C7E);
      color: white;
      padding: 6px 24px;
      border-radius: 60px;
      font-size: 0.8rem;
      font-weight: 700;
      box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
    }

    .terms-header .accept-badge i {
      margin-right: 6px;
    }

    /* ----- CONTEÚDO ----- */
    .terms-content h2 {
      font-size: 1.4rem;
      font-weight: 800;
      color: #072033;
      margin-top: 32px;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .terms-content h2:first-of-type {
      margin-top: 0;
    }

    .terms-content h2 i {
      color: #f43b6b;
      font-size: 1.3rem;
      width: 30px;
      text-align: center;
    }

    .terms-content p {
      color: #2b4d68;
      margin-bottom: 16px;
      padding-left: 42px;
    }

    .terms-content ul {
      list-style: none;
      padding-left: 42px;
      margin-bottom: 20px;
    }

    .terms-content ul li {
      color: #2b4d68;
      padding: 8px 0;
      display: flex;
      align-items: flex-start;
      gap: 12px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }

    .terms-content ul li:last-child {
      border-bottom: none;
    }

    .terms-content ul li i {
      color: #f43b6b;
      font-size: 1rem;
      margin-top: 4px;
      min-width: 18px;
    }

    .terms-content .highlight-box {
      background: rgba(244, 59, 107, 0.04);
      border-left: 4px solid #f43b6b;
      border-radius: 16px;
      padding: 20px 24px;
      margin: 24px 0 24px 42px;
    }

    .terms-content .highlight-box p {
      padding-left: 0;
      margin-bottom: 0;
    }

    .terms-content .highlight-box i {
      color: #f43b6b;
      margin-right: 8px;
    }

    .terms-content .highlight-box.green {
      border-left-color: #25d366;
      background: rgba(37, 211, 102, 0.04);
    }

    .terms-content .highlight-box.green i {
      color: #25d366;
    }

    .terms-content .highlight-box.orange {
      border-left-color: #ff9a56;
      background: rgba(255, 154, 86, 0.04);
    }

    .terms-content .highlight-box.orange i {
      color: #ff9a56;
    }

    /* ----- BOTÃO DE VOLTAR AO TOPO (opcional) ----- */
    .btn-back-top {
      display: inline-block;
      padding: 12px 32px;
      border: 2px solid #f43b6b;
      border-radius: 60px;
      background: rgba(255, 255, 255, 0.5);
      color: #f43b6b;
      font-weight: 700;
      font-size: 0.95rem;
      cursor: pointer;
      transition: 0.25s;
      text-decoration: none;
    }

    .btn-back-top:hover {
      background: linear-gradient(145deg, #f43b6b, #ff6b8a);
      color: white;
      box-shadow: 0 8px 24px rgba(244, 59, 107, 0.25);
      transform: translateY(-2px);
    }

    .btn-back-top i {
      margin-right: 8px;
    }

    /* ----- RODAPÉ ----- */
    .terms-footer {
      margin-top: 40px;
      padding-top: 28px;
      border-top: 2px solid rgba(244, 59, 107, 0.10);
      text-align: center;
    }

    .terms-footer .footer-links {
      display: flex;
      justify-content: center;
      gap: 32px;
      font-size: 0.9rem;
      flex-wrap: wrap;
    }

    .terms-footer .footer-links a {
      color: #4a6a84;
      text-decoration: none;
      transition: 0.2s;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .terms-footer .footer-links a:hover {
      color: #f43b6b;
    }

    .terms-footer .footer-links a i {
      font-size: 0.8rem;
    }

    .terms-footer .copyright {
      color: #8aa4bc;
      font-size: 0.8rem;
      margin-top: 16px;
    }

    /* ----- RESPONSIVO ----- */
    @media (max-width: 768px) {
      .terms-card {
        padding: 32px 24px 28px;
        border-radius: 32px;
      }

      .terms-header h1 {
        font-size: 1.8rem;
      }

      .terms-content h2 {
        font-size: 1.2rem;
      }

      .terms-content p,
      .terms-content ul {
        padding-left: 0;
      }

      .terms-content .highlight-box {
        margin-left: 0;
      }

      .terms-footer .footer-links {
        flex-direction: column;
        gap: 12px;
      }

      .btn-float-home {
        bottom: 20px;
        left: 20px;
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
      }
    }

    @media (max-width: 480px) {
      .terms-card {
        padding: 24px 16px 20px;
        border-radius: 28px;
      }

      .terms-header .logo {
        font-size: 1.6rem;
      }

      .terms-header h1 {
        font-size: 1.5rem;
      }

      .terms-content h2 {
        font-size: 1.1rem;
      }

      .terms-content ul li {
        font-size: 0.95rem;
        padding: 6px 0;
      }

      .terms-content .highlight-box {
        padding: 16px;
      }

      .btn-float-home {
        bottom: 16px;
        left: 16px;
        width: 44px;
        height: 44px;
        font-size: 1rem;
      }

      .btn-back-top {
        padding: 10px 24px;
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
      }
    }