/* Reset e base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
ol,
li,
dl,
dt,
dd {
  list-style: none;
}

body {
  font-family: "Noto Sans", sans-serif;
  background-color: white;
  color: #333;
  line-height: 1.6;
}

.logo {
  max-width: 100%;
  height: auto;
  display: block;
  height: 50px;
}

/* Container padrão */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
  min-height: 100vh;
}

/* HEADER */
.header {
  height: 80px;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu {
  display: flex;
  gap: 20px;
}

.menu a {
  color: black;
  text-decoration: none;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}

.menu a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: black;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #BFBFBF;
  cursor: pointer;
}

/* CONTEÚDO LEGAL */
h2 {
  font-family: "Noto Serif", serif;
  font-size: 2.2rem;
  color: #111111;
  font-weight: 800;
  margin: 30px 0 20px 0;
  text-shadow: 0 2px 2px rgba(0,0,0,0.1);
}

.container-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.cards-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  margin: 32px 0;
  color: black;
  background: rgba(245, 245, 245, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(200, 200, 200, 0.5);
  text-align: justify;
  max-width: 900px;
  font-family: "Noto Serif", serif;
}

/* BOTÃO */
.btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 10px 18px;
  background: black;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background .2s ease, transform .08s ease;
}

.btn-theme:hover {
  background: #BFBFBF;
  transform: translateY(-3px);
}

/* FOOTER */
.footer {
  background: #111111;
  color: white;
  padding: 20px;
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.footer-info p {
  margin: 4px 0;
  color: #484848;
}

.footer-links a {
  color: #BFBFBF;
  margin: 0 12px 8px 12px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.instagram-link i {
  margin-right: 6px;
}

.footer-credits {
  font-size: 0.8rem;
  color: #484848;
}

.footer-credits a {
  color: #BFBFBF;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease;
}

.footer-credits a:hover {
  color: #ffffff;
}

.footer-credits i {
  margin-left: 6px;
  font-size: 0.9rem;
  vertical-align: middle;
}

/* RESPONSIVIDADE */
@media (min-width: 2500px) {
  .container,
  .header {
    width: 95%;
    max-width: 1600px;
  }
}

@media (max-width: 1025px) {
  .header {
    height: auto;
  }
  h2 {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    gap: 16px;
    background: white;
    position: absolute;
    top: 80px;
    right: 20px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  }
  .menu.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .menu a.active::after {
    display: none;
  }
  .container-legal {
    padding: 1rem;
  }
  .cards-legal {
    margin: 20px 0;
    padding: 1.5rem;
  }
  p {
    font-size: 0.95rem;
    text-align: center;
  }
  .footer-links a {
    display: block;
    margin: 6px 0;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 30px 15px;
  }
  .footer-links a {
    display: block;
    margin: 8px 0;
  }
}

@media (max-width: 480px) {
  h2 {
    text-align: center;
    font-size: 1.4rem;
  }
}
