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

html,
body {
  height: 100%;
  overflow: hidden;
}

a {
  text-decoration: none;
}

body {
  text-align: center;
  background-color: transparent;
  background-image: linear-gradient(90deg, #009633 0%, #a9c500 100%),
    url("assets/fpf-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 3rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 2em;
  max-width: 90vw;
}


.app-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 20px;
  width: 200px;
  text-align: center;
  color: #333;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.app-card img {
  width: 80px;
  height: 80px;
}

.app-card .title {
  margin-top: 15px;
  font-size: 18px;
  font-weight: bold;
}

.app-card .description {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}
