/*
Theme Name: SuperSimples
Author: ChatGPT
Description: Tema WordPress minimalista inspirado em ericmigi.com
Version: 1.11.1
*/

:root {
  --bg: #ffffff;
  --text: #000000;
  --link: #1a7f37;
  --border: #000000;
}

body.dark {
  --bg: #0e0e0e;
  --text: #ffffff;
  --link: #2ecc71;
  --border: #444;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

.container {
  max-width: 900px;
  margin: auto;
  padding: 28px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}

header h1 a {
  color: var(--text);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.theme-toggle {
  cursor: pointer;
  font-size: 20px;
}

.search-form {
  position: relative;
}

.search-form input[type="search"] {
  border: 1px solid var(--border);
  background: transparent;
  padding: 4px 6px 4px 22px;
  font-size: 14px;
  width: 110px;
}

.search-form::before {
  content: "🔍";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  opacity: 0.6;
}

.divider {
  border-bottom: 1px solid var(--border);
  margin: 16px 0 20px;
}

nav ul,
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav li,
.footer-nav li {
  display: inline;
}

nav a,
.footer-nav a {
  margin-right: 18px;
  font-size: 16px;
}

section h2 {
  margin-top: 28px;
  font-size: 26px;
}

.post-list {
  list-style: none;
  padding: 0;
}

.post-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 16px;
}

.post-list li::before {
  content: "■";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 8px;
  color: var(--link);
}

.back-home {
  display: inline-block;
  margin-bottom: 24px;
}

.pagination {
  margin-top: 32px;
}

.pagination a,
.pagination span {
  margin-right: 10px;
}
