/* Blog do Prof. Leandro Filho — estilo mínimo, mobile-first, rápido */

:root {
  --azul: #1a4f8b;         /* paleta corfisica */
  --azul-claro: #eaf1f9;
  --texto: #222;
  --texto-suave: #555;
  --fundo: #fff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--texto);
  background: var(--fundo);
  line-height: 1.65;
  font-size: 17px;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.2rem;
}

.site-header {
  border-bottom: 2px solid var(--azul);
  background: var(--azul-claro);
}

.site-nav {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.2rem 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
  font-size: 0.95rem;
}

.site-title {
  display: block;
  max-width: 720px;
  margin: 0 auto;
  padding: 0.9rem 1.2rem;
  color: var(--azul);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.15rem;
}

.site-footer {
  border-top: 1px solid #ddd;
  color: var(--texto-suave);
  text-align: center;
  padding: 1.2rem;
  font-size: 0.9rem;
}

.newsletter-box {
  max-width: 480px;
  margin: 0 auto 1.6rem;
  padding: 1.2rem;
  background: var(--azul-claro);
  border: 1px solid var(--azul);
  border-radius: 10px;
}

h1 { font-size: 1.7rem; line-height: 1.25; color: var(--azul); }
h2 { font-size: 1.3rem; line-height: 1.3; }
h3 { font-size: 1.1rem; }

a { color: var(--azul); }

.breadcrumb { font-size: 0.85rem; color: var(--texto-suave); }
.post-meta { color: var(--texto-suave); font-size: 0.9rem; }

.post-list { list-style: none; padding: 0; }
.post-list li {
  border-bottom: 1px solid #e5e5e5;
  padding: 1rem 0;
}
.post-list h2 { margin: 0 0 0.3rem; }

blockquote {
  margin: 1rem 0;
  padding: 0.6rem 1rem;
  border-left: 4px solid var(--azul);
  background: var(--azul-claro);
}

img { max-width: 100%; height: auto; }

/* CTA de página de vendas dentro do post */
.cta {
  display: block;
  margin: 1.6rem auto;
  padding: 0.9rem 1.4rem;
  background: var(--azul);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  font-size: 1.05rem;
}

code, pre { font-size: 0.9em; background: #f4f4f4; }
pre { overflow-x: auto; padding: 0.8rem; }
