:root {
  --color-naranja: #F45D02;
  --color-amarillo: #FFC62B;
  --color-violeta: #D896F5;
  --color-coral: #F5856E;
  --fuente-base: "Inter", sans-serif;
}

body {
  margin: 0;
  font-family: var(--fuente-base);
  background-color: var(--color-naranja);
  color: white;
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  max-height: 500px;
}

main {
  max-width: 768px;
  text-align: center;
}

h1 {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-amarillo);
  margin-bottom: 1rem;
}

p {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 2rem;
}

.cta-button {
  background-color: var(--color-coral);
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: var(--color-violeta);
}

footer {
  text-align: center;
  padding: 2rem;
  color: #ffddcc;
  font-size: 0.875rem;
}

@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }

  .cta-button {
    font-size: 0.95rem;
  }
}
