/*
Theme Name: Independent Theme
Author: Leandro Souza
Description: Tema moderno, responsivo e acessível com estilos visuais personalizáveis.
Version: 2.5.0
Requires at least: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: independent-theme
Tags: blog, news, one-column, two-columns, custom-logo, custom-menu, featured-images, accessibility-ready, responsive-layout
*/

/* Fontes via Google Fonts — Inter (sans) + Montserrat (display) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@700;800;900&display=swap');

:root {
  --primary-color: #273046;
  --accent-color: #F6AD55;
  --on-accent: #1a1200;
  --bg-light: #F5F7FA;
  --card-bg: #FFFFFF;
  --link-color: #2B6CB0;
  --font-main: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-title: var(--font-main);
  --text-color: #1e2532;
  --muted-text: #5a6476;
  --border-color: #dde3ec;
  --focus-ring: 3px solid var(--accent-color);
  --logo-max-width: 220px;
  --logo-max-height: 120px;
  --logo-scale: 1;
  --transition-fast: 0.22s ease;
  --transition-slow: 0.5s ease;
  --gold-color: #D4AF37;
  --silver-color: #C0C0C0;
  --rose-color: #E6C1C1;
  --header-bg: var(--primary-color);
  --header-fg: #ffffff;
  --header-muted: rgba(255,255,255,0.78);
  --header-border: rgba(255,255,255,0.14);
  --header-title-color: #ffffff;
  --header-input-bg: rgba(255,255,255,0.08);
  --header-input-border: rgba(255,255,255,0.25);
  /* Espaçamento global */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 2.75rem;
  --space-xl: 4rem;
  /* Largura de leitura confortável */
  --prose-max: 72ch;
  /* Raio de borda padrão */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

body {
  font-family: var(--font-main);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
  padding: 0;
  background-color: var(--bg-light);
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color var(--transition-slow), color var(--transition-slow);
}



/* Acessibilidade */
.screen-reader-text, .sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed !important;
  top: -200px !important;
  left: 1rem !important;
  opacity: 0 !important;
  pointer-events: none !important;
  z-index: 10000;
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 1rem !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  width: auto !important;
  height: auto !important;
  padding: 12px 18px !important;
  background: var(--accent-color) !important;
  color: var(--on-accent) !important;
  border: 2px solid var(--on-accent) !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  text-decoration: none !important;
  outline: var(--focus-ring) !important;
  outline-offset: 3px !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4) !important;
}

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

.site-header{
  background-color: var(--header-bg);
  color: var(--header-fg);
  padding: 10px 0 8px;
  border-bottom: 1px solid var(--header-border);
  transition: background-color var(--transition-fast);
}

footer{
  background-color: var(--header-bg);
  color: var(--header-fg);
  padding: 32px 0 20px;
  transition: background-color var(--transition-fast);
}

/* Wrapper do conteúdo: ocupa toda a largura */
.site-content {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: var(--bg-light);
}

.container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  margin: 0;
  padding: 0;
}

.wrap{
  max-width:1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.header-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  width:100%;
}
main {
  flex: 3;
  padding: var(--space-lg) var(--space-lg) var(--space-lg) var(--space-lg);
  background-color: var(--card-bg);
  min-width: 0;
  transition: background-color var(--transition-fast);
}

aside {
  flex: 1;
  padding: var(--space-lg) var(--space-md);
  background-color: var(--bg-light);
  min-width: 240px;
  transition: background-color var(--transition-fast);
}

article, .widget, .footer-widget {
  background-color: var(--card-bg);
  padding: var(--space-md) var(--space-md);
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
  transition: box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.branding {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1 1 auto;
}

.header-search-form{
  display:flex;
  align-items:stretch;
  gap:6px;
}

.header-search-form .search-field{
  height: 44px;
  box-sizing: border-box;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--header-input-border);
  background: var(--header-input-bg);
  color: var(--header-fg);
  font-family: var(--font-main);
  font-size: 0.95rem;
  min-width: 220px;
  max-width: 36vw;
  line-height: 1;
}

.header-search-form .search-field::placeholder{
  color: var(--header-muted);
}

.header-search-form .search-submit{
  height: 44px;
  box-sizing: border-box;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  border: none;
  background: var(--accent-color);
  color: var(--on-accent);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: filter var(--transition-fast);
}

.header-search-form .search-submit:hover,
.header-search-form .search-submit:focus-visible{
  filter: brightness(1.08);
}



.logo img,
img.custom-logo,
.ls-logo {
  width: calc(var(--logo-max-width) * var(--logo-scale)) !important;
  height: auto !important;
  max-width: min(calc(var(--logo-max-width) * var(--logo-scale)), 90vw) !important;
  max-height: min(calc(var(--logo-max-height) * var(--logo-scale)), 35vh) !important;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-fast);
}

.logo img:hover {
  transform: scale(1.05);
}

.site-title .site-name{
  margin: 0;
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.site-title .site-name a{
  color: var(--header-title-color);
  text-decoration: none;
}

.site-title .site-name a:hover,
.site-title .site-name a:focus-visible{
  text-decoration: underline;
}

.site-title .site-description{
  margin: 2px 0 0;
  font-size: 0.95rem;
  color: var(--header-muted);
}

/* Navegação */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5em;
  color: var(--header-fg);
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 8px;

}

.menu-toggle:hover {
  background: rgba(255,255,255,0.14);
}


nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 10px;
}

nav ul li a {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.90);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: background var(--transition-fast), color var(--transition-fast);
}

nav ul li a:hover {
  background: rgba(255,255,255,0.14);
  color: #ffffff;
  text-decoration: none;
}

/* Item ativo do menu */
nav ul li.current-menu-item > a,
nav ul li.current_page_item > a,
nav ul li.current-menu-ancestor > a {
  color: var(--accent-color);
  background: rgba(255,255,255,0.10);
  font-weight: 700;
  border-bottom: 2px solid var(--accent-color);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

/* Ícones sociais */
.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-icons a {
  color: var(--header-fg);
  font-size: 20px;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.social-icons a:hover,


/* Subpáginas */
.child-pages {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

.child-pages-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-color);
  margin: 0 0 16px;
  font-family: var(--font-title);
}

.child-page-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.child-page-list li a {
  display: block;
  padding: 16px 20px;
  background-color: var(--bg-light);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-color);
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  font-weight: 600;
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast), color var(--transition-fast);
}

.child-page-list li.is-current a {
  border-left: 4px solid var(--accent-color);
  padding-left: 16px;
}

.child-page-list li a:hover,
.child-page-list li a:focus-visible {
  background-color: var(--accent-color);
  color: var(--on-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  border-color: var(--accent-color);
  text-decoration: none;
}

/* Paginação */
.pagination {
  margin-top: var(--space-lg);
  text-align: center;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 3px;
  padding: 9px 14px;
  min-width: 42px;
  background-color: var(--card-bg);
  color: var(--link-color);
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  font-weight: 500;
  font-size: 0.95rem;
  transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.pagination .page-numbers:hover,
.pagination .current {
  background-color: var(--accent-color);
  color: var(--on-accent);
  font-weight: 700;
  border-color: var(--accent-color);
}

/* Excerpt */
.excerpt {
  overflow: hidden;
  max-height: 6.4em;
  line-height: 1.6em;
  font-size: 1em;
  color: var(--muted-text);
  margin-bottom: 10px;
  background-color: var(--card-bg);
  position: relative;
  transition: background-color var(--transition-fast);
}

.excerpt p {
  margin: 0 0 1em;
}

.excerpt::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.6em;
  background: linear-gradient(to bottom, transparent, var(--card-bg));
}

/* Botões */
.read-more,
.back-link a {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent-color);
  font-weight: bold;
  text-decoration: none;
  transition: color var(--transition-fast), text-decoration var(--transition-fast);
}

.read-more:hover,
.back-link a:hover {
  text-decoration: underline;
  color: var(--rose-color);
}

/* Posts relacionados */
.related-posts ul.related-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.related-posts li {
  background-color: var(--card-bg);
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.related-posts li:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.related-posts .thumb {
  margin-bottom: 10px;
}

.related-posts .title {
  display: block;
  font-weight: bold;
  color: var(--link-color);
  font-family: var(--font-title);
  transition: color var(--transition-fast);
}

/* Responsivo */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .site-content main {
    padding: var(--space-md) var(--space-sm);
  }

  .site-content aside {
    padding: var(--space-sm);
    border-top: 1px solid var(--border-color);
    border-left: none;
  }

  .header-top{
    flex-direction: column;
    align-items: stretch;
  }

    .header-search-form{
    width: 100%;
  }

  .header-search-form .search-field{
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
  }

  main, aside {
    padding: 15px;
  }

  .branding {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
    margin-bottom: 10px;
  }

  nav ul {
    display: none;
    flex-direction: column;
    gap: 10px;
  }

  nav ul.active {
    display: flex;
  }

  .site-title .site-name {
    font-size: 1.5em;
  }

  .site-title .site-description {
    font-size: 0.9em;
  }

  .child-page-list li a {
    padding: 12px 16px;
    font-size: 0.95em;
  }

  .related-posts ul.related-list {
    grid-template-columns: 1fr;
  }
}

