/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #0a0a0a;
  color: #fff;
  line-height: 1.8;
  overflow-x: hidden;
  font-size: 20px; /* Aumentei fonte base */
}

/* ===== CABEÇALHO ===== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  padding: 1.5rem 0; /* mais alto */
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

.logo {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffcc00;
  letter-spacing: 3px;
}

.nav {
  display: flex;
  justify-content: flex-end;
}

.menu {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.3rem;
  transition: color 0.3s;
}

.menu a:hover {
  color: #ffcc00;
}

/* ===== BANNER ===== */
.banner {
  height: 110vh; /* aumentei a altura */
  background: url("img/cr7-fundo.png") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.banner-content h2 {
  font-size: 5rem; /* título maior */
  color: #ffcc00;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.banner-content p {
  margin: 1.5rem 0;
  font-size: 1.6rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #ffcc00;
  color: #000;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #fff;
  transform: scale(1.08);
}

/* ===== SEÇÕES ===== */
section {
  padding: 7rem 0; /* mais espaçamento */
  text-align: center;
}

h2 {
  font-size: 3rem;
  color: #ffcc00;
  margin-bottom: 2rem;
}

/* ===== SOBRE ===== */
.sobre p {
  max-width: 900px;
  margin: 1rem auto;
  font-size: 1.3rem;
  color: #ddd;
}

/* ===== CARREIRA ===== */
.timeline {
  display: grid;
  gap: 2.5rem;
  margin-top: 3rem;
}

.etapa {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255,255,255,0.08);
  transition: transform 0.3s;
}

.etapa:hover {
  transform: translateY(-8px);
}

.etapa h3 {
  color: #ffcc00;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* ===== TÍTULOS ===== */
.lista-titulos {
  list-style: none;
  margin-top: 3rem;
}

.lista-titulos li {
  background: #1a1a1a;
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 10px;
  font-size: 1.3rem;
  transition: background 0.3s;
}

.lista-titulos li:hover {
  background: #ffcc00;
  color: #000;
}

/* ===== CURIOSIDADES ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.card {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255,255,255,0.08);
  transition: transform 0.3s, background 0.3s;
}

.card:hover {
  background: #ffcc00;
  color: #000;
  transform: scale(1.05);
}

.card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
}

/* ===== CONTATO ===== */
.contato p {
  margin-top: 1.2rem;
  color: #ddd;
  font-size: 1.3rem;
}

.redes {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.redes a {
  color: #ffcc00;
  text-decoration: none;
  border: 2px solid #ffcc00;
  padding: 0.8rem 1.8rem;
  border-radius: 40px;
  font-size: 1.2rem;
  transition: 0.3s;
}

.redes a:hover {
  background: #ffcc00;
  color: #000;
  transform: scale(1.08);
}

/* ===== RODAPÉ ===== */
.footer {
  background: #000;
  padding: 3rem 0;
  text-align: center;
  font-size: 1.1rem;
  color: #ffcc00;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .banner-content h2 {
    font-size: 3rem;
  }

  .menu {
    display: none;
  }

  section {
    padding: 5rem 1rem;
  }

  .container {
    width: 95%;
  }

  body {
    font-size: 18px;
  }
}