* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #0A0A0A;
  color: #EDEDED;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 24px 0;
}

.phone {
  width: 100%;
  max-width: 400px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 48px);
}

.brand {
  text-align: center;
  margin-bottom: 8px;
}

.brand .name {
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
}

.brand .tagline {
  color: #999999;
  font-size: 12px;
  margin-top: 2px;
}

.intro {
  color: #CCCCCC;
  font-size: 14px;
  text-align: center;
  margin: 18px 0 16px;
  font-weight: 500;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.links a {
  color: #EDEDED;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid #2A2A2A;
  padding-bottom: 12px;
  transition: color 0.15s ease;
}

.links a:active,
.links a:hover {
  color: #53BDEB;
}

.links a.highlight {
  color: #FFFFFF;
  font-weight: 600;
}

.links a.highlight:active,
.links a.highlight:hover {
  color: #53BDEB;
}

.footer {
  text-align: center;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #1F1F1F;
}

.footer p {
  color: #777777;
  font-size: 11px;
}

.footer a {
  color: #53BDEB;
  text-decoration: none;
}

/* Página de resposta individual */
.answer-page {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.back-link {
  color: #53BDEB;
  font-size: 13px;
  text-decoration: none;
  margin-bottom: 20px;
  display: inline-block;
}

.question {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.4;
}

.answer {
  color: #DDDDDD;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.note {
  color: #999999;
  font-size: 13px;
  line-height: 1.6;
  margin-top: 8px;
}

.note.warn {
  color: #E5B868;
}

.cta {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 20px;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
  text-align: center;
  border-radius: 4px;
}

.cta:active,
.cta:hover {
  background: #FFFFFF;
  color: #0A0A0A;
}
