/* Paleta estilo Notion/ChatGPT dark */
:root {
  --bg-dark: #1e1e1e;
  --bg-light: #2c2c2c;
  --text-main: #e5e5e5;
  --text-muted: #9a9a9a;
  --accent: #10b981; /* tom esverdeado elegante */
  --font-main: 'Segoe UI', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.6;
}

.container {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
}

header {
  background-color: var(--bg-light);
  padding: 3rem 0;
  text-align: center;
  border-bottom: 1px solid #333;
}

header h1 {
  font-size: 2.5rem;
  color: var(--accent);
}

header p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.intro h2,
.services h2,
.cta h2 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.intro p,
.cta p {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 2rem;
}

.services ul {
  list-style: none;
  padding-left: 1rem;
}

.services li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: var(--text-main);
  position: relative;
}

.services li::before {
  content: "•";
  color: var(--accent);
  position: absolute;
  left: -1rem;
}

.btn {
  display: inline-block;
  background-color: var(--accent);
  color: #000;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}


.btn:hover {
  background-color: #0f9c6e;
}

footer {
  text-align: center;
  padding: 2rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