.social-icons {
  text-align: center;
  margin-top: 20px;
}

.social-title {
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: bold;
  font-family: var(--font-title);
  color: var(--header-fg);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: var(--header-fg);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.social-links a:hover,


.site-title .site-name a { color: inherit; text-decoration: none; }
.site-title .site-name a:hover, .site-title .site-name a:focus { text-decoration: underline; }







/* ==========================================================
   Animações — Independent Theme
   Elegantes, sutis, sem exagero.
   Todas respeitam prefers-reduced-motion abaixo.
   ========================================================== */

/* ── Keyframes ── */

/* Entrada suave de baixo para cima */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Entrada suave de cima para baixo (header) */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Entrada suave lateral (sidebar) */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fade simples (elementos gerais) */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Aplicação das animações ── */

/* Header: desce suavemente ao carregar */
.site-header {
  animation: fadeInDown 0.45s ease both;
}

/* Menu principal: itens aparecem em sequência */
.primary-nav {
  animation: fadeIn 0.5s ease 0.2s both;
}

/* Conteúdo principal: sobe suavemente */
main {
  animation: fadeInUp 0.5s ease 0.15s both;
}

/* Sidebar: desliza da direita */
aside {
  animation: fadeInRight 0.5s ease 0.25s both;
}

/* Artigos na listagem: entrada escalonada */
article:nth-child(1) { animation: fadeInUp 0.45s ease 0.10s both; }
article:nth-child(2) { animation: fadeInUp 0.45s ease 0.18s both; }
article:nth-child(3) { animation: fadeInUp 0.45s ease 0.26s both; }
article:nth-child(4) { animation: fadeInUp 0.45s ease 0.34s both; }
article:nth-child(5) { animation: fadeInUp 0.45s ease 0.42s both; }

/* Widgets da sidebar: entrada escalonada */
.widget:nth-child(1) { animation: fadeInRight 0.45s ease 0.20s both; }
.widget:nth-child(2) { animation: fadeInRight 0.45s ease 0.30s both; }
.widget:nth-child(3) { animation: fadeInRight 0.45s ease 0.40s both; }

/* Footer: sobe suavemente */
footer {
  animation: fadeInUp 0.5s ease 0.1s both;
}

/* Botão Buscar: transição de escala no hover — mais vivo */
.header-search-form .search-submit {
  transition: filter var(--transition-fast),
              transform var(--transition-fast),
              background-color var(--transition-fast) !important;
}
.header-search-form .search-submit:hover {
  transform: scale(1.04);
}

/* Logo: hover com escala suave já existia — mantida */

/* Links do menu: sublinhado animado no hover */
.primary-nav .menu a::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
  border-radius: 2px;
}
.primary-nav .menu a:hover::after {
  transform: scaleX(1);
}
/* Item ativo não precisa do pseudo-elemento — já tem border-bottom */
.primary-nav .menu li.current-menu-item > a::after,
.primary-nav .menu li.current_page_item > a::after {
  display: none;
}

/* Cards de posts: sombra e elevação no hover — mais expressivo */
article {
  transition: box-shadow 0.25s ease, transform 0.25s ease,
              background-color var(--transition-fast) !important;
}
article:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
}

/* Skip-link: entrada suave ao receber foco */
.skip-link:focus,
.skip-link:focus-visible {
  animation: fadeInDown 0.2s ease both;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}


/* Header layout refinado (harmonioso e consistente em todos os estilos) */


.branding{
  display:flex;
  align-items:center;
  gap:16px;
  flex: 1 1 auto;
  min-width: 240px;
}

.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex: 0 0 auto;
}

.primary-nav{
  margin-top: 4px;
}

.primary-nav .menu{
  list-style:none;
  padding: 0;
  margin: 0;
  display:flex;
  flex-wrap:wrap;
  gap: 4px;
}

.primary-nav .menu a{
  display:inline-flex;
  align-items:center;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.90);
  text-decoration:none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  line-height: 1;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.primary-nav .menu a:hover {
  background: rgba(255,255,255,0.14);
  color: #ffffff;
  text-decoration: none;
}

/* Foco no menu: sem outline em nenhum browser, incluindo Firefox */
.primary-nav .menu a,
.primary-nav .menu li > a {
  -webkit-tap-highlight-color: transparent;
  outline: 0 !important;
  outline-width: 0 !important;
  outline-offset: 0 !important;
  outline-color: transparent !important;
  outline-style: none !important;
}
.primary-nav .menu a:focus,
.primary-nav .menu li > a:focus {
  outline: 0 !important;
  box-shadow: none !important;
}
.primary-nav .menu a:focus-visible,
.primary-nav .menu li > a:focus-visible {
  outline: 0 !important;
  box-shadow: 0 0 0 2px var(--accent-color);
}

/* Item ativo do menu principal */
.primary-nav .menu li.current-menu-item > a,
.primary-nav .menu li.current_page_item > a,
.primary-nav .menu li.current-menu-ancestor > a {
  color: var(--accent-color);
  background: rgba(255,255,255,0.10);
  font-weight: 700;
  border-bottom: 2px solid var(--accent-color);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

/* Título do site: cor por variável (evita choque entre estilos) */
.site-title .site-name a{
  color: var(--header-title-color);
  font-weight: 800;
  letter-spacing: 0.2px;
}

.site-title .site-description{
  color: var(--header-muted);
}

/* Busca no header */
.header-search{
  display:block;
}

.search-toggle{
  display:none;
  height: 44px;
  box-sizing: border-box;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--header-input-border);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  font-family: var(--font-main);
  font-size: 0.95rem;
  cursor: pointer;
  align-items: center;
  gap: 6px;
}

.header-search-form .search-field{
  min-width: 260px;
  max-width: 40vw;
}

/* Menu toggle harmonizado */
.menu-toggle{
  height: 44px;
  box-sizing: border-box;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--header-input-border);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  font-family: var(--font-main);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.menu-toggle:hover{
  background: rgba(255,255,255,0.14);
}

@media (max-width: 900px){
  .header-search-form .search-field{
    min-width: 180px;
    max-width: 55vw;
  }
}

@media (max-width: 768px){
  .header-actions{
    width: 100%;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .search-toggle{
    display:inline-flex;
  }
  .header-search{
    display:none;
    width:100%;
    margin-top: 8px;
  }
  .header-search.is-open{
    display:block;
  }
  .header-search-form{
    width:100%;
  }
  .header-search-form .search-field{
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  /* Menu recolhido por padrão no mobile — expande ao clicar em "Menu" */
  .primary-nav .menu{
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    margin-top: 8px;
  }
  .primary-nav .menu.active{
    display: flex;
  }
  .primary-nav .menu a{
    padding: 12px 14px;
    border-radius: 8px;
    width: 100%;
  }
}


/* =========================
   Layout do cabeçalho (Personalizador)
   Classes no body: header-layout-left | header-layout-center | header-layout-stacked
   ========================= */
body.header-layout-left .header-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 1rem;
}
body.header-layout-left .branding{
  display:flex;
  align-items:center;
  gap: 1rem;
  min-width: 0;
}
body.header-layout-left .header-actions{
  display:flex;
  align-items:center;
  gap: .75rem;
}

/* Centralizado: branding e ações em coluna, alinhados ao centro */
body.header-layout-center .header-top{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: .75rem;
  text-align:center;
}
body.header-layout-center .branding{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: .5rem;
}
body.header-layout-center .site-title{
  align-items:center;
}
body.header-layout-center .header-actions{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:.75rem;
}

/* Empilhado: logo acima do nome, porém mantém ações à direita no desktop */
body.header-layout-stacked .branding{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap: .25rem;
}
@media (min-width: 720px){
  body.header-layout-stacked .header-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 1rem;
  }
}
@media (max-width: 719px){
  body.header-layout-stacked .header-top{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap: .75rem;
  }
  body.header-layout-stacked .header-actions{
    width:100%;
  }
}


/* =========================
   Estilos de conteúdo (post, página, archive, busca)
   ========================= */

/* Títulos de post/página */
.entry-title {
  font-family: var(--font-title);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-color);
  margin: 0 0 0.6rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.entry-title a {
  color: inherit;
  text-decoration: none;
}

