
/* Base */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #111;
  color: #f2f2f2;
  line-height: 1.6;
}

/* Layout helpers */
.container {
  max-width: 1080px; /* antes: 920px */
  margin: 0 auto;
  padding: 2rem;
}

/* Header */
.site-header { background-color: #000; }
.logo-header {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-img { height: 100px; display:block; }
nav a {
  color: #f2f2f2;
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 600;
  font-size: 1rem;
}
nav a:hover { color: #8ab4f8; }

/* Motto Hero (alinhado com o logo via .container) */
.motto-hero {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.30) 100%),
    url("imagemestaiada.jpg");
  background-size: cover;
  background-position: center;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.motto-hero .container { 
	padding-top: 3.5rem; 
	padding-bottom: 3.5rem; 
	} /* mesmo padding do restante do site */
.motto-text{
  max-width: 40ch;                 /* antes: 1028px */
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0;
  text-shadow: 0 10px 30px rgba(0,0,0,.42), 0 3px 10px rgba(0,0,0,.35);
}
/* mobile: tira o <br> forçado e abre um pouco a largura */
@media (max-width: 768px){
  .motto-text br{ display:none; }
  .motto-text{
    max-width: 28ch;
    font-size: clamp(1.8rem, 7vw, 2.6rem);
    line-height: 1.1;
  }
}
/* Seções internas */
.hero h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
.hero p { font-size: 1.15rem; color: #dddddd; }
section h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

/* Links da lista */
section ul li a {
  color: #8ab4f8;
  text-decoration: none;
  font-weight: 600;
}
section ul li a:hover { text-decoration: underline; }

/* Rodapé */
footer { background-color: #000; }
.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer img { height: 150px; filter: grayscale(1); }
@media (max-width: 600px) {
  .footer-wrap { flex-direction: column; text-align: center; }
  footer img { margin-top: 1rem; }
}
