:root {
  --azul: #1c3456;
  --dorado: #c0a473;
  --beige: #ede0d5;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
font-family: "Segoe UI", Arial, sans-serif;
background: url("fondo.png") no-repeat center top fixed;
background-size: cover;
color: var(--azul);
min-height: 100vh;
}

.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem 1.5rem;
}

.hero {
  background: #ffffff;
  border-radius: 24px;
  padding: 3rem 2rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.logo {
  max-width: 180px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.notify-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.notify-form input {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--azul);
  font-size: 0.95rem;
}

.notify-form button {
  background-color: var(--azul);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.notify-form button:hover {
  background-color: var(--dorado);
  color: var(--azul);
}

.contact {
  display: flex;
  gap: 1.2rem;
  margin-top: 2rem;
}

.contact a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--azul);
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.contact a:hover {
  background-color: var(--dorado);
  color: var(--azul);
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 2.4rem;
  }

  .hero p {
    font-size: 1.05rem;
  }
}
