/* ==============================
   SE Intelligence – Base Styles
   Etapa 1
   ============================== */

:root {
  --primary: #0051c3;      /* Cloudflare-ish blue */
  --secondary: #f5f7fa;
  --border: #dcdfe4;
  --text: #1f2933;
  --muted: #6b7280;
  --bg: #ffffff;
}

* {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Oxygen, Ubuntu, Cantarell,
               "Helvetica Neue", Arial, sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--secondary);
  color: var(--text);
}

h1 {
  margin-bottom: 24px;
  font-size: 26px;
  color: var(--primary);
}

.container {
  max-width: 900px;
  margin: 40px auto;
  background: var(--bg);
  padding: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
}

.field {
  display: flex;
  flex-direction: column;
}

select,
input[type="number"],
textarea {
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  background: #fff;
}

textarea {
  min-height: 90px;
  resize: vertical;
}

.products {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.products label {
  font-weight: 500;
}

.products input {
  margin-right: 6px;
}

button {
  margin-top: 20px;
  padding: 12px 20px;
  background-color: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  align-self: flex-start;
}

button:hover {
  background-color: #003f9e;
}

.footer-note {
  margin-top: 24px;
  font-size: 12px;
  color: var(--muted);
}
