/* Green Alert — En construcción */

:root {
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --gray-900: #171717;
  --gray-600: #525252;
  --gray-400: #a3a3a3;
  --white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.container {
  max-width: 36rem;
  width: 100%;
  text-align: center;
}

/* Brand */
.brand {
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.brand-logo {
  height: 96px;
  width: auto;
}

/* Hero */
.hero {
  margin-bottom: 2.5rem;
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green-700);
  background: var(--green-100);
  border-radius: 9999px;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--gray-900);
}

.lead {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--gray-600);
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
}

/* Status */
.status {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.status-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-500);
  animation: pulse 1.5s ease-in-out infinite;
}

.status-item:last-child .status-dot {
  animation-delay: 0.4s;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* Contact */
.contact {
  margin-bottom: 3rem;
  padding: 2rem 1rem;
  background: var(--green-50);
  border-radius: 0.75rem;
  border: 1px solid var(--green-100);
}

.contact-title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}

.contact-question {
  margin: 0 0 0.25rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--green-700);
}

.contact-text {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  max-width: 20rem;
  margin: 0 auto;
  text-align: left;
}

.contact-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
}

.contact-input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--gray-900);
  background: var(--white);
  border: 1px solid var(--green-100);
  border-radius: 0.375rem;
}

.contact-input::placeholder {
  color: var(--gray-400);
}

.contact-input:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 2px var(--green-100);
}

.contact-textarea {
  min-height: 5rem;
  resize: vertical;
}

.contact-submit {
  margin-top: 0.5rem;
  padding: 0.6rem 1.25rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  background: var(--green-600);
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.contact-submit:hover {
  background: var(--green-700);
}

/* Footer */
.footer {
  padding-top: 1.5rem;
  border-top: 1px solid var(--green-100);
}

.footer p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--gray-400);
}
