:root {
  --gold-color: #d4af37;
  --bg-darker: #0a0a0a;
  --bg-card: #141414;
  --text-light: #f5f5f5;
  --text-grey: #a0a0a0;
  --visited-border: #444444;
  --smooth-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-darker);
  color: var(--text-light);
  line-height: 1.6;
}

/* ==========================================================================
   2. Cabeçalho (Header) - OTIMIZADO MOBILE-FIRST
   ========================================================================== */
.main-header {
  background: rgba(10, 10, 10, 0.95);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 15px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(45deg, var(--gold-color), #ffffff);
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  text-align: center;
}
  .sua-classe {    -webkit-background-clip: text; 
        background-clip: text; 
}


.main-header nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.nav-link {
  color: var(--text-grey);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  transition: var(--smooth-transition);
  padding: 4px 0;
}

.nav-link:hover {
  color: var(--gold-color);
}

@media (min-width: 768px) {
  .header-container {
    flex-direction: row;
    justify-content: space-between;
    padding: 20px;
  }
  .logo { font-size: 1.6rem; }
  .nav-link { font-size: 0.9rem; }
}

/* ==========================================================================
   3. Elementos da Página Atualmente (Texto e Botões Externos)
   ========================================================================== */
.container {
  max-width: 1100px;
  margin: 30px auto;
  padding: 0 20px;
}

.content-section, .links-section {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
}

h2 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  border-left: 4px solid var(--gold-color);
  padding-left: 12px;
}

.bio-text {
  font-size: 1rem;
  color: var(--text-grey);
  margin-bottom: 15px;
  text-align: justify;
}

.links-section { text-align: center; }
.links-section p { color: var(--text-grey); margin-bottom: 20px; font-size: 0.9rem; }

.links-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  margin: 20px auto 0 auto;
}

@media (min-width: 600px) {
  .links-container { flex-direction: row; }
}

.button-link {
  flex: 1;
  display: inline-block;
  padding: 12px 20px;
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--text-light);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--smooth-transition);
}

.button-link:hover {
  background-color: var(--gold-color);
  border-color: var(--gold-color);
  color: var(--bg-darker);
  transform: translateY(-2px);
}

.button-link:visited {
  color: var(--text-grey);
  border-color: var(--visited-border);
}

.main-footer {
  text-align: center;
  padding: 30px 20px;
  color: var(--text-grey);
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.img-trajetoria {
  width: 100%;
  max-width: 500px; /* <--- MUDE AQUI! Se quiser menor, coloque 400px ou 350px. Se quiser maior, aumente para 600px */
  height: auto;
  display: block;
  margin: 10px auto 25px auto;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}
.logo-dourada {
    background: linear-gradient(to right, #ffe599, #f1c232); /* Seu fundo dourado */
    color: #000000; /* Define a cor do texto como preto para dar leitura */
    font-weight: bold;
    font-size: 24px;
}