.entry-title a:hover,
.entry-title a:focus-visible {
  color: var(--link-color);
  text-decoration: underline;
}

/* Cabeçalhos de archive/busca */
.archive-header,
.search-header {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--border-color);
}

.archive-title,
.search-header h1 {
  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-color);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.search-header em {
  color: var(--accent-color);
  font-style: normal;
  font-weight: 700;
}

.archive-description {
  color: var(--muted-text);
  font-size: 1rem;
  margin-top: 0.5rem;
  line-height: 1.6;
}

/* Artigo na listagem */
article {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
}

article:last-of-type {
  border-bottom: none;
}

/* Largura de leitura confortável para conteúdo longo */
.post-content,
.page-content {
  max-width: var(--prose-max);
}

/* Página de post individual */
.post-header {
  margin-bottom: 1.5rem;
}

.post-header .entry-title {
  font-size: 2rem;
}

/* Sem resultados / sem posts */
.no-posts,
.no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted-text);
}

.no-posts h2,
.no-results h2 {
  font-size: 1.4rem;
  color: var(--text-color);
  margin-bottom: 0.75rem;
}

/* Links do conteúdo */
.post-content a,
.page-content a {
  color: var(--link-color);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-content a:hover,
.page-content a:hover,
.post-content a:focus-visible,
.page-content a:focus-visible {
  opacity: 0.8;
}

/* Blockquote acessível */
.post-content blockquote,
.page-content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem 1rem 1.5rem;
  border-left: 4px solid var(--accent-color);
  background: var(--bg-light);
  border-radius: 0 8px 8px 0;
  color: var(--muted-text);
  font-style: italic;
}

/* Tabelas acessíveis */
.post-content table,
.page-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin: 1.5rem 0;
}

.post-content th,
.page-content th {
  background: var(--primary-color);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
}

.post-content td,
.page-content td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-color);
}

.post-content tr:nth-child(even) td,
.page-content tr:nth-child(even) td {
  background: var(--bg-light);
}

/* Código inline e blocos */
.post-content code,
.page-content code {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.9em;
  color: var(--text-color);
}

.post-content pre,
.page-content pre {
  background: var(--primary-color);
  color: #e5e7eb;
  border-radius: 8px;
  padding: 1.25rem;
  overflow-x: auto;
  font-size: 0.9em;
  line-height: 1.6;
}

.post-content pre code,
.page-content pre code {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
}

/* Seção de posts relacionados */
.related-posts {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.related-posts h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-color);
  margin: 0 0 1rem;
}

/* Paginação de subpáginas */
.child-pages .wp-pagenavi,
.child-pages .page-links {
  margin-top: 1rem;
}


/* =========================
   Melhorias de Design — v2.1
   Tipografia · Botões · Respiro · Acessibilidade
   ========================= */

/* Tipografia aprimorada */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text-color);
}

.post-content,
.page-content {
  line-height: 1.80;
  font-size: 1.05rem;
  max-width: var(--prose-max);
}

.post-content p,
.page-content p {
  margin-bottom: 1.4em;
}

/* Botão primário — "Ouvir ao vivo" */
.btn-primary,
a.btn-primary,
button.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  background: var(--accent-color);
  color: var(--on-accent);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  border: none;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  transition: filter var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary:hover,
a.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
}



/* Botão secundário — "Acessibilidade" */
.btn-secondary,
a.btn-secondary,
button.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 11px 22px;
  background: transparent;
  color: var(--accent-color);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  border: 2px solid var(--accent-color);
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.btn-secondary:hover,
a.btn-secondary:hover {
  background: var(--accent-color);
  color: var(--on-accent);
}



/* Respiro entre seções de conteúdo */
.entry-header {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border-color);
}

.entry-footer {
  margin-top: var(--space-lg);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-color);
}

/* Cards com mais respiro interno */
.card,
.wp-block-group,
.widget {
  padding: var(--space-md);
  border-radius: var(--radius-md);
}

/* Limite de largura do container principal de texto */
.wrap.single-wrap,
.wrap.page-wrap {
  max-width: calc(var(--prose-max) + 2 * var(--space-lg));
}

/* Search submit e botões de formulário consistentes */
.search-submit,
input[type="submit"] {
  background: var(--accent-color);
  color: var(--on-accent);
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  cursor: pointer;
  transition: filter var(--transition-fast);
}

.search-submit:hover,
input[type="submit"]:hover {
  filter: brightness(1.08);
}

/* Links inline de conteúdo — cor consistente */
.post-content a,
.page-content a {
  color: var(--link-color);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

.post-content a:hover,
.page-content a:hover {
  opacity: 0.80;
}

/* Melhora read-more como botão inline */
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: var(--space-sm);
  padding: 8px 16px;
  background: var(--accent-color);
  color: var(--on-accent);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: filter var(--transition-fast), transform var(--transition-fast);
}

.read-more:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--on-accent);
}

/* Header: menu links levemente menores em desktop para mais itens */
@media (min-width: 769px) {
  .primary-nav .menu a {
    padding: 7px 13px;
    font-size: 0.92rem;
  }
}

/* Mobile: menu items com melhor área de toque */
@media (max-width: 768px) {
  .primary-nav .menu li.current-menu-item > a,
  .primary-nav .menu li.current_page_item > a {
    border-bottom: none;
    border-left: 3px solid var(--accent-color);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding-left: 11px;
  }
  main {
    padding: var(--space-md) var(--space-sm);
  }
}

/* ==========================================================
   Correções pontuais
   ========================================================== */

