/* Importou — public landing
   Per ADR-IMP-I-002 § 3 (landing scope).
   Palette loosely echoes atlanteo.ai (ADR-A3-003) for family consistency
   while staying its own surface. */

:root {
    --bg: #fafbfc;
    --ink: #1a2744;
    --ink-soft: #4a5670;
    --accent: #2d5a7b;
    --accent-warm: #3d8b8b;
    --line: #d8dee8;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

main {
    max-width: 560px;
    margin: 0 auto;
    padding: 4rem 1.5rem 3rem;
}

header {
    margin-bottom: 2.5rem;
}

h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--accent), var(--accent-warm));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tagline {
    font-size: 1.15rem;
    color: var(--ink-soft);
    margin: 0;
}

.value {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 1.75rem 0;
    margin: 0 0 2.5rem;
}

.value p {
    margin: 0 0 0.75rem;
    font-size: 1.05rem;
}

.value p:last-child {
    margin-bottom: 0;
    color: var(--accent);
    font-weight: 500;
}

.em-breve {
    font-size: 0.95rem;
    color: var(--ink-soft);
    margin: 0 0 1rem;
}

#lead-form label {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--ink-soft);
}

.row {
    display: flex;
    gap: 0.5rem;
}

.row input {
    flex: 1;
    padding: 0.75rem 0.9rem;
    font-size: 1rem;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: white;
    color: var(--ink);
    font-family: inherit;
}

.row input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(45, 90, 123, 0.15);
}

.row button {
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    background: var(--ink);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s;
}

.row button:hover {
    background: var(--accent);
}

.row button:disabled {
    background: var(--ink-soft);
    cursor: not-allowed;
}

#honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.status {
    margin: 0.75rem 0 0;
    font-size: 0.9rem;
    min-height: 1.4em;
}

.status.ok    { color: var(--accent-warm); }
.status.error { color: #c0392b; }

.consent {
    font-size: 0.85rem;
    color: var(--ink-soft);
    margin: 1.25rem 0 0;
}

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

footer {
    margin-top: 4rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    font-size: 0.85rem;
    color: var(--ink-soft);
}

footer p {
    margin: 0 0 0.25rem;
}

footer a {
    color: var(--accent);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    main { padding: 2.5rem 1.25rem 2rem; }
    h1 { font-size: 1.85rem; }
    .row {
        flex-direction: column;
    }
    .row button {
        width: 100%;
    }
}
