/* =========================
   HERO
========================= */

.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('../assets/images/impacto-atletas.jpg') center/cover no-repeat;
  color: #fff;
  padding: 100px 0;
  position: relative;
}

.hero-content {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color:white;
}

.ver-mais {
  position: absolute;
  top: 0;
  right: 0;
  font-weight: 600;
  color: #ff7a00;
  text-decoration: none;
  transition: color 0.2s;
}

.ver-mais:hover {
  color: #e66f00;
}

.hero p {
  color: #dcdcdc;
  max-width: 640px;
  margin: 1.5rem 0 2.2rem;
  font-size: 1.05rem;
}

/* Botão central */
.btn-primary {
  display: inline-block;
  background: #ff7a00;
  color: #fff;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.15s ease;
}

.btn-primary:hover {
  background: #e66f00;
  transform: translateY(-1px);
}
/* =========================
   SEÇÕES PADRÃO
========================= */

.section {
  padding: 70px 0;
}

.section-light {
  background: #f6f6f6;
}

.section-dark {
  background: #111;
  color: #fff;
}

.section-dark h2 {
  color: #fff;
}

.section-dark p {
  color: #dcdcdc;
}

/* =========================
   GRID
========================= */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

/* =========================
   IMPACTO
========================= */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
}

.card {
  background: #444;
  padding: 2.2rem 2rem;
  border-radius: 8px;
  text-align: center;
}

.section-dark .card {
  background: white;
}

.card strong {
  display: block;
  font-size: 1.6rem;
  color: #ff7a00;
  margin-bottom: 0.6rem;
}

.card span {
  font-size: 0.95rem;
  color: #444;
}

.section-dark .card span {
  color: black;
}

/* =========================
   PARCERIAS / TRANSPARÊNCIA
========================= */

.section p {
  max-width: 720px;
}

/* =========================
   BOTÕES (HOME)
========================= */

.btn-primary {
  background: #ff7a00;
  color: #fff;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.15s ease;
}

.btn-primary:hover {
  background: #e66f00; /* laranja mais escuro */
  transform: translateY(-1px);
}

.btn-secondary {
  color: #ff7a00;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.btn-secondary:hover {
  color: #e66f00;
}



/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .hero {
    padding: 70px 0;
  }

  .hero h1 {
    font-size: 1.5rem;
    color: white;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .section {
    padding: 60px 0;
  }

  .card {
    padding: 1.8rem;
  }
}

.section-header {
  display: flex;
  justify-content: space-between; /* título à esquerda, link à direita */
  align-items: center;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 1.8rem;
  margin: 0;
}

.link-ver-mais {
  color: #ff7a00;
  text-decoration: underline;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;  /* espaço entre texto e seta */
  transition: color 0.25s ease;
}

.link-ver-mais:hover {
  color: #e66f00;
}

.arrow {
  font-weight: bold;
}

/* Para mobile */
.menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
}

.menu.active {
  display: flex;
}

.flex-gallery {
  display: flex;
  height: 500px; /* altura fixa ou ajustável */
  overflow: hidden;
}

.panel {
  flex: 1;
  background-size: cover;
  background-position: center;
  margin: 0 5px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: flex 0.5s ease;
  text-decoration: none;
  color: white;
  border-radius: 10px;
}

.panel h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

.panel.active {
  flex: 3;
}

.panel:hover {
  flex: 3;
}
