/* --- Reset Global e Configurações Básicas --- */
* {
  box-sizing: border-box; /* Essencial para responsividade: padding não aumenta a largura total */
}

html {
  height: 100%;
}

body {
  font-family: 'Montserrat', 'Trebuchet MS', Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #23272b;
  cursor: default; /* Cursor pointer no body não é recomendado */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* --- Navegação (Navbar) --- */
nav {
  background: linear-gradient(#333232, #585757);
  color: #f9eed1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  min-height: 74px; /* Mudado de height fixo para min-height para permitir expansão no mobile */
  font-family: 'Montserrat', sans-serif;
  position: relative;
  z-index: 10;
}

nav .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

nav .logo img {
  height: 60px; /* Ajustado para caber melhor na barra */
  width: auto;
}

nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  transition: color 0.2s;
}

nav ul li a:hover {
  color: #f1c344;
}

/* --- Hero Header Style --- */
.hero {
  position: relative;
  width: 100%;
  color: #FFFFFF;
  text-align: center;
}

.hero-img {
  width: 100%;
  height: 45vh;
  min-height: 300px; /* Garante altura mínima em celulares */
  object-fit: cover;
  display: block;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  z-index: 2;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.hero p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
}

.btn-destaque {
  display: inline-block; /* Garante que padding funcione corretamente */
  padding: 12px 32px;
  background: #23272b;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
}

.btn-destaque:hover {
  background: #fdf4a9;
  color: rgb(30, 30, 30);
}

/* --- Main Content --- */
main {
  padding: 36px 0;
  flex-grow: 1;
  background: linear-gradient(135deg, #fbf5e4 70%, #F9C846 100%);
}

.destaques h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* CORREÇÃO CRÍTICA: Responsividade dos Cards */
.cards {
  display: flex;
  justify-content: center;
  align-items: center; /* Se quiser alinhar ao topo, use align-items: stretch ou flex-start */
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 18px;
  width: 90%; /* Ocupa 90% da tela em vez de fixo */
  max-width: 1100px; /* Trava no tamanho máximo para telas grandes */
  margin-left: auto;
  margin-right: auto;
}

.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(36, 52, 141, 0.08);
  padding: 22px 18px 26px 18px;
  width: 100%; /* Adapta ao container */
  max-width: 320px; /* Tamanho máximo do card individual */
  text-align: center;
  transition: transform 0.2s;
  border: 0.3px solid rgb(252, 252, 153);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(36, 52, 141, 0.14);
  border: 1px solid rgb(252, 252, 153);
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px; /* Adicionado para suavizar cantos da imagem */
  margin-bottom: 10px;
}

.card h3 {
  margin: 8px 0 12px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  color: #23272b;
}

.card-link {
  display: inline-block;
  margin-top: auto; /* Empurra o botão para o final se o card crescer */
  color: #484848;
  background: #f3e638;
  padding: 8px 22px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s;
}

.card-link:hover {
  background: #333333;
  color: #f3e638;
}

/* --- Footer --- */
footer {
  background: linear-gradient(to right, #f3e0a4, #F9C846);
  color: #000000;
  padding: 20px 0; /* Padding vertical para não ficar apertado */
  text-align: center;
  /* height removido para permitir conteúdo fluído no mobile */
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap; /* Permite quebrar linha no mobile */
}

.footer-content img {
  width: 120px;
  height: auto; /* Mantém proporção */
  border-radius: 4px;
}

.direitos {
  font-size: 12px; /* Levemente aumentado para legibilidade */
  margin-top: 10px;
  display: block;
}

/* --- Sobre Projeto --- */
header.interno {
  background: #000000;
  color: #ffffff;
  padding: 15px 0;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
}

.sobre-projeto {
  display: flex;
  gap: 42px;
  max-width: 1000px;
  margin: 36px auto 0 auto;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0 18px;
}

.sobre-img {
  flex: 1 1 280px; /* Flex-grow, Flex-shrink, Flex-basis */
  width: 100%;
  max-width: 350px;
  border-radius: 12px; /* Adicionado estilo */
}

.sobre-texto {
  flex: 2 1 300px;
}

.creditos {
  background: rgba(249, 200, 70, 0.1);
  margin: 48px auto 20px auto;
  max-width: 650px;
  width: 90%;
  border-radius: 18px;
  padding: 22px 30px;
  box-shadow: 0 2px 10px #eee;
}

/* --- Física no Trânsito --- */
.tema-fisica {
  margin: 38px auto 0 auto;
  max-width: 960px;
  padding: 0 18px 22px 18px;
}

.tema-fisica a {
  text-decoration: none;
  color: inherit; /* Herda a cor do elemento pai */
}

.bloco-fisica {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px #eee;
  padding: 18px 22px;
  transition: transform 0.28s cubic-bezier(.22, .68, .32, 1.18), box-shadow 0.26s;
  cursor: pointer;
}

.bloco-fisica:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 36px rgba(249, 200, 70, 0.4);
  z-index: 2;
}

.img-fisica {
  flex: 0 0 140px;
  width: 140px;
  height: 140px; /* Garante que seja quadrado */
  object-fit: cover;
  border-radius: 14px;
  transition: filter 0.22s;
}

.bloco-fisica:hover .img-fisica {
  filter: brightness(1.07) saturate(1.3);
}

.bloco-fisica div {
  flex: 1 1 300px;
}

/* --- Recursos --- */
.recursos-lista {
  margin: 40px auto 0 auto;
  max-width: 900px;
  padding: 0 18px;
}

.card-recursos {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  justify-content: center; /* Centraliza cards */
  margin-top: 18px;
}

.recurso {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px #eee;
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
  max-width: 400px;
  transition: box-shadow 0.25s, transform 0.23s;
}

.recurso:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(249, 200, 70, 0.3);
}

.recurso img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0; /* Impede que a imagem encolha */
}

/* --- Quiz & Contato --- */
.quiz-section,
.contato-section {
  width: 90%;
  margin: 40px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px #eee;
  padding: 32px 22px;
}

.quiz-section { max-width: 700px; }
.contato-section { max-width: 480px; }

.contato-section form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contato-section input,
.contato-section textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 1rem;
  width: 100%; /* Garante largura total */
}

/* --- MEDIA QUERIES (Mobile) --- */
/* Aqui acontece a mágica para celulares */

@media (max-width: 600px) {
  /* 1. Navbar vira coluna */
  nav {
    flex-direction: column;
    padding: 20px;
    height: auto;
  }

  nav ul {
    flex-direction: column; /* Itens um embaixo do outro */
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    width: 100%;
  }

  nav .logo img {
    height: 50px;
  }

  /* 2. Ajuste do texto Hero */
  .hero h1 {
    font-size: 2rem; /* Fonte menor */
  }
  
  .hero p {
    font-size: 1rem;
  }

  /* 3. Física no Trânsito */
  .bloco-fisica {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .img-fisica {
    margin-bottom: 12px;
  }
  
  /* 4. Sobre o Projeto */
  .sobre-projeto {
    flex-direction: column;
    align-items: center;
  }
  
  .sobre-img {
    margin-bottom: 20px;
  }
  
  /* 5. Ajuste geral de margens */
  .cards, .recursos-lista {
    width: 95%; /* Aproveita mais a tela pequena */
    gap: 20px;
  }
}