/* =================================================
   CANAL #BÍBLIA — TEMA OFICIAL
   Conceito: Leitura Profunda
================================================= */
:root {
  --cb-font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --cb-font-heading: "Fraunces", Georgia, "Times New Roman", serif;

  --cb-text: #222;
  --cb-muted: #555;
  --cb-accent: #4B0082;
  --cb-border: #eee;
  --cb-surface: #fafafa;
}

/* Texto (leitura confortável) */
body {
  margin: 0;
  padding: 0;
  font-family: var(--cb-font-body);
  line-height: 1.75;
  background-color: #ffffff;
  color: var(--cb-text);
}

/* Títulos (editorial) */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--cb-font-heading);
  font-weight: 600;
  color: #111;
  margin-top: 0;
}

/* Ajustes finos para os componentes do seu layout */
.cb-hero__title,
.cb-section__title,
.cb-card__title {
  font-family: var(--cb-font-heading);
}

.cb-hero__subtitle,
.cb-section__text,
.cb-card__text,
.cb-footer__text {
  font-family: var(--cb-font-body);
}

/* Links no acento oficial */
.cb-link,
.cb-nav .cb-menu li a:hover,
.cb-footer__links a:hover {
  color: var(--cb-accent);
}

/* ==============================
   ESTRUTURA BASE
================================ */

.cb-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==============================
   HEADER
================================ */

.cb-header {
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
}

.cb-header__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cb-logo img {
  max-height: 70px;
  height: auto;
}

/* Menu */

.cb-nav .cb-menu {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.cb-nav .cb-menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.cb-nav .cb-menu li a:hover {
  color: #4B0082;
}

/* ==============================
   HOME
================================ */

.cb-home {
  padding-bottom: 24px;
}

/* ==============================
   HERO
================================ */

.cb-hero {
  padding: 72px 0 56px;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
}

.cb-hero__title {
  margin: 0 0 14px 0;
  font-size: 2.6rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 22ch;
}

.cb-hero__subtitle {
  margin: 0 0 16px 0;
  max-width: 72ch;
  color: #555;
  font-size: 1.15rem;
  line-height: 1.75;
}

/* ==============================
   SEÇÕES EDITORIAIS
================================ */

.cb-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--cb-border);
}

.cb-section__title {
  margin: 0 0 10px 0;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
}

.cb-section__text {
  margin: 0 0 14px 0;
  max-width: 72ch;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ==============================
   LINKS (estilo editorial)
================================ */

.cb-link {
  color: #4B0082;
  text-decoration: none;
  font-weight: 600;
}

.cb-link:hover {
  text-decoration: underline;
}

.cb-link--primary {
  display: inline-block;
  margin-top: 6px;
}

/* ==============================
   GRID DE ESTUDOS
================================ */

.cb-grid {
  margin-top: 18px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cb-card {
  display: block;
  padding: 18px 18px 16px;
  border: 1px solid #eee;
  border-radius: 16px;
  background-color: #ffffff;
  text-decoration: none;
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.cb-card:hover {
  transform: translateY(-2px);
  border-color: #ddd;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.cb-card__title {
  margin: 0 0 8px 0;
  font-size: 1.15rem;
  color: #111;
  letter-spacing: -0.01em;
}

.cb-card__text {
  margin: 0;
  color: #555;
  line-height: 1.7;
}

/* ==============================
   CITAÇÃO / RESPIRO
================================ */

.cb-quote {
  padding: 56px 0;
  background-color: var(--cb-surface);
}

.cb-quote__box {
  margin: 0;
  border-left: 4px solid var(--cb-accent);
  padding: 18px 18px 18px 16px;
  border-radius: 12px;
  background-color: #ffffff;
}

.cb-quote__text {
  margin: 0 0 10px 0;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #222;
}

.cb-quote__ref {
  margin: 0;
  color: #666;
  font-weight: 600;
}

/* ==============================
   FOOTER
================================ */

.cb-footer {
  background-color: #fafafa;
  border-top: 1px solid #eee;
  margin-top: 48px;
}

.cb-footer__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
}

.cb-footer__text {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
}

.cb-footer__links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cb-footer__links a {
  text-decoration: none;
  color: #333;
}

.cb-footer__links a:hover {
  color: #4B0082;
}

/* ==============================
   RESPONSIVO
================================ */

@media (max-width: 900px) {
  .cb-grid {
    grid-template-columns: 1fr;
  }

  .cb-hero__title {
    font-size: 2.1rem;
  }

  .cb-header__container {
    flex-direction: column;
    gap: 12px;
  }
}

/* =================================================
   POLIMENTO EDITORIAL (premium)
================================================= */

/* Ritmo vertical mais “revista” */
.cb-hero {
  padding: 84px 0 64px;
}

.cb-section {
  padding: 64px 0;
}

/* Hierarquia tipográfica real */
.cb-hero__title {
  font-weight: 700; /* Fraunces fica linda mais pesada no H1 */
  font-size: 3.05rem;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.cb-hero__subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--cb-muted);
}

.cb-section__title {
  font-size: 2.05rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.cb-section__text {
  font-size: 1.08rem;
  line-height: 1.85;
}

/* Cards mais “premium” */
.cb-card {
  border-radius: 18px;
  padding: 20px 20px 18px;
}

.cb-card__title {
  font-size: 1.22rem;
  line-height: 1.25;
}

.cb-card__text {
  line-height: 1.8;
}

/* Menu mais elegante */
.cb-nav .cb-menu li a {
  font-weight: 600;
  letter-spacing: -0.01em;
}

.cb-nav .cb-menu {
  gap: 28px;
}

/* Melhor foco de teclado (acessibilidade + cara de produto) */
.cb-link:focus,
.cb-nav .cb-menu li a:focus,
.cb-footer__links a:focus,
.cb-card:focus {
  outline: 2px solid rgba(75, 0, 130, 0.35);
  outline-offset: 3px;
  border-radius: 10px;
}

/* Responsivo mais suave */
@media (max-width: 900px) {
  .cb-hero {
    padding: 72px 0 56px;
  }

  .cb-hero__title {
    font-size: 2.35rem;
  }

  .cb-section__title {
    font-size: 1.8rem;
  }
}
/* ==============================
   FIX HEADER (menu + logo)
================================ */

.cb-header {
  width: 100%;
}

.cb-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cb-logo img {
  max-width: 140px;
  width: auto;
  height: auto;
  display: block;
}

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

.cb-nav li {
  list-style: none;
}

