* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Alexandria", sans-serif;
      color: #222;
      background-color: #ffffff;
      overflow-x: hidden;
      scroll-behavior: smooth;
      font-size: 14px;
      line-height: 1.4;
    }

    /* ===== HEADER ===== */
    .header {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 15px 20px;
      background: linear-gradient(135deg, #040041 0%, #1F1792 100%);
      position: relative;
      z-index: 10;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      gap: 15px;
    }

    #logo {
      width: 120px;
      height: auto;
      max-width: 170px;
      transition: transform 0.3s ease;
    }

    #logo:hover {
      transform: scale(1.05);
    }

    nav ul {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      width: 100%;
    }

    nav ul li a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      font-size: 14px;
      position: relative;
      transition: color 0.3s ease;
      padding: 8px 0;
      white-space: nowrap;
    }

    nav ul li a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -5px;
      width: 0%;
      height: 2px;
      background-color: #4dabf7;
      transition: width 0.3s ease;
    }

    nav ul li a:hover::after {
      width: 100%;
    }

    nav ul li a.active {
      color: #4dabf7;
    }

    nav ul li a.active::after {
      width: 100%;
      background-color: #4dabf7;
    }

    /* ===== HERO POLÍTICA ===== */
    .politica-hero {
      background: linear-gradient(135deg, #f8fafc 0%, #e6f2ff 100%);
      padding: 60px 20px 30px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .politica-hero h1 {
      font-size: 1.8rem;
      color: #0066cc;
      margin-bottom: 15px;
      font-weight: 700;
      position: relative;
      display: inline-block;
    }

    .politica-hero h1::after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: linear-gradient(to right, #0066cc, #004999);
      border-radius: 2px;
    }

    .politica-hero p {
      font-size: 1rem;
      color: #555;
      max-width: 800px;
      margin: 20px auto 0;
      line-height: 1.6;
    }

    /* ===== CONTEÚDO POLÍTICA ===== */
    .politica-content {
      width: 100%;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .politica-section {
      margin-bottom: 40px;
      background: white;
      padding: 25px 20px;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(0, 102, 204, 0.1);
      transition: transform 0.3s ease;
    }

    .politica-section:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 102, 204, 0.1);
    }

    .politica-section h2 {
      font-size: 1.6rem;
      color: #0066cc;
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 2px solid #e6f2ff;
      font-weight: 600;
    }

    .politica-section h3 {
      font-size: 1.3rem;
      color: #004999;
      margin: 25px 0 12px;
      font-weight: 600;
    }

    .politica-section p {
      font-size: 1rem;
      line-height: 1.6;
      color: #444;
      margin-bottom: 15px;
    }

    .politica-section ul {
      margin-left: 20px;
      margin-bottom: 20px;
    }

    .politica-section li {
      font-size: 1rem;
      line-height: 1.6;
      color: #444;
      margin-bottom: 8px;
      position: relative;
      padding-left: 8px;
    }

    .politica-section li::before {
      content: "•";
      color: #0066cc;
      font-weight: bold;
      position: absolute;
      left: -12px;
    }

    .info-box {
      background: linear-gradient(135deg, #f0f8ff, #e6f2ff);
      border-left: 4px solid #0066cc;
      padding: 20px;
      margin: 20px 0;
      border-radius: 8px;
    }

    .info-box p {
      margin: 0;
      color: #004999;
      font-weight: 500;
      font-size: 0.95rem;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
      margin-top: 20px;
      padding: 20px;
      background: #f8fafc;
      border-radius: 10px;
    }

    .contact-info i {
      color: #0066cc;
      font-size: 1.3rem;
      margin-top: 0;
    }

    /* ===== RODAPÉ ===== */
    .rodape {
      background: #1a1a2e;
      color: white;
      padding: 40px 20px 20px;
    }

    .rodape-top {
      width: 100%;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 30px;
      padding-bottom: 30px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .rodape-logo {
      width: 100%;
      text-align: center;
    }

    .logo-footer {
      width: 150px;
      height: auto;
      max-width: 200px;
      margin-bottom: 20px;
    }

    .rodape-logo p {
      font-size: 1rem;
      line-height: 1.6;
      opacity: 0.8;
      max-width: 400px;
      margin: 0 auto;
      text-align: center;
    }

    .rodape-col {
      width: 100%;
      text-align: center;
      margin-bottom: 20px;
    }

    .rodape-col h3 {
      color: #4dabf7;
      margin-bottom: 15px;
      font-size: 1.2rem;
      font-weight: 600;
    }

    .rodape-col a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      margin: 10px 0;
      display: block;
      transition: all 0.3s ease;
      font-size: 1rem;
    }

    .rodape-col a:hover {
      color: #4dabf7;
      transform: translateX(5px);
    }

    .rodape-col p {
      color: rgba(255, 255, 255, 0.8);
      margin: 10px 0;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .rodape-col i {
      width: 18px;
    }

    .rodape-bottom {
      width: 100%;
      margin: 25px auto 0;
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .rodape-bottom p {
      margin: 8px 0;
      opacity: 0.7;
      font-size: 0.9rem;
    }

    .rodape-bottom a {
      color: #4dabf7;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .rodape-bottom a:hover {
      text-decoration: underline;
    }

    .icons {
      margin-top: 20px;
      display: flex;
      justify-content: center;
      gap: 15px;
    }

    .icons img {
      width: 28px;
      height: 28px;
      max-width: 32px;
      max-height: 32px;
      filter: brightness(0) invert(1);
      transition: all 0.3s ease;
      cursor: pointer;
      object-fit: contain;
    }

    .icons img:hover {
      transform: translateY(-3px);
      filter: brightness(0) invert(0.7);
    }

    /* ===== BOTÃO VOLTAR AO TOPO ===== */
    .back-to-top {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #0066cc, #004999);
      border: none;
      border-radius: 50%;
      color: white;
      font-size: 1.2rem;
      cursor: pointer;
      z-index: 1000;
      box-shadow: 0 3px 15px rgba(0, 102, 204, 0.4);
      transition: all 0.3s ease;
      display: none;
      align-items: center;
      justify-content: center;
    }

    .back-to-top:hover {
      background: linear-gradient(135deg, #004999, #003366);
      transform: translateY(-3px);
      box-shadow: 0 5px 20px rgba(0, 102, 204, 0.6);
    }

    /* ===== ANIMAÇÕES ===== */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-in {
      animation: fadeInUp 0.6s ease-out forwards;
    }

    /* ===== SCROLLBAR PERSONALIZADA ===== */
    ::-webkit-scrollbar {
      width: 8px;
    }

    ::-webkit-scrollbar-track {
      background: #f1f1f1;
    }

    ::-webkit-scrollbar-thumb {
      background: linear-gradient(135deg, #0066cc, #004999);
      border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(135deg, #004999, #003366);
    }

    /* ===== MEDIA QUERIES ===== */

    /* Tablet (481px a 768px) */
    @media (min-width: 481px) {
      body {
        font-size: 15px;
      }
      
      .header {
        flex-direction: row;
        justify-content: space-between;
        padding: 20px 30px;
      }
      
      #logo {
        width: 140px;
      }
      
      nav ul {
        gap: 20px;
      }
      
      nav ul li a {
        font-size: 15px;
      }
      
      .politica-hero {
        padding: 80px 30px 40px;
      }
      
      .politica-hero h1 {
        font-size: 2.2rem;
      }
      
      .politica-hero p {
        font-size: 1.1rem;
      }
      
      .politica-content {
        padding: 60px 30px;
      }
      
      .politica-section {
        padding: 30px;
      }
      
      .politica-section h2 {
        font-size: 1.8rem;
      }
      
      .politica-section h3 {
        font-size: 1.4rem;
      }
      
      .contact-info {
        flex-direction: row;
        align-items: flex-start;
      }
      
      .contact-info i {
        margin-top: 0;
      }
      
      .rodape {
        padding: 50px 30px 25px;
      }
      
      .rodape-col {
        text-align: left;
      }
      
      .rodape-col p {
        justify-content: flex-start;
      }
      
      .rodape-logo {
        text-align: left;
      }
      
      .rodape-logo p {
        text-align: left;
        margin: 0;
      }
      
      .back-to-top {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
      }
    }

    /* Desktop Pequeno (769px a 992px) */
    @media (min-width: 769px) {
      body {
        font-size: 16px;
      }
      
      .header {
        padding: 25px 40px;
      }
      
      #logo {
        width: 160px;
      }
      
      nav ul {
        gap: 30px;
      }
      
      nav ul li a {
        font-size: 17px;
      }
      
      .politica-hero {
        padding: 100px 40px 50px;
      }
      
      .politica-hero h1 {
        font-size: 2.8rem;
      }
      
      .politica-hero h1::after {
        width: 80px;
        height: 4px;
      }
      
      .politica-hero p {
        font-size: 1.2rem;
      }
      
      .politica-content {
        max-width: 1000px;
        padding: 80px 40px;
      }
      
      .politica-section {
        padding: 35px;
        margin-bottom: 50px;
      }
      
      .politica-section h2 {
        font-size: 2rem;
      }
      
      .politica-section h3 {
        font-size: 1.5rem;
      }
      
      .politica-section p {
        font-size: 1.05rem;
      }
      
      .info-box p {
        font-size: 1rem;
      }
      
      .rodape-top {
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 1200px;
      }
      
      .rodape-col {
        flex: 1;
        min-width: 200px;
      }
      
      .back-to-top {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        bottom: 30px;
        right: 30px;
      }
    }

    /* Desktop Grande (993px em diante) */
    @media (min-width: 993px) {
      .header {
        padding: 25px 60px;
      }
      
      #logo {
        width: 170px;
      }
      
      .politica-hero {
        padding: 100px 60px 60px;
      }
      
      .politica-hero h1 {
        font-size: 3.5rem;
      }
      
      .politica-hero h1::after {
        width: 100px;
        bottom: -15px;
      }
      
      .politica-content {
        max-width: 1200px;
        padding: 80px 60px;
      }
      
      .politica-section {
        padding: 40px;
        margin-bottom: 60px;
      }
      
      .politica-section h2 {
        font-size: 2.2rem;
      }
      
      .politica-section h3 {
        font-size: 1.6rem;
      }
      
      .politica-section p {
        font-size: 1.1rem;
        line-height: 1.8;
      }
      
      .rodape {
        padding: 80px 60px 30px;
      }
      
      .rodape-top {
        max-width: 1400px;
        gap: 60px;
        padding-bottom: 50px;
      }
      
      .rodape-logo {
        flex: 2;
      }
      
      .rodape-col {
        flex: 1;
      }
      
      .logo-footer {
        width: 200px;
      }
      
      .back-to-top {
        width: 60px;
        height: 60px;
        bottom: 30px;
        right: 30px;
      }
    }

    /* Dispositivos muito pequenos (até 360px) */
    @media (max-width: 360px) {
      .politica-hero h1 {
        font-size: 1.6rem;
      }
      
      .politica-hero p {
        font-size: 0.95rem;
      }
      
      .politica-section {
        padding: 20px 15px;
      }
      
      .politica-section h2 {
        font-size: 1.4rem;
      }
      
      .politica-section h3 {
        font-size: 1.2rem;
      }
      
      .politica-section p,
      .politica-section li {
        font-size: 0.95rem;
      }
      
      nav ul li a {
        font-size: 13px;
        padding: 5px 0;
      }
      
      .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        bottom: 15px;
        right: 15px;
      }
    }

    /* Ajustes para orientação paisagem em mobile */
    @media (max-height: 600px) and (orientation: landscape) {
      .politica-hero {
        padding: 40px 20px 20px;
      }
      
      .politica-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
      }
      
      .politica-content {
        padding: 30px 20px;
      }
      
      .politica-section {
        margin-bottom: 25px;
        padding: 20px;
      }
      
      .header {
        padding: 10px 20px;
      }
    }

    /* Melhorias para acessibilidade em toque */
    @media (hover: none) and (pointer: coarse) {
      .politica-section:hover {
        transform: none;
      }
      
      nav ul li a:hover::after {
        width: 0%;
      }
      
      .back-to-top:hover {
        transform: none;
      }
      
      /* Aumentar área de toque para elementos interativos */
      button,
      a {
        min-height: 44px;
        min-width: 44px;
      }
      
      nav ul li a {
        padding: 10px 5px;
      }
    }

    /* Suporte para modo escuro */
    @media (prefers-color-scheme: dark) {
      body {
        background-color: #121212;
        color: #f0f0f0;
      }
      
      .politica-hero {
        background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
      }
      
      .politica-section {
        background-color: #1e1e1e;
        border-color: rgba(0, 102, 204, 0.2);
      }
      
      .politica-section h2,
      .politica-section h3 {
        color: #4dabf7;
      }
      
      .politica-section p,
      .politica-section li {
        color: #ccc;
      }
      
      .info-box {
        background: linear-gradient(135deg, #2a2a2a, #1e1e1e);
      }
      
      .contact-info {
        background: #2a2a2a;
      }
    }

    /* Menu mobile (hamburger) */
    .menu-toggle {
      display: none;
      background: none;
      border: none;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
      position: absolute;
      right: 20px;
      top: 20px;
      z-index: 100;
    }

    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }
      
      nav ul {
        flex-direction: column;
        align-items: center;
        display: none;
      }
      
      nav ul.active {
        display: flex;
      }
    }