/* reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* corpo e tipografia */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f7f7f7;
  color: #333;
  overflow-x: hidden;
}

/* header */
header {
  background: #2f4fae;
  color: #fff;
  text-align: center;
  padding: 16px 0;
}
header .header-inner,
header h1,
header .date {
  max-width: 800px;
  margin: 0 auto;
}
header h1 {
  font-size: 1.5rem;
}
header .date {
  margin-top: 4px;
  font-size: 0.875rem;
  opacity: 0.8;
}

/* container principal */
.container {
  max-width: 800px;
  width: 100%;
  margin: 24px auto;
  padding: 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* seções e títulos */
.container section {
  margin-bottom: 24px;
}
.container h2 {
  font-size: 1.25rem;
  color: #2f4fae;
  margin-bottom: 8px;
}
.container h3 {
  font-size: 1rem;
  color: #2f4fae;
  margin: 12px 0 6px;
}
.container p {
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.container a {
  color: #2f4fae;
  text-decoration: underline;
}
.container a:hover {
  opacity: 0.8;
}

ul {
  margin-bottom: 12px;
}

li {
  list-style:square;
  margin-left: 2rem;
  margin-bottom: 6px;
}

/* responsivo */
@media (max-width: 600px) {
  header h1 { font-size: 1.2rem; }
  .container { margin: 16px auto; padding: 12px; }
}


/* Estilo especifico da pagina de suporte */
/* === Contacting Support === */
#contact-support {
  margin: 2rem 0;
}

#contact-support h2 {
  font-size: 1.25rem;
  color: #2f4fae;
  margin-bottom: 1rem;
}

/* cartão de suporte */
#contact-support .support-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 1rem;
}

/* cada linha (telefone / email) */
#contact-support .support-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

#contact-support .support-item:last-child {
  margin-bottom: 0;
}

/* ícone */
#contact-support .icon {
  font-size: 1.5rem;
  line-height: 1;
  margin-right: 0.75rem;
}

/* detalhes */
#contact-support .details .label {
  font-weight: bold;
  margin-bottom: 0.25rem;
}

#contact-support .details .value {
  font-size: 0.95rem;
  color: #333;
}

/* horário */
#contact-support .hours {
  color: #777;
  font-size: 0.85rem;
  margin-left: 0.5rem;
}

/* link de email */
#contact-support .value a {
  color: #2f4fae;
  text-decoration: none;
}

#contact-support .value a:hover {
  text-decoration: underline;
}