/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Estilos base */
html, body {
  height: 100%;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(135deg, #0a0a0a, #121212);
  color: #ddd;
  overflow-x: hidden;
  overflow-y: auto;
  line-height: 1.5;
}

/* Partículas */
#particles-js {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

/* Header */
header#privacidade-header {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  height: 90px;
  background: rgba(15, 15, 15, 0.95);
  box-shadow: 0 1px 8px rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  z-index: 10;
}

/* Logo */
#nav_name_privacidade {
  position: absolute;
  left: 40px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #5b5858;
  user-select: none;
}

/* Navegação */
nav#privacidade-nav ul#nav_list {
  list-style: none;
  display: flex;
  gap: 48px;
  justify-content: center;
  width: 100%;
  max-width: 960px;
  font-size: 1rem;
}

nav#privacidade-nav ul#nav_list li a {
  color: #aaa;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 0;
  position: relative;
  transition: color 0.25s ease;
}

nav#privacidade-nav ul#nav_list li a:hover,
nav#privacidade-nav ul#nav_list li a.active {
  color: #00e6e6;
}

nav#privacidade-nav ul#nav_list li a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #00e6e6;
  transition: width 0.25s ease;
}

nav#privacidade-nav ul#nav_list li a:hover::after,
nav#privacidade-nav ul#nav_list li a.active::after {
  width: 100%;
}

/* Seção */
#privacidade {
  scroll-margin-top: 90px;
  margin-top: 50px;
}

.privacidade-section {
  padding: 80px 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  margin-top: 90px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.privacidade-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ddd;
  margin-bottom: 40px;
  text-shadow: 0 0 10px rgba(152, 150, 150, 0.7);
}

.privacidade-container {
  max-width: 1000px;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
  color: #bbb;
}

.privacidade-container p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.privacidade-container h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #00e6e6;
}

.privacidade-container ul {
  list-style-type: disc;
  padding-left: 30px;
  margin-bottom: 40px;
}

.privacidade-container li {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #ddd;
}

/* ============================================
   Responsividade: até 1170px (telas médias)
   ============================================ */
@media screen and (max-width: 1170px) {
  #nav_name_privacidade {
    font-size: 1.2rem;
    left: 20px;
    display: none;
  }

  nav#privacidade-nav ul#nav_list {
    gap: 24px;
    font-size: 0.95rem;
  }

  nav#privacidade-nav ul#nav_list li a {
    font-size: 0.95rem;
  }

  .privacidade-title {
    font-size: 2.2rem;
  }

  .privacidade-container {
    padding: 0 15px;
  }

  .btn-hero {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}

/* ============================================
   Responsividade: até 600px (smartphones)
   ============================================ */
@media screen and (max-width: 600px) {
  header#privacidade-header {
    flex-direction: column;
    height: auto;
    padding: 10px 12px;
  }

  #nav_name_privacidade {
    position: relative;
    left: auto;
    text-align: center;
    margin-bottom: 12px;
    display: none;
  }

  nav#privacidade-nav ul#nav_list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.8rem;
    justify-content: center;
    padding: 0;
  }

  nav#privacidade-nav ul#nav_list li a {
    font-size: 0.6rem;
    padding: 6px 0;
  }

  .privacidade-title {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }

  .privacidade-container p,
  .privacidade-container h3,
  .privacidade-container li {
    font-size: 0.95rem;
  }

  .privacidade-container {
    padding: 0 10px;
  }

  .btn-hero {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}
