:root {
  --ink: #2d2440;
  --white: #fff;
  --btn: #6f56a8;
  --btn-hover: #8b74d2;
  --glow: rgba(187, 165, 255, 0.55);
  /* Alinhado à Coming Soon (page-coming-soon.php): Nunito em todo o site público */
  --tb-font-sans: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html,
body {
  margin: 0 !important;
  padding: 0
}

body {
  font-family: var(--tb-font-sans);
  color: var(--ink);
  background: #f7f5ff;
}

.tb-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px
}

.tb-site-header,
.tb-site-footer {
  background: #fff;
  border-bottom: 1px solid #ece8ff
}

.tb-site-footer {
  border-top: 1px solid #ece8ff;
  border-bottom: none;
  padding: 10px 0
}

.tb-logo {
  font-weight: 800;
  text-decoration: none;
  color: var(--ink);
}

.tb-nav ul,
.tb-nav .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 14px;
}

.tb-nav a {
  text-decoration: none;
  font-weight: 700
}

.tb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px
}

.tb-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(51, 39, 75, .08)
}

.tb-card__thumb img {
  display: block;
  width: 100%;
  height: auto
}

.tb-card__content {
  padding: 14px
}

.tb-card__title {
  margin: .2rem 0 .4rem;
  font-weight: 800;
  font-size: 1.1rem
}

.tb-pagination {
  display: flex;
  justify-content: center;
  padding: 20px;
}

/* ===== Páginas e posts (conteúdo único) – padrão TokkiBuddy ===== */
.tb-page-wrap,
.tb-single-wrap {
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
}

.tb-content-area {
  max-width: 52em;
  margin: 0 auto;
  width: 100%;
}

.tb-page-header,
.tb-single-header {
  margin-bottom: 1rem;
}

.tb-page-title,
.tb-single-title {
  margin: 0 0 0.25rem;
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
}

.tb-single-meta {
  font-size: 0.9rem;
  opacity: 0.85;
}

.tb-single-meta a {
  color: var(--ink);
  text-decoration: none;
}

.tb-single-meta a:hover {
  text-decoration: underline;
}

.tb-single-thumb {
  margin-bottom: 1.25rem;
  border-radius: 12px;
  overflow: hidden;
}

.tb-single-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.tb-page-body,
.tb-single-body {
  line-height: 1.65;
}

.tb-page-body h2,
.tb-single-body h2 {
  margin: 1.5em 0 0.5em;
  font-size: 1.25rem;
  font-weight: 700;
}

.tb-page-body h3,
.tb-single-body h3 {
  margin: 1.2em 0 0.4em;
  font-size: 1.1rem;
  font-weight: 700;
}

.tb-page-body p,
.tb-single-body p {
  margin-bottom: 1em;
}

.tb-page-body ul,
.tb-single-body ul {
  margin-bottom: 1em;
  padding-left: 1.5em;
}

.tb-page-body table,
.tb-single-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
}

.tb-page-body table th,
.tb-page-body table td,
.tb-single-body table th,
.tb-single-body table td {
  border: 1px solid #e0dce8;
  padding: 0.5em 0.75em;
  text-align: left;
}

.tb-page-body table th,
.tb-single-body table th {
  background: #f5f3ff;
  font-weight: 700;
}

/* Botão no padrão TokkiBuddy (Coming Soon / caravanas) */
.tb-btn {
  --glow: rgba(187, 165, 255, 0.55);
  background: linear-gradient(90deg, var(--btn, #6f56a8), var(--btn-hover, #8b74d2));
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.2px;
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow:
    0 10px 22px rgba(111, 86, 168, 0.32),
    0 0 0 2px rgba(255, 255, 255, 0.9),
    0 0 24px var(--glow);
  transition: 0.18s transform ease, 0.18s box-shadow ease, 0.18s filter ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.tb-btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow:
    0 14px 28px rgba(111, 86, 168, 0.42),
    0 0 0 2px rgba(255, 255, 255, 0.95),
    0 0 30px var(--glow);
}

.tb-caravana-meta {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid #ece8ff;
}

.tb-caravana-organizer {
  margin: 0 0 0.75rem;
}

.tb-caravana-organizer strong {
  margin-right: 0.35em;
}

.tb-caravana-whatsapp {
  margin: 0;
}