@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #e0eafc, #cfdef3);
  min-height: 100vh;
  color: #1f2937;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

header {
  background-color: rgba(17, 24, 39, 0.9); /* Fundo semi-transparente */
  color: white;
  padding: 40px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
 
}

header h1 {
  font-size: 2.5rem;
}

header p {
  margin-top: 10px;
  font-size: 1.2rem;
  color: #9ca3af;
}

nav {
  background-color: rgba(31, 41, 55, 0.9);
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 20px;
  backdrop-filter: blur(8px);
}

nav a {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}

nav a:hover {
  color: #60a5fa;
  transform: scale(1.1);
}

section {
  padding: 60px 20px;
  text-align: center;
}

.info-box {
  background: white;
  padding: 40px;
  margin: 30px auto;
  border-radius: 12px;
  max-width: 700px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transition: transform 0.4s, box-shadow 0.4s;
  animation: zoomIn 1.5s ease;
}

.info-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.info-box h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #111827;
}

.info-box p {
  font-size: 1.1rem;
  color: #6b7280;
}

.info-box a {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background-color: #2563eb;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s, transform 0.3s;
}

.info-box a:hover {
  background-color: #1d4ed8;
  transform: scale(1.05);
}

footer {
  text-align: center;
  padding: 30px 20px;
  background-color: rgba(17, 24, 39, 0.9);
  color: #9ca3af;
  font-size: 0.9rem;
  backdrop-filter: blur(8px);
}