@import url('https://fonts.googleapis.com/css2?family=Parisienne&family=Poppins:wght@300;400;500&display=swap');

/* ========== RESET GLOBAL ========== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background: url('fundo4.jpeg') no-repeat center center / cover;
  color: #000;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly; /* Centraliza verticalmente */
  align-items: center;
  text-align: center;
  overflow: hidden; /* Evita rolagem */
}

/* ========== HEADER ========== */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding-top: 55px;
}

header h1 {
  font-family: "Parisienne", cursive;
  font-size: 4rem;
  font-weight: 100;
  color: #7C8C5E;
  letter-spacing: 1px;
}

header p {
  font-size: 1.2rem;
  color: #000;
  max-width: 600px;
  line-height: 1.5;
}

/* ========== CONTEÚDO CENTRAL (BOTÕES) ========== */
#content-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  margin: 40px 0;
}

.boxes {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.boxes-card a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: #C7D6A8;
  border: 1px solid #7C8C5E;
  border-radius: 10px;
  padding: 14px 28px;
  gap: 10px;
  transition: 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.boxes-card a:hover {
  background-color: #b5c792;
  transform: scale(1.05);
}

.boxes-card a img {
  width: 36px;
}

.boxes-card a p {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
}

/* ========== RODAPÉ ========== */
footer {
  font-family: "Parisienne", cursive;
  font-size: 0.9rem;
  color: #6b705c;
  margin-top: 20px;
  line-height: 25px;
}

/* ========== RESPONSIVIDADE ========== */
@media screen and (max-width: 768px) {
  header h1 {
    font-size: 2.8rem;
  }

  header p {
    font-size: 1rem;
    max-width: 90%;
  }

  .boxes {
    flex-direction: column;
    gap: 15px;
  }

  .boxes-card a {
    width: 220px;
  }

  footer {
    font-size: 0.85rem;
  }
}

@media screen and (max-width: 480px) {
  header h1 {
    font-size: 2.6rem;
  }

  header p {
    width: 70%;
    font-size: 1.1rem;
  }

  .boxes-card a {
    padding: 12px 20px;
  }

  .boxes-card a p {
    font-size: 0.90rem;
  }

  footer {
      font-size: 0.85rem;
      
  }
}