* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  min-height: 100vh;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.container {
  max-width: 600px;
  width: 100%;
}

.logo {
  max-width: 280px;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #0b5e4a; /* verde acorde al logo */
}

p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

small {
  font-size: 0.9rem;
  color: #888;
}

/* 📱 Responsive extra */
@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  p {
    font-size: 1rem;
  }

  .logo {
    max-width: 220px;
  }
}
