body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-image: url("fondo web.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.overlay {
  background-color: rgba(255, 250, 240, 0.90); /* menos transparente que antes */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem 1rem;
}

header {
  text-align: center;
  margin-bottom: 1rem;
}

.logo {
  width: 180px;
  max-width: 100%;
}

.slogan {
  font-size: 1.2rem;
  font-weight: 500;
  color: #444;
  margin-top: 0.5rem;
}

main {
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro {
  font-size: 1.15rem;
  color: #222;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-button {
  background-color: #00A951;
  color: white;
  padding: 0.9rem 2.2rem;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s, transform 0.2s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background-color: #008c3f;
  transform: scale(1.03);
}

footer {
  text-align: center;
  font-size: 0.9rem;
  padding: 1rem 0;
  color: #555;
}

footer a {
  color: #AE2A43;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
