@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 ----- */
    .privacy-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 ----- */
    .privacy-header {
      text-align: center;
      margin-bottom: 36px;
      padding-bottom: 28px;
      border-bottom: 2px solid rgba(244, 59, 107, 0.10);
    }

    .privacy-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;
    }

    .privacy-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;
    }

    .privacy-header h1 {
      font-size: 2.2rem;
      font-weight: 900;
      color: #072033;
      margin-top: 8px;
    }

    .privacy-header .last-update {
      color: #4a6a84;
      font-size: 0.9rem;
      margin-top: 4px;
    }

    .privacy-header .last-update i {
      color: #f43b6b;
      margin-right: 6px;
    }

    /* ----- CONTEÚDO ----- */
    .privacy-content h2 {
      font-size: 1.4rem;
      font-weight: 800;
      color: #072033;
      margin-top: 32px;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .privacy-content h2:first-of-type {
      margin-top: 0;
    }

    .privacy-content h2 i {
      color: #f43b6b;
      font-size: 1.3rem;
      width: 30px;
      text-align: center;
    }

    .privacy-content p {
      color: #2b4d68;
      margin-bottom: 16px;
      padding-left: 42px;
    }

    .privacy-content ul {
      list-style: none;
      padding-left: 42px;
      margin-bottom: 20px;
    }

    .privacy-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);
    }

    .privacy-content ul li:last-child {
      border-bottom: none;
    }

    .privacy-content ul li i {
      color: #25d366;
      font-size: 1rem;
      margin-top: 4px;
      min-width: 18px;
    }

    .privacy-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;
    }

    .privacy-content .highlight-box p {
      padding-left: 0;
      margin-bottom: 0;
    }

    .privacy-content .highlight-box i {
      color: #f43b6b;
      margin-right: 8px;
    }

    /* ----- RODAPÉ ----- */
    .privacy-footer {
      margin-top: 40px;
      padding-top: 28px;
      border-top: 2px solid rgba(244, 59, 107, 0.10);
      text-align: center;
    }

    .privacy-footer .footer-links {
      display: flex;
      justify-content: center;
      gap: 32px;
      font-size: 0.9rem;
    }

    .privacy-footer .footer-links a {
      color: #4a6a84;
      text-decoration: none;
      transition: 0.2s;
      font-weight: 500;
    }

    .privacy-footer .footer-links a:hover {
      color: #f43b6b;
    }

    .privacy-footer .copyright {
      color: #8aa4bc;
      font-size: 0.8rem;
      margin-top: 16px;
    }

    /* ----- RESPONSIVO ----- */
    @media (max-width: 768px) {
      .privacy-card {
        padding: 32px 24px 28px;
        border-radius: 32px;
      }

      .privacy-header h1 {
        font-size: 1.8rem;
      }

      .privacy-content h2 {
        font-size: 1.2rem;
      }

      .privacy-content p,
      .privacy-content ul {
        padding-left: 0;
      }

      .privacy-content .highlight-box {
        margin-left: 0;
      }

      .privacy-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) {
      .privacy-card {
        padding: 24px 16px 20px;
        border-radius: 28px;
      }

      .privacy-header .logo {
        font-size: 1.6rem;
      }

      .privacy-header h1 {
        font-size: 1.5rem;
      }

      .privacy-content h2 {
        font-size: 1.1rem;
      }

      .privacy-content ul li {
        font-size: 0.95rem;
        padding: 6px 0;
      }

      .privacy-content .highlight-box {
        padding: 16px;
      }

      .btn-float-home {
        bottom: 16px;
        left: 16px;
        width: 44px;
        height: 44px;
        font-size: 1rem;
      }
    }