/* CSS para página Nossos Prêmios */

.nossos-premios {
  padding: 120px 0 80px;
  background: var(--cinza-claro);
}

.nossos-premios h1 {
  color: var(--azul-principal);
  font-size: 48px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--texto);
  font-style: italic;
  margin-bottom: 60px;
}

.premios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.premio-card {
  background: var(--azul-principal);
  border-radius: 15px;
  padding: 30px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.premio-card:hover {
  transform: translateY(-5px);
}

.premio-card:nth-child(even) {
  background: var(--amarelo-destaque);
}

.trofeu-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.ano {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.descricao {
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
}

/* Shine Effect */
.shine-effect {
  position: relative;
}

.shine-effect:after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.8s ease-in-out;
  pointer-events: none;
}

.shine-effect:hover:after {
  left: 100%;
}

.btn-voltar {
  display: inline-block;
  background: var(--azul-principal);
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-voltar:hover {
  background: var(--amarelo-destaque);
  transform: translateY(-2px);
  color: white;
}

/* Responsividade */
@media (max-width: 768px) {
  .nossos-premios {
    padding: 100px 0 60px;
  }

  .nossos-premios h1 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .premios-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .premio-card {
    min-height: 200px;
    padding: 25px;
  }

  .ano {
    font-size: 26px;
  }

  .descricao {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .nossos-premios h1 {
    font-size: 28px;
  }

  .subtitle {
    font-size: 15px;
  }

  .premio-card {
    min-height: 180px;
    padding: 20px;
  }

  .trofeu-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }

  .ano {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .descricao {
    font-size: 12px;
  }
}