/* Reset básico */
* {
  margin: 0;
  padding: 0;
  font-family: 'Outfit', sans-serif;
  box-sizing: border-box;
}

body {
  background-color: #d5e1ef;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

main {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

section {
  background-color: white;
  padding: 20px;
  border-radius: 15px;
  max-width: 320px;
  width: 90%;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

section img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

h1 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f3251;
  margin-bottom: 10px;
}

p {
  font-size: 0.9rem;
  color: #7b879d;
}
