* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #b10000;
  color: #fff;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  padding: 48px 16px 20px;
  display: flex;
  justify-content: center;
}

.logo {
  width: min(420px, 75vw);
  height: auto;
  user-select: none;
}

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 16px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.35;
  font-weight: 800;
  text-shadow: 0 2px 0 rgba(0,0,0,0.15);
}

.footer {
  background: #7e0000;
  padding-top: 18px;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px 14px;
  text-align: center;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 600;
}

.footer-inner p {
  color: rgba(255,255,255,0.95);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.35);
  padding: 14px 16px 18px;
  text-align: center;
}

.footer-bottom a {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* =========================
   POLÍTICA DE PRIVACIDADE
   ========================= */

body.policy .page{
  min-height: 100vh;
}

.policy-wrap{
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 30px 16px 60px;
}

.policy-card{
  width: min(860px, 100%);
  background: #ffffff;
  border-radius: 8px;
  padding: 36px 40px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

.policy-card h1{
  margin: 0 0 16px;
  font-size: 26px;
  color: #b20000;
  font-weight: 900;
}

.policy-card h2{
  margin: 22px 0 10px;
  font-size: 18px;
  color: #111;
  font-weight: 900;
}

.policy-card p{
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  font-weight: 600;
}

.policy-updated{
  margin-top: 18px !important;
  font-size: 12px !important;
  color: #555 !important;
  font-weight: 700 !important;
}

/* footer com "Voltar ao início" */
.footer-policy{
  border-top: 1px solid rgba(255,255,255,0.35);
}

.footer-link{
  display: inline-block;
  padding: 16px 0;
  color: rgba(255,255,255,0.95);
  font-weight: 800;
  text-decoration: none;
  font-size: 12px;
}

.footer-link:hover{
  text-decoration: underline;
}

/* Responsivo */
@media (max-width: 520px){
  .policy-card{
    padding: 22px 18px;
  }
}
