/* estilos.css */

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to right, #f7f8fc, #e9ecf3);
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  text-align: center;
}

header img {
  max-height: 80px;
}

main {
  flex: 1;
  max-width: 900px;
  margin: 40px auto;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

main.landing {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  max-width: none;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

main.landing a img {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

main.landing a img:hover {
  transform: scale(1.03);
}

h1 {
  font-size: 28px;
  margin-top: 0;
}

h2 {
  margin-top: 30px;
  font-size: 20px;
  color: #444;
}

p, li {
  font-size: 16px;
}

ul {
  padding-left: 20px;
}

footer {
  background-color: #fff;
  padding: 15px;
  border-top: 1px solid #ddd;
  text-align: center;
  font-size: 14px;
}

footer a {
  margin: 0 12px;
  text-decoration: none;
  color: #555;
  transition: color 0.2s ease;
}

footer a:hover {
  color: #000;
}