/* Contraste de texto muted em estilos dark */
body.style-ceuafe      { --muted-text: #4a5a6a; }
body.style-neonpop     { --muted-text: #a8b4c4; }
body.style-vintagecafe { --muted-text: rgba(255,243,220,0.80); }
body.style-campoepaixao{ --muted-text: rgba(249,250,251,0.82); }
body.style-moderno     { --muted-text: rgba(200,185,255,0.92); }

/* ==========================================================
   AJUSTES FINAIS DE ESTILO — v2.3
   ========================================================== */

/* ── Padrão: aside com fundo levemente distinto do main ── */
body:not([class*="style-"]) aside,
body.style-default aside {
  background-color: var(--bg-light);
  border-left: 1px solid var(--border-color);
}

/* ── Todos os estilos: widget/card com borda sutil para não flutuar ── */
.widget,
.footer-widget,
aside .widget {
  border: 1px solid var(--border-color);
}

/* ── Campo e Paixão: borda dos cards levemente verde para integrar ── */
body.style-campoepaixao .widget,
body.style-campoepaixao article,
body.style-campoepaixao aside {
  border-color: rgba(255,255,255,0.10);
}

/* ── Vintage Café: card-bg deve ser perceptível sobre o bg-light ── */
body.style-vintagecafe main,
body.style-vintagecafe .widget,
body.style-vintagecafe article {
  border: 1px solid rgba(212,175,55,0.20);
}

/* ── Tinta & Papel: aside com fundo creme mais escuro ── */
body.style-tintaepapel aside {
  background-color: #e8e2d5;
  border-left: 1px solid #c8c0b0;
}

body.style-tintaepapel main {
  border-right: 1px solid #c8c0b0;
}

/* ── Texto do tema padrão no modo light: cor do link correta ── */
body:not([class*="style-"]) .primary-nav .menu li a,
body.style-default .primary-nav .menu li a {
  color: rgba(255,255,255,0.90) !important;
}

/* ── Neon Pop: borda de cards mais nítida ── */
body.style-neonpop .widget,
body.style-neonpop article,
body.style-neonpop aside {
  border: 1px solid rgba(0,191,255,0.15);
}

/* ── Remove padding duplo no aside mobile ── */
@media (max-width: 768px) {
  aside {
    border-left: none;
    border-top: 1px solid var(--border-color);
    padding: var(--space-sm);
  }
}



/* Footer: container com padding lateral para o texto não encostar na borda */
footer .container {
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

/* ==========================================================
   Estilo Marinelli Drupal
   Visual institucional clássico fiel ao tema Marinelli
   ========================================================== */

/* Bordas mais marcadas entre main e aside — separação clara */
body.style-marinelli main {
  border-right: 1px solid #c8ccd1;
}

body.style-marinelli aside {
  border-left: none;
  background-color: #e8eaf0;
}

/* Sidebar: títulos de widget com borda inferior azul — estilo Marinelli */
body.style-marinelli .widget h3,
body.style-marinelli .widget h2 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #2a4b8d;
  padding-bottom: 6px;
  border-bottom: 2px solid #2a4b8d;
  margin-bottom: 12px;
}

/* Links no conteúdo: azul clássico com underline — idêntico ao Marinelli */
body.style-marinelli .post-content a,
body.style-marinelli .page-content a {
  color: #0645ad;
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.style-marinelli .post-content a:hover,
body.style-marinelli .page-content a:hover {
  color: #2a4b8d;
}

/* Títulos de conteúdo com cor azul-aço */
body.style-marinelli .entry-title,
body.style-marinelli h1,
body.style-marinelli h2,
body.style-marinelli h3 {
  color: #2a4b8d;
}

/* Linha horizontal (hr / separador) mais visível */
body.style-marinelli hr,
body.style-marinelli .wp-block-separator {
  border-color: #c8ccd1;
  border-width: 1px 0 0;
}

/* Paginação com estilo Marinelli */
body.style-marinelli .pagination .page-numbers {
  border-radius: 2px;
  border: 1px solid #c8ccd1;
}

body.style-marinelli .pagination .current,
body.style-marinelli .pagination .page-numbers:hover {
  background-color: #2a4b8d;
  border-color: #2a4b8d;
  color: #ffffff;
}

/* Blockquote com borda esquerda azul */
body.style-marinelli .post-content blockquote,
body.style-marinelli .page-content blockquote {
  border-left-color: #2a4b8d;
  background: #f0f2f7;
  color: #333333;
}

/* Item ativo do menu com underline azul */
body.style-marinelli .primary-nav .menu li.current-menu-item > a,
body.style-marinelli .primary-nav .menu li.current_page_item > a {
  color: #ffffff;
  background: rgba(255,255,255,0.18);
  border-bottom-color: #ffffff;
}

/* Marinelli: botão Buscar com fundo azul-aço */
body.style-marinelli .header-search-form .search-submit {
  background-color: #2a4b8d;
  color: #ffffff;
  border: 1px solid #1e3a6e;
  font-weight: 600;
}

body.style-marinelli .header-search-form .search-submit:hover,
body.style-marinelli .header-search-form .search-submit:focus-visible {
  background-color: #1e3a6e;
  filter: none;
}

/* Marinelli: campo de busca com borda azul sutil */
body.style-marinelli .header-search-form .search-field {
  border: 1px solid #c8ccd1;
  background: rgba(255,255,255,0.12);
  color: #ffffff;
}

body.style-marinelli .header-search-form .search-field::placeholder {
  color: rgba(255,255,255,0.70);
}

/* Marinelli: botão Menu harmonizado */
body.style-marinelli .menu-toggle {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.30);
  color: #ffffff;
}

body.style-marinelli .menu-toggle:hover {
  background: rgba(255,255,255,0.20);
}

/* ==========================================================
   Marinelli Drupal — Estilo completo e definitivo
   Baseado no CSS original do tema Marinelli para Drupal 7
   ========================================================== */

/* ── Fundo do body: azul-marinho escuro fora do container ── */
body.style-marinelli {
  background-color: #17293d;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}

/* ── Container de conteúdo: fundo branco com borda azul ── */
body.style-marinelli .site-content {
  background-color: #ffffff;
  border: 8px solid #054b81;
  border-top: 0;
  box-shadow: 5px 5px 20px #051b32;
}

/* ── Header: azul-aço sólido com sombra de texto ── */
body.style-marinelli .site-header {
  background-color: #054b81;
  border-bottom: 3px solid #17293d;
}

body.style-marinelli .site-title .site-name a {
  color: #ffffff;
  text-decoration: none !important;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-weight: bold;
  text-shadow: rgba(10,10,10,0.4) 2px 3px 3px;
}

body.style-marinelli .site-title .site-description {
  color: rgba(255,255,255,0.85);
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}

/* ── Rodapé: azul-marinho escuro ── */
body.style-marinelli footer {
  background-color: #17293d;
  border-top: 3px solid #054b81;
  color: #ffffff;
}

body.style-marinelli .site-info,
body.style-marinelli .site-info p {
  color: rgba(255,255,255,0.80);
  border-top-color: rgba(255,255,255,0.15);
}

body.style-marinelli .social-title { color: #ffffff; }
body.style-marinelli footer a { color: rgba(255,255,255,0.85); text-decoration: none; }
body.style-marinelli footer a:hover { color: #ffffff; }

/* ── Área de conteúdo principal ── */
body.style-marinelli main {
  background-color: #ffffff;
  border-right: 1px solid #e2e2e2;
}

/* ── Sidebar ── */
body.style-marinelli aside {
  background-color: #f0f2f5;
  border-left: none;
}

body.style-marinelli .widget {
  background-color: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 0 0 5px 5px;
  margin-bottom: 15px;
}

/* Títulos de widget: estilo Marinelli original */
body.style-marinelli .widget h3,
body.style-marinelli .widget h2 {
  font-size: 1em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  background: linear-gradient(to bottom, #5f9ac7, #054b81 40%);
  padding: 6px 10px;
  margin: -1.75rem -1.75rem 1rem -1.75rem;
  border-radius: 5px 5px 0 0;
  border-bottom: none;
  text-shadow: rgba(10,10,10,0.4) 1px 2px 2px;
}

/* ── Menu principal: estilo Marinelli original ── */
body.style-marinelli .primary-nav .menu a {
  color: #ffffff !important;
  text-decoration: none !important;
  background: linear-gradient(to bottom, #7ab0d4, #156aa3 40%);
  border-radius: 5px 5px 0 0;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.92rem;
  text-shadow: rgba(10,10,10,0.4) 1px 2px 2px;
}

body.style-marinelli .primary-nav .menu a:hover {
  background: linear-gradient(to bottom, #f4d7ba, #f97e05 40%) !important;
  color: #ffffff !important;
}

/* Item ativo: azul mais escuro */
body.style-marinelli .primary-nav .menu li.current-menu-item > a,
body.style-marinelli .primary-nav .menu li.current_page_item > a {
  background: linear-gradient(to bottom, #5f9ac7, #054b81 40%) !important;
  color: #ffffff !important;
  border-bottom: none !important;
  font-weight: bold !important;
}

/* ── Campo de busca: estilo Marinelli original ── */
body.style-marinelli .header-search-form .search-field {
  background-color: #156aa3;
  border: 4px solid #ffffff;
  color: #ffffff;
  font-size: 1rem;
  border-radius: 5px;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}

body.style-marinelli .header-search-form .search-field::placeholder {
  color: rgba(255,255,255,0.75);
}

body.style-marinelli .header-search-form .search-field:focus {
  background-color: #054b81;
  outline: none;
}

/* ── Botão Buscar: estilo Marinelli original ── */
body.style-marinelli .header-search-form .search-submit {
  background-color: #054b81;
  border: 4px solid #ffffff;
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1rem;
  border-radius: 5px;
  filter: none;
}

body.style-marinelli .header-search-form .search-submit:hover,
body.style-marinelli .header-search-form .search-submit:focus-visible {
  background-color: #f97e05;
  border-color: #f97e05;
  filter: none;
}

/* ── Botão Menu (mobile) ── */
body.style-marinelli .menu-toggle {
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.40);
  color: #ffffff;
}

/* ── Tipografia e links: Marinelli original ── */
body.style-marinelli {
  color: #333333;
}

body.style-marinelli a {
  color: #156aa3;
  text-decoration: underline;
}

body.style-marinelli a:hover {
  color: #163e55;
}

body.style-marinelli a:active {
  color: #f97e05;
}

/* Links no header/menu: brancos */
body.style-marinelli .site-header a,
body.style-marinelli .primary-nav a {
  color: #ffffff;
  text-decoration: none;
}

/* ── Títulos de conteúdo ── */
body.style-marinelli h1,
body.style-marinelli h2,
body.style-marinelli h3,
body.style-marinelli h4 {
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-weight: normal;
  color: #333333;
}

body.style-marinelli .entry-title {
  color: #054b81;
  font-weight: bold;
}

/* H2 e H3 com borda inferior cinza — estilo original */
body.style-marinelli h2,
body.style-marinelli h3 {
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 5px;
  text-transform: none;
  letter-spacing: normal;
}

/* ── Blockquote ── */
body.style-marinelli .post-content blockquote,
body.style-marinelli .page-content blockquote {
  border-left: 4px solid #156aa3;
  background: #f0f4f8;
  color: #555555;
  border-radius: 0 5px 5px 0;
}

/* ── Faixas alternadas nas listas de artigos ── */
body.style-marinelli article:nth-child(even) {
  background-color: #f5f7fa;
}

body.style-marinelli article:nth-child(odd) {
  background-color: #ffffff;
}

/* ── Separadores ── */
body.style-marinelli article {
  border-bottom-color: #e2e2e2;
}

body.style-marinelli .site-content {
  border-top: 0;
}

/* ── Paginação ── */
body.style-marinelli .pagination .page-numbers {
  border-radius: 3px;
  border: 1px solid #c8ccd1;
  color: #156aa3;
}

body.style-marinelli .pagination .current,
body.style-marinelli .pagination .page-numbers:hover {
  background: linear-gradient(to bottom, #7ab0d4, #156aa3 40%);
  border-color: #156aa3;
  color: #ffffff;
}

/* ── Read more como link simples ── */
body.style-marinelli .read-more {
  background: none;
  color: #156aa3;
  text-decoration: underline;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  font-weight: normal;
  font-size: 0.95rem;
}

body.style-marinelli .read-more:hover {
  color: #163e55;
  transform: none;
  filter: none;
}

/* ── Logo: sem bordas ── */
body.style-marinelli .logo img,
body.style-marinelli img.custom-logo,
body.style-marinelli .custom-logo-link,
body.style-marinelli .custom-logo-link:focus,
body.style-marinelli a.custom-logo-link {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

body.style-marinelli .site-header figure,
body.style-marinelli .site-header .wp-block-image,
body.style-marinelli .logo {
  border: none !important;
  outline: none !important;
}

/* Skip-link: proteção absoluta em todos os estilos escuros */
body[class*="style-"] .skip-link {
  opacity: 0 !important;
  color: transparent !important;
  background: transparent !important;
  border-color: transparent !important;
  pointer-events: none !important;
}

body[class*="style-"] .skip-link:focus,
body[class*="style-"] .skip-link:focus-visible {
  opacity: 1 !important;
  color: var(--on-accent) !important;
  background: var(--accent-color) !important;
  border-color: var(--on-accent) !important;
  pointer-events: auto !important;
}

/* ==========================================================
   Correções visuais por estilo — separação de áreas
   ========================================================== */

/* ── Neon Pop: magenta + ciano — energia de rádio jovem ── */
body.style-neonpop main {
  background-color: #12122a;
  border-right: 1px solid rgba(255,45,120,0.20);
}
body.style-neonpop aside {
  background-color: #0a0a1a;
  border-left: 1px solid rgba(255,45,120,0.15);
}
body.style-neonpop .widget {
  background-color: #12122a;
  border: 1px solid rgba(255,45,120,0.20);
}
body.style-neonpop .site-content {
  border-left: 1px solid rgba(255,45,120,0.10);
  border-right: 1px solid rgba(255,45,120,0.10);
}

/* ── Vintage Café: versão clara — creme e marrom ── */
body.style-vintagecafe main {
  background-color: #fffaf3;
  border-right: 1px solid rgba(139,94,26,0.15);
}
body.style-vintagecafe aside {
  background-color: #ede5d8;
  border-left: none;
}
body.style-vintagecafe .widget {
  background-color: #fffaf3;
  border: 1px solid rgba(139,94,26,0.18);
}

/* ── Campo e Paixão: versão clara — verde e branco ── */
body.style-campoepaixao main {
  background-color: #ffffff;
  border-right: 1px solid rgba(13,51,24,0.12);
}
body.style-campoepaixao aside {
  background-color: #e0efe3;
  border-left: none;
}
body.style-campoepaixao .widget {
  background-color: #ffffff;
  border: 1px solid rgba(13,51,24,0.12);
}

/* ── Céu e Fé: distinção suave com borda dourada ── */
body.style-ceuafe main {
  background-color: #ffffff;
  border-right: 1px solid rgba(201,168,76,0.20);
}
body.style-ceuafe aside {
  background-color: #ddeaf8;
  border-left: none;
}
body.style-ceuafe .widget {
  background-color: #ffffff;
  border: 1px solid rgba(26,58,92,0.12);
}

/* ── Tinta & Papel: borda marrom entre áreas ── */
body.style-tintaepapel main {
  background-color: #fdfaf4;
  border-right: 1px solid #c8c0b0;
}
body.style-tintaepapel aside {
  background-color: #ede8dd;
  border-left: none;
}
body.style-tintaepapel .widget {
  background-color: #fdfaf4;
  border: 1px solid #c8c0b0;
}

/* ── Padrão: separação limpa ── */
body:not([class*="style-"]) main,
body.style-default main {
  border-right: 1px solid var(--border-color);
}
body:not([class*="style-"]) aside,
body.style-default aside {
  border-left: none;
  background-color: var(--bg-light);
}

/* Vintage Café: remove borda da logo que aparece no header */
body.style-vintagecafe .logo img,
body.style-vintagecafe img.custom-logo,
body.style-vintagecafe .custom-logo-link,
body.style-vintagecafe .custom-logo-link img,
body.style-vintagecafe a.custom-logo-link {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

body.style-vintagecafe .site-header figure,
body.style-vintagecafe .site-header .logo,
body.style-vintagecafe .branding figure {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Campo e Paixão: mesma correção */
body.style-campoepaixao .logo img,
body.style-campoepaixao img.custom-logo,
body.style-campoepaixao .custom-logo-link,
body.style-campoepaixao .custom-logo-link img,
body.style-campoepaixao a.custom-logo-link,
body.style-campoepaixao .site-header figure,
body.style-campoepaixao .site-header .logo {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* ==========================================================
   ⚡ MODERNO — Vibrante & Contemporâneo
   Glassmorphism · Gradientes · Glow · Animações com caráter
   ========================================================== */

/* ── Keyframes exclusivos do estilo Moderno ── */

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(0,245,212,0.3), 0 0 20px rgba(0,245,212,0.1); }
  50%       { box-shadow: 0 0 16px rgba(0,245,212,0.6), 0 0 40px rgba(0,245,212,0.2); }
}

@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}

@keyframes borderGlow {
  0%, 100% { border-color: rgba(0,245,212,0.3); }
  50%       { border-color: rgba(199,125,255,0.6); }
}

/* ── Body e fundo ── */
body.style-moderno {
  background: radial-gradient(ellipse at 20% 50%, #1a0a2e 0%, #0a0818 60%);
  background-attachment: fixed;
}

/* ── Header com gradiente animado ── */
body.style-moderno .site-header {
  background: linear-gradient(135deg, #0f0c29, #1a0a3e, #0d1b3e, #0f0c29);
  background-size: 300% 300%;
  animation: fadeInDown 0.45s ease both, gradientShift 8s ease infinite;
  border-bottom: 1px solid rgba(0,245,212,0.25);
  box-shadow: 0 4px 30px rgba(0,245,212,0.08);
}

/* Nome do site com gradiente de texto */
body.style-moderno .site-title .site-name a {
  background: linear-gradient(90deg, #ffffff, #00f5d4, #c77dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none !important;
}

body.style-moderno .site-title .site-description {
  color: rgba(0,245,212,0.80);
  font-size: 0.88rem;
  letter-spacing: 0.05em;
}

/* ── Menu com efeito moderno ── */
body.style-moderno .primary-nav .menu a {
  color: rgba(240,238,255,0.95) !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.03em !important;
  border-radius: 10px !important;
  transition: background 0.22s ease, color 0.22s ease,
              box-shadow 0.22s ease !important;
}

body.style-moderno .primary-nav .menu a:hover {
  background: rgba(0,245,212,0.12) !important;
  color: #00f5d4 !important;
  box-shadow: 0 0 12px rgba(0,245,212,0.20) !important;
}

body.style-moderno .primary-nav .menu li.current-menu-item > a,
body.style-moderno .primary-nav .menu li.current_page_item > a {
  color: #00f5d4 !important;
  background: rgba(0,245,212,0.10) !important;
  border-bottom: 2px solid #00f5d4 !important;
  border-radius: 10px 10px 0 0 !important;
  font-weight: 700 !important;
}

/* ── Busca ── */
body.style-moderno .header-search-form .search-field {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(0,245,212,0.30) !important;
  color: #f0eeff !important;
  border-radius: 10px !important;
  backdrop-filter: blur(4px);
}

body.style-moderno .header-search-form .search-field::placeholder {
  color: rgba(0,245,212,0.50) !important;
}

body.style-moderno .header-search-form .search-submit {
  background: linear-gradient(135deg, #00f5d4, #00b4d8) !important;
  color: #0a0818 !important;
  border: none !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

body.style-moderno .header-search-form .search-submit:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 0 20px rgba(0,245,212,0.50) !important;
  filter: none !important;
}

/* ── Área de conteúdo ── */
body.style-moderno .site-content {
  background: transparent;
}

body.style-moderno main {
  background: rgba(26,21,53,0.85);
  backdrop-filter: blur(12px);
  border-right: 1px solid rgba(199,125,255,0.15);
}

body.style-moderno aside {
  background: rgba(15,12,41,0.90);
  border-left: 1px solid rgba(0,245,212,0.12);
}

/* ── Cards / artigos com glassmorphism ── */
body.style-moderno article,
body.style-moderno .widget {
  background: rgba(255,255,255,0.05) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border: 1px solid rgba(199,125,255,0.25) !important;
  border-radius: 20px !important;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.40),
    0 2px 8px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.10),
    inset 0 -1px 0 rgba(0,245,212,0.06) !important;
  transition: transform 0.28s ease, box-shadow 0.28s ease,
              border-color 0.28s ease !important;
  position: relative;
  overflow: hidden;
}

/* Efeito shimmer no hover dos cards */
body.style-moderno article::before,
body.style-moderno .widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255,255,255,0.04) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: none;
  pointer-events: none;
}

body.style-moderno article:hover::before,
body.style-moderno .widget:hover::before {
  animation: shimmer 0.7s ease forwards;
}

body.style-moderno article:hover,
body.style-moderno .widget:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(0,245,212,0.40) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.40),
              0 0 20px rgba(0,245,212,0.12) !important;
}

/* ── Títulos ── */
body.style-moderno h1,
body.style-moderno h2,
body.style-moderno h3,
body.style-moderno .entry-title {
  font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  /* Gradiente de texto em todos os títulos — com ou sem link */
  background: linear-gradient(90deg, #ffffff, #c77dff, #00f5d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.style-moderno .entry-title a {
  background: linear-gradient(90deg, #f0eeff, #c77dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

body.style-moderno .entry-title a:hover {
  background: linear-gradient(90deg, #00f5d4, #c77dff);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ── Títulos de widget com gradiente ── */
body.style-moderno .widget h3,
body.style-moderno .widget h2 {
  background: linear-gradient(90deg, #00f5d4, #c77dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(0,245,212,0.25);
  padding-bottom: 8px;
  margin-bottom: 1rem;
}

/* ── Links ── */
body.style-moderno a {
  color: #c77dff;
  text-decoration: none;
  transition: color 0.2s ease;
}

body.style-moderno a:hover {
  color: #00f5d4;
}

body.style-moderno .post-content a,
body.style-moderno .page-content a {
  color: #c77dff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Blockquote estilo moderno ── */
body.style-moderno .post-content blockquote,
body.style-moderno .page-content blockquote {
  border-left: 3px solid #00f5d4;
  background: rgba(0,245,212,0.05);
  border-radius: 0 12px 12px 0;
  color: rgba(240,238,255,0.85);
  box-shadow: inset 0 0 20px rgba(0,245,212,0.04);
}

/* ── Botão read-more ── */
body.style-moderno .read-more {
  background: linear-gradient(135deg, #00f5d4, #00b4d8) !important;
  color: #0a0818 !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  box-shadow: 0 0 15px rgba(0,245,212,0.30) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

body.style-moderno .read-more:hover {
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow: 0 0 25px rgba(0,245,212,0.50) !important;
  filter: none !important;
  color: #0a0818 !important;
}

/* ── Paginação ── */
body.style-moderno .pagination .page-numbers {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(199,125,255,0.25);
  border-radius: 10px;
  color: #c77dff;
  backdrop-filter: blur(4px);
}

body.style-moderno .pagination .current,
body.style-moderno .pagination .page-numbers:hover {
  background: linear-gradient(135deg, #00f5d4, #00b4d8);
  color: #0a0818;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(0,245,212,0.40);
}

/* ── Footer ── */
body.style-moderno footer {
  background: linear-gradient(135deg, #0f0c29, #0a0818);
  border-top: 1px solid rgba(0,245,212,0.15);
  box-shadow: 0 -4px 30px rgba(0,245,212,0.05);
}

body.style-moderno .site-info,
body.style-moderno .site-info p {
  color: rgba(200,180,255,0.65);
  border-top-color: rgba(0,245,212,0.10);
}

body.style-moderno footer a {
  color: rgba(0,245,212,0.80);
  text-decoration: none;
}

body.style-moderno footer a:hover {
  color: #00f5d4;
}

body.style-moderno .social-title {
  color: #f0eeff;
}

body.style-moderno .social-links a {
  color: rgba(200,180,255,0.80);
  transition: color 0.2s ease, transform 0.2s ease;
}

body.style-moderno .social-links a:hover {
  color: #00f5d4;
  transform: scale(1.15);
}

/* ── Menu toggle ── */
body.style-moderno .menu-toggle {
  background: rgba(0,245,212,0.08) !important;
  border: 1px solid rgba(0,245,212,0.30) !important;
  color: #f0eeff !important;
}

body.style-moderno .menu-toggle:hover {
  background: rgba(0,245,212,0.18) !important;
}

/* ── Animações especiais do Moderno ── */

/* Logo flutua sutilmente */
body.style-moderno .logo img,
body.style-moderno img.custom-logo {
  animation: floatUp 4s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(0,245,212,0.25));
}

/* Widgets pulsam com glow */
body.style-moderno .widget {
  animation: glowPulse 4s ease-in-out infinite;
}

/* Borda dos artigos alterna entre ciano e violeta */
body.style-moderno article {
  animation: borderGlow 5s ease-in-out infinite;
}

/* Escalonamento diferente para cada widget */
body.style-moderno .widget:nth-child(1) { animation-delay: 0s; }
body.style-moderno .widget:nth-child(2) { animation-delay: 1s; }
body.style-moderno .widget:nth-child(3) { animation-delay: 2s; }

/* Escalonamento dos artigos */
body.style-moderno article:nth-child(1) { animation-delay: 0s; }
body.style-moderno article:nth-child(2) { animation-delay: 0.8s; }
body.style-moderno article:nth-child(3) { animation-delay: 1.6s; }
body.style-moderno article:nth-child(4) { animation-delay: 2.4s; }

/* ── Separação visual entre main e aside ── */
body.style-moderno main {
  border-right: 1px solid rgba(199,125,255,0.12);
}

/* ── Logo sem bordas ── */
body.style-moderno .custom-logo-link,
body.style-moderno a.custom-logo-link {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* ==========================================================
   Moderno — Refinamentos v2
   ========================================================== */

/* Linha de brilho no topo dos widgets — detalhe premium */
body.style-moderno .widget::after {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(0,245,212,0.60),
    rgba(199,125,255,0.60),
    transparent
  );
  border-radius: 50%;
  pointer-events: none;
}

/* Hover dos widgets mais expressivo */
body.style-moderno .widget:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(0,245,212,0.50) !important;
  box-shadow:
    0 16px 48px rgba(0,0,0,0.50),
    0 0 30px rgba(0,245,212,0.15),
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -1px 0 rgba(0,245,212,0.08) !important;
}

/* Título "Início" e outros h1 sem link — gradiente direto */
body.style-moderno h1.entry-title:not(:has(a)),
body.style-moderno .entry-title:not(:has(a)) {
  background: linear-gradient(90deg, #ffffff 20%, #c77dff 60%, #00f5d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Aside com glassmorphism mais suave */
body.style-moderno aside {
  background: rgba(10,8,24,0.75) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}

/* Main com glassmorphism elegante */
body.style-moderno main {
  background: rgba(26,21,53,0.80) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

/* Texto do conteúdo mais legível */
body.style-moderno .post-content p,
body.style-moderno .page-content p,
body.style-moderno .post-content li,
body.style-moderno .page-content li {
  color: rgba(240,238,255,0.90);
  line-height: 1.75;
}

/* Listas com marcador em ciano */
body.style-moderno .post-content ul li::marker,
body.style-moderno .page-content ul li::marker {
  color: #00f5d4;
}

/* Separadores horizontais com gradiente */
body.style-moderno hr,
body.style-moderno .wp-block-separator {
  border: none !important;
  height: 1px !important;
  background: linear-gradient(90deg,
    transparent,
    rgba(0,245,212,0.40),
    rgba(199,125,255,0.40),
    transparent
  ) !important;
  margin: 2rem auto !important;
}

/* ==========================================================
   Moderno — Correções v3
   ========================================================== */

/* Título "Início" e qualquer h1 de página — gradiente garantido */
body.style-moderno h1,
body.style-moderno h1,
body.style-moderno h1.entry-title,
body.style-moderno .page-header .entry-title,
body.style-moderno .entry-title {
  background: linear-gradient(90deg, #ffffff 15%, #c77dff 55%, #00f5d4 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
}

/* Texto "AO VIVO AGORA" e textos apagados nos widgets — mais visíveis */
body.style-moderno .widget p,
body.style-moderno .widget span,
body.style-moderno .widget small,
body.style-moderno .widget label,
body.style-moderno aside p,
body.style-moderno aside span {
  color: rgba(220,210,255,0.92) !important;
}

/* "Clique em Tocar para ouvir" especificamente */
body.style-moderno aside .widget *:not(h2):not(h3):not(a):not(button) {
  color: rgba(200,185,255,0.90);
}

/* Textos em maiúsculas pequenas dentro dos widgets (AO VIVO AGORA) */
body.style-moderno .widget [class*="status"],
body.style-moderno .widget [class*="label"],
body.style-moderno .widget [class*="live"],
body.style-moderno .widget [class*="now"] {
  color: #00f5d4 !important;
  font-weight: 600 !important;
}

/* ==========================================================
   Céu e Fé — Paleta renovada (versão clara)
   Fundo claro, cabeçalho/rodapé azul escuro, dourado nos destaques
   ========================================================== */

/* Header e rodapé mantêm azul escuro — identidade preservada */
body.style-ceuafe .site-header {
  background-color: #1a3a5c;
}

body.style-ceuafe footer {
  background-color: #1a3a5c;
  border-top: 2px solid rgba(201,168,76,0.30);
}

body.style-ceuafe .site-info,
body.style-ceuafe .site-info p {
  color: rgba(232,201,106,0.80);
  border-top-color: rgba(201,168,76,0.20);
}

body.style-ceuafe footer a { color: rgba(232,201,106,0.85); }
body.style-ceuafe footer a:hover { color: #E8C96A; }
body.style-ceuafe .social-title { color: #E8C96A; }
body.style-ceuafe .social-links a { color: rgba(232,201,106,0.80); }
body.style-ceuafe .social-links a:hover { color: #E8C96A; }

/* Fundo da página azul bem claro */
body.style-ceuafe {
  background-color: #eef4fb;
}

/* Títulos em azul escuro — legíveis no fundo claro */
body.style-ceuafe .entry-title,
body.style-ceuafe h1,
body.style-ceuafe h2,
body.style-ceuafe h3 {
  color: #1a3a5c;
}

/* Links em azul médio — contraste WCAG AA no fundo branco */
body.style-ceuafe a {
  color: #1a5a9a;
}

body.style-ceuafe a:hover {
  color: #1a3a5c;
}

/* Blockquote com moldura azul claro e fundo levemente azulado */
body.style-ceuafe .post-content blockquote,
body.style-ceuafe .page-content blockquote {
  border-left: 4px solid #C9A84C;
  background: #ddeaf8;
  color: #1a2535;
  border-radius: 0 8px 8px 0;
}

/* Títulos de widget em azul escuro */
body.style-ceuafe .widget h3,
body.style-ceuafe .widget h2 {
  color: #1a3a5c;
  border-bottom-color: rgba(201,168,76,0.35);
}

/* Site content com fundo claro */
body.style-ceuafe .site-content {
  background-color: #eef4fb;
}

/* Textos do conteúdo em cor escura — máxima legibilidade */
body.style-ceuafe .post-content p,
body.style-ceuafe .page-content p,
body.style-ceuafe .post-content li,
body.style-ceuafe .page-content li {
  color: #1a2535;
}

/* Botão buscar em dourado */
body.style-ceuafe .header-search-form .search-submit {
  background-color: #C9A84C;
  color: #ffffff;
  border: none;
}

body.style-ceuafe .header-search-form .search-submit:hover {
  background-color: #b8963e;
  filter: none;
}

/* Paginação */
body.style-ceuafe .pagination .page-numbers {
  border-color: rgba(26,58,92,0.20);
  color: #1a5a9a;
}

body.style-ceuafe .pagination .current,
body.style-ceuafe .pagination .page-numbers:hover {
  background-color: #1a3a5c;
  color: #ffffff;
  border-color: #1a3a5c;
}

/* ==========================================================
   Vintage Café — Versão Clara
   Creme e marrom — atmosfera de livraria e café
   ========================================================== */

body.style-vintagecafe {
  background-color: #f5efe6;
}

body.style-vintagecafe .site-header {
  background-color: #2e1a0e;
}

body.style-vintagecafe footer {
  background-color: #2e1a0e;
  border-top: 2px solid rgba(212,175,55,0.30);
}

body.style-vintagecafe .site-info,
body.style-vintagecafe .site-info p {
  color: rgba(245,222,179,0.80);
  border-top-color: rgba(212,175,55,0.20);
}

body.style-vintagecafe footer a { color: rgba(245,222,179,0.85); }
body.style-vintagecafe footer a:hover { color: #F5DEB3; }
body.style-vintagecafe .social-title { color: #F5DEB3; }
body.style-vintagecafe .social-links a { color: rgba(245,222,179,0.80); }

body.style-vintagecafe h1,
body.style-vintagecafe h2,
body.style-vintagecafe h3,
body.style-vintagecafe .entry-title {
  color: #2e1a0e;
  font-family: 'Georgia', 'Times New Roman', serif;
}

body.style-vintagecafe a {
  color: #7a3e10;
  text-decoration: underline;
}

body.style-vintagecafe a:hover {
  color: #2e1a0e;
}

body.style-vintagecafe .post-content p,
body.style-vintagecafe .page-content p,
body.style-vintagecafe .post-content li,
body.style-vintagecafe .page-content li {
  color: #1a0f00;
  line-height: 1.80;
}

body.style-vintagecafe .post-content blockquote,
body.style-vintagecafe .page-content blockquote {
  border-left: 4px solid #D4AF37;
  background: #f5efe6;
  color: #2e1a0e;
  border-radius: 0 6px 6px 0;
}

body.style-vintagecafe .widget h3,
body.style-vintagecafe .widget h2 {
  color: #2e1a0e;
  border-bottom-color: rgba(212,175,55,0.35);
}

body.style-vintagecafe .header-search-form .search-submit {
  background-color: #D4AF37;
  color: #1a0f00;
  border: none;
}

body.style-vintagecafe .header-search-form .search-submit:hover {
  background-color: #b8963e;
  filter: none;
}

/* ==========================================================
   Campo e Paixão — Versão Clara
   Verde e branco — energia de estádio ao ar livre
   ========================================================== */

body.style-campoepaixao {
  background-color: #f0f7f1;
}

body.style-campoepaixao .site-header {
  background-color: #0d3318;
}

body.style-campoepaixao footer {
  background-color: #0d3318;
  border-top: 2px solid rgba(204,0,0,0.40);
}

body.style-campoepaixao .site-info,
body.style-campoepaixao .site-info p {
  color: rgba(255,255,255,0.75);
  border-top-color: rgba(204,0,0,0.25);
}

body.style-campoepaixao footer a { color: rgba(255,255,255,0.80); }
body.style-campoepaixao footer a:hover { color: #ffffff; }
body.style-campoepaixao .social-title { color: #ffffff; }
body.style-campoepaixao .social-links a { color: rgba(255,255,255,0.80); }

body.style-campoepaixao h1,
body.style-campoepaixao h2,
body.style-campoepaixao h3,
body.style-campoepaixao .entry-title {
  color: #0d3318;
  font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
  font-weight: 800;
}

body.style-campoepaixao a {
  color: #0d5c28;
  text-decoration: none;
}

body.style-campoepaixao a:hover {
  color: #cc0000;
}

body.style-campoepaixao .post-content p,
body.style-campoepaixao .page-content p,
body.style-campoepaixao .post-content li,
body.style-campoepaixao .page-content li {
  color: #0a1f0f;
  line-height: 1.75;
}

body.style-campoepaixao .post-content blockquote,
body.style-campoepaixao .page-content blockquote {
  border-left: 4px solid #cc0000;
  background: #e0efe3;
  color: #0a1f0f;
  border-radius: 0 6px 6px 0;
}

body.style-campoepaixao .widget h3,
body.style-campoepaixao .widget h2 {
  color: #0d3318;
  border-bottom-color: rgba(204,0,0,0.30);
}

body.style-campoepaixao .header-search-form .search-submit {
  background-color: #cc0000;
  color: #ffffff;
  border: none;
}

body.style-campoepaixao .header-search-form .search-submit:hover {
  background-color: #aa0000;
  filter: none;
}

/* ==========================================================
   Neon Pop — Magenta + Ciano
   Energia de rádio jovem, show e festival
   ========================================================== */

body.style-neonpop .site-header {
  background: linear-gradient(135deg, #0d0d1a, #1a0a2a);
  border-bottom: 2px solid rgba(255,45,120,0.40);
}

body.style-neonpop .site-title .site-name a {
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255,45,120,0.60);
}

body.style-neonpop footer {
  background: linear-gradient(135deg, #0d0d1a, #07070f);
  border-top: 2px solid rgba(255,45,120,0.30);
}

body.style-neonpop .site-info,
body.style-neonpop .site-info p {
  color: rgba(200,200,255,0.70);
  border-top-color: rgba(255,45,120,0.20);
}

body.style-neonpop footer a { color: rgba(0,207,255,0.80); }
body.style-neonpop footer a:hover { color: #00cfff; }
body.style-neonpop .social-title { color: #ff2d78; }
body.style-neonpop .social-links a { color: rgba(0,207,255,0.80); }

body.style-neonpop h1,
body.style-neonpop h2,
body.style-neonpop h3,
body.style-neonpop .entry-title {
  color: #ff2d78;
  font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
  font-weight: 800;
}

body.style-neonpop .entry-title a {
  color: #ff2d78;
  text-decoration: none;
}

body.style-neonpop .entry-title a:hover {
  color: #00cfff;
}

body.style-neonpop a {
  color: #00cfff;
}

body.style-neonpop a:hover {
  color: #ff2d78;
}

body.style-neonpop .post-content blockquote,
body.style-neonpop .page-content blockquote {
  border-left: 4px solid #ff2d78;
  background: rgba(255,45,120,0.06);
  color: #E8E8F8;
  border-radius: 0 6px 6px 0;
}

body.style-neonpop .widget h3,
body.style-neonpop .widget h2 {
  color: #ff2d78;
  border-bottom-color: rgba(255,45,120,0.30);
}

body.style-neonpop .header-search-form .search-submit {
  background: linear-gradient(135deg, #ff2d78, #c0135a);
  color: #ffffff;
  border: none;
}

body.style-neonpop .header-search-form .search-submit:hover {
  background: linear-gradient(135deg, #00cfff, #0099cc);
  filter: none;
}

/* Muted text Neon Pop e Vintage Café atualizados */
body.style-neonpop     { --muted-text: #8888aa; }
body.style-vintagecafe { --muted-text: #7a6040; }
body.style-campoepaixao{ --muted-text: #4a6a52; }

/* ==========================================================
   Céu e Fé — Renovação completa v2
   Moderno, respirado, acessível e espiritual
   ========================================================== */

/* ── Fontes modernas via Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ── Body e fundo ── */
body.style-ceuafe {
  background-color: #eaf2fb;
  font-family: 'Inter', 'Roboto', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.80;
}

/* ── Header com degradê azul profundo para azul médio ── */
body.style-ceuafe .site-header {
  background: linear-gradient(135deg, #0d2b4a 0%, #1a4a7a 100%);
  padding: 10px 0 8px;
  border-bottom: none;
  box-shadow: 0 2px 20px rgba(13,43,74,0.25);
}

/* Nome do site em branco limpo com Poppins */
body.style-ceuafe .site-title .site-name a {
  color: #ffffff !important;
  font-family: 'Poppins', 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  text-decoration: none !important;
  -webkit-text-fill-color: #ffffff !important;
}

body.style-ceuafe .site-title .site-description {
  color: rgba(255,255,255,0.78) !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

/* ── Menu moderno com mais respiro ── */
body.style-ceuafe .primary-nav .menu a {
  color: rgba(255,255,255,0.90) !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.02em !important;
  padding: 6px 14px !important;
  border-radius: 6px !important;
  transition: background 0.20s ease, color 0.20s ease !important;
}

body.style-ceuafe .primary-nav .menu a:hover {
  background: rgba(255,255,255,0.12) !important;
  color: #ffffff !important;
}

/* Item ativo — linha fina embaixo, sem fundo pesado */
body.style-ceuafe .primary-nav .menu li.current-menu-item > a,
body.style-ceuafe .primary-nav .menu li.current_page_item > a {
  color: #ffffff !important;
  background: rgba(255,255,255,0.10) !important;
  border-bottom: 2px solid #e07b39 !important;
  border-radius: 6px 6px 0 0 !important;
  font-weight: 600 !important;
}

/* ── Campo de busca integrado ── */
body.style-ceuafe .header-search-form .search-field {
  background: rgba(255,255,255,0.12) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  color: #ffffff !important;
  border-radius: 8px 0 0 8px !important;
  font-family: 'Inter', sans-serif !important;
}

body.style-ceuafe .header-search-form .search-field::placeholder {
  color: rgba(255,255,255,0.55) !important;
}

body.style-ceuafe .header-search-form .search-field:focus {
  background: rgba(255,255,255,0.20) !important;
  border-color: rgba(224,123,57,0.60) !important;
  outline: none !important;
}

body.style-ceuafe .header-search-form .search-submit {
  background: #e07b39 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 0 8px 8px 0 !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  transition: background 0.20s ease, transform 0.20s ease !important;
}

body.style-ceuafe .header-search-form .search-submit:hover {
  background: #c96828 !important;
  transform: none !important;
  filter: none !important;
}

/* ── Área de conteúdo ── */
body.style-ceuafe main {
  background-color: #ffffff !important;
  border-right: 1px solid rgba(13,43,74,0.08) !important;
}

body.style-ceuafe aside {
  background-color: #deeaf8 !important;
  border-left: none !important;
}

/* ── Cards da sidebar modernos ── */
body.style-ceuafe .widget {
  background-color: #ffffff !important;
  border: 1px solid rgba(13,43,74,0.10) !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 12px rgba(13,43,74,0.08) !important;
  padding: 1.5rem !important;
}

/* Títulos dos widgets — Poppins, coral */
body.style-ceuafe .widget h3,
body.style-ceuafe .widget h2 {
  font-family: 'Poppins', 'Inter', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.80rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: #0d2b4a !important;
  border-bottom: 2px solid #e07b39 !important;
  padding-bottom: 8px !important;
  margin-bottom: 1rem !important;
  -webkit-text-fill-color: #0d2b4a !important;
  background: none !important;
}

/* Versículo com tipografia maior e referência menor */
body.style-ceuafe .widget blockquote,
body.style-ceuafe .widget p {
  font-size: 1rem !important;
  line-height: 1.70 !important;
  color: #1a2535 !important;
}

/* ── Títulos de conteúdo — Poppins, azul profundo ── */
body.style-ceuafe h1,
body.style-ceuafe h2,
body.style-ceuafe h3,
body.style-ceuafe h4,
body.style-ceuafe .entry-title {
  font-family: 'Poppins', 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  color: #0d2b4a !important;
  letter-spacing: -0.01em !important;
  line-height: 1.25 !important;
  -webkit-text-fill-color: #0d2b4a !important;
  background: none !important;
}

/* ── Texto corrido — Inter, espaçamento generoso ── */
body.style-ceuafe .post-content p,
body.style-ceuafe .page-content p,
body.style-ceuafe .post-content li,
body.style-ceuafe .page-content li {
  font-family: 'Inter', 'Roboto', sans-serif !important;
  font-size: 1rem !important;
  line-height: 1.85 !important;
  color: #1a2535 !important;
}

/* ── Links ── */
body.style-ceuafe a {
  color: #1a6aaa !important;
  text-decoration: none !important;
  transition: color 0.18s ease !important;
}

body.style-ceuafe a:hover {
  color: #0d2b4a !important;
  text-decoration: underline !important;
}

/* ── Blockquote — versículo em destaque ── */
body.style-ceuafe .post-content blockquote,
body.style-ceuafe .page-content blockquote {
  border-left: 3px solid #e07b39 !important;
  background: #f0f6fd !important;
  color: #1a2535 !important;
  border-radius: 0 10px 10px 0 !important;
  font-style: italic !important;
  font-size: 1.05rem !important;
}

/* ── Rodapé ── */
body.style-ceuafe footer {
  background: linear-gradient(135deg, #0d2b4a, #1a3a5c) !important;
  border-top: 2px solid rgba(224,123,57,0.30) !important;
}

body.style-ceuafe .site-info,
body.style-ceuafe .site-info p {
  color: rgba(255,255,255,0.70) !important;
  border-top-color: rgba(255,255,255,0.10) !important;
}

body.style-ceuafe footer a { color: rgba(255,255,255,0.80) !important; }
body.style-ceuafe footer a:hover { color: #ffffff !important; }
body.style-ceuafe .social-title { color: #ffffff !important; }
body.style-ceuafe .social-links a { color: rgba(255,255,255,0.80) !important; }
body.style-ceuafe .social-links a:hover { color: #e07b39 !important; }

/* ── Paginação ── */
body.style-ceuafe .pagination .page-numbers {
  border-color: rgba(13,43,74,0.18) !important;
  color: #1a6aaa !important;
  border-radius: 8px !important;
}

body.style-ceuafe .pagination .current,
body.style-ceuafe .pagination .page-numbers:hover {
  background-color: #0d2b4a !important;
  color: #ffffff !important;
  border-color: #0d2b4a !important;
}

/* ── Muted text atualizado ── */
body.style-ceuafe { --muted-text: #4a5e72; }
