/* Brand Minuto Agro — paleta verde + creme + preto agro */

:root {
  --bg-dark: #0a0d08;
  --bg-panel: #13170f;
  --accent: #6FBF3D;
  --accent-strong: #5BA82E;
  --earth: #6B4423;
  --cream: #F5F0E1;
  --text: #F5F0E1;
  --text-muted: #a8a89a;
  --border: rgba(245,240,225,0.12);
  --error: #d97706;
  --success: #6FBF3D;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-dark);
  color: var(--text);
  font-family: 'Questrial', ui-sans-serif, system-ui, sans-serif;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

body {
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse 800px 500px at 50% -100px, rgba(111,191,61,0.08), transparent 60%),
    radial-gradient(ellipse 600px 400px at 100% 100%, rgba(107,68,35,0.05), transparent 60%);
}

.container {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 24px 32px;
}

/* Hero */
.hero {
  text-align: center;
  margin-bottom: 48px;
}

.logo {
  display: block;
  margin: 0 auto 16px;
  image-rendering: pixelated;
}

.hero h1 {
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -1.5px;
  margin: 0 0 16px;
  color: var(--text);
  text-transform: lowercase;
}

.tagline {
  font-size: 20px;
  color: var(--text);
  margin: 0 auto 16px;
  max-width: 480px;
}

.meta {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin: 0;
}

/* Signup form */
.signup {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 48px;
}

#signup-form {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

@media (max-width: 520px) {
  #signup-form {
    flex-direction: column;
  }
}

#signup-form input[type="email"] {
  flex: 1;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--text);
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
}

#signup-form input[type="email"]::placeholder {
  color: var(--text-muted);
}

#signup-form input[type="email"]:focus {
  border-color: var(--accent);
}

#signup-form button {
  background: var(--accent);
  color: var(--bg-dark);
  border: none;
  border-radius: 10px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 400;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}

#signup-form button:hover {
  background: var(--accent-strong);
}

#signup-form button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.45;
}

.consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.consent a {
  color: var(--accent);
  text-decoration: underline;
}

.status {
  min-height: 24px;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  display: none;
}

.status.show {
  display: block;
}

.status.success {
  background: rgba(111,191,61,0.12);
  border: 1px solid rgba(111,191,61,0.4);
  color: var(--success);
}

.status.error {
  background: rgba(217,119,6,0.12);
  border: 1px solid rgba(217,119,6,0.4);
  color: var(--error);
}

.status.info {
  background: rgba(168,168,154,0.08);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* O que vai receber */
.o-que-vai-receber {
  margin-bottom: 48px;
}

.o-que-vai-receber h2 {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.5px;
  margin: 0 0 20px;
  color: var(--text);
}

.o-que-vai-receber ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.o-que-vai-receber li {
  font-size: 16px;
  color: var(--text);
  line-height: 1.5;
}

.o-que-vai-receber strong {
  color: var(--accent);
  font-weight: 400;
}

/* Footer */
footer {
  text-align: center;
  padding: 32px 0 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

.copy {
  margin: 12px 0 0;
  font-size: 12px;
}

/* a11y helpers */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
