/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/app/globals.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #ffffff;
  --bg-accent: #efefef;
  --ink: #1a2a33;
  --muted: #6b7c86;
  --line: #e0e0e0;
  --panel: #efefef;
  --panel-elevated: #efefef;
  --blue: #2c7a41;
  --blue-hover: #246535;
  --blue-soft: #e4f0e7;
  --blue-mid: #35964f;
  --blue-deep: #1f5a30;
  --danger: #2c7a41;
  --shadow: 0 1px 2px rgba(26, 42, 51, 0.04), 0 10px 28px rgba(44, 122, 65, 0.1);
  --shadow-sm: 0 1px 2px rgba(26, 42, 51, 0.05);
  --radius: 16px;
  --radius-sm: 10px;
  --font-sans: "Manrope", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.pageCenter {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--bg);
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.field {
  display: grid;
  grid-gap: 0.4rem;
  gap: 0.4rem;
}

.field label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  background: #efefef;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(44, 122, 65, 0.18);
  background: #efefef;
}

.textarea {
  min-height: 90px;
  resize: vertical;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.btnPrimary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 18px rgba(44, 122, 65, 0.28);
}

.btnPrimary:hover {
  background: var(--blue-hover);
}

.btnGhost {
  background: #efefef;
  border: 1px solid var(--line);
  color: var(--blue-deep);
}

.btnGhost:hover {
  background: var(--blue-soft);
  border-color: #b5d0be;
}

.btnDanger {
  background: #efefef;
  color: var(--blue-deep);
  border: 1px solid var(--line);
}

.btnDanger:hover {
  background: var(--blue-soft);
}

.btnIcon {
  padding: 0.55rem;
  width: 2.25rem;
  height: 2.25rem;
}

.errorText {
  color: var(--blue-deep);
  background: var(--blue-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.formStack {
  display: grid;
  grid-gap: 1rem;
  gap: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: var(--blue-soft);
  color: var(--blue);
}

.badgePendente {
  background: #d8e6d5;
  color: var(--blue-deep);
}

.badgePublicada {
  background: var(--blue);
  color: #fff;
}

.badgeDescartada {
  background: #e8e8e8;
  color: var(--muted);
}

.badgeDuplicata {
  background: #c5d9c1;
  color: var(--blue-deep);
}

.badgeNaoPostado {
  background: #e4f0e7;
  color: var(--blue-deep);
  border: 1px solid #b5d0be;
}

.badgePronta {
  background: #2c7a41;
  color: #fff;
}

