/*
Theme Name: Êxodo Casa e Jardim
Theme URI: https://exodocasaejardim.com
Author: Êxodo Casa e Jardim
Author URI: https://exodocasaejardim.com
Description: Tema oficial da revista digital Êxodo Casa e Jardim — um refúgio para o belo. Portal de arquitetura, jardim, casa inteligente, casa sensorial, gastronomia e viagens.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: Proprietary
Text Domain: exodo
Tags: custom-menu, featured-images, post-thumbnails, full-width-template, custom-logo
*/

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =========================================================
   TIPOGRAFIA
   ========================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
  color: #0F2B22;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* =========================================================
   CONTAINER
   ========================================================= */
.exodo-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 768px) {
  .exodo-container { padding: 0 20px; }
}

/* =========================================================
   HEADER
   ========================================================= */
#exodo-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(15,43,34,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 12px rgba(15,43,34,0.06);
}

.exodo-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  max-width: 1320px;
  margin: 0 auto;
}

/* Logo */
.exodo-logo a {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.exodo-logo svg {
  height: 52px;
  width: auto;
}

.custom-logo-link img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* Navegação principal */
#exodo-primary-nav ul {
  display: flex;
  gap: 0;
  align-items: center;
  list-style: none;
}

#exodo-primary-nav ul li {
  position: relative;
}

#exodo-primary-nav ul li a {
  display: block;
  padding: 10px 18px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2a2a2a;
  transition: color 0.3s;
}

#exodo-primary-nav ul li a:hover,
#exodo-primary-nav ul li.current-menu-item > a,
#exodo-primary-nav ul li.current-menu-ancestor > a {
  color: #0F2B22;
}

/* Dropdown */
#exodo-primary-nav ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid rgba(15,43,34,0.1);
  border-top: 2px solid #0F2B22;
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 200;
  flex-direction: column;
  gap: 0;
}

#exodo-primary-nav ul li:hover > ul { display: flex; }

#exodo-primary-nav ul li ul li a {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #444;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(15,43,34,0.05);
}

#exodo-primary-nav ul li ul li a:hover {
  background: rgba(15,43,34,0.04);
  color: #0F2B22;
}

/* Hamburger */
.exodo-menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(15,43,34,0.2);
  padding: 8px 12px;
  cursor: pointer;
  font-size: 20px;
  color: #0F2B22;
}

/* =========================================================
   FAIXA DE EDITORIAS
   ========================================================= */
.exodo-editorias-bar {
  background: #0F2B22;
  overflow-x: auto;
  scrollbar-width: none;
}
.exodo-editorias-bar::-webkit-scrollbar { display: none; }

.exodo-editorias-inner {
  display: flex;
  max-width: 1320px;
  margin: 0 auto;
}

.exodo-editorias-bar a {
  display: block;
  padding: 14px 26px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(239,233,225,0.55);
  white-space: nowrap;
  border-right: 1px solid rgba(239,233,225,0.08);
  transition: color 0.3s, background 0.3s;
}

.exodo-editorias-bar a:hover,
.exodo-editorias-bar a.active {
  color: #EFE9E1;
  background: rgba(239,233,225,0.07);
}

/* =========================================================
   HERO
   ========================================================= */
.exodo-hero {
  background: #0F2B22;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 48px 64px;
  position: relative;
}

.exodo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 55%, rgba(25,65,40,0.6) 0%, transparent 70%);
  pointer-events: none;
}

.exodo-hero-tag {
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(239,233,225,0.4);
  margin-bottom: 28px;
  position: relative;
}

.exodo-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 8vw, 100px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: #EFE9E1;
  max-width: 880px;
  position: relative;
}

.exodo-hero h1 em {
  font-style: italic;
  color: rgba(239,233,225,0.6);
}

.exodo-hero-sub {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: rgba(239,233,225,0.38);
  margin-top: 32px;
  text-transform: uppercase;
  position: relative;
}

.exodo-hero-line {
  width: 1px;
  height: 56px;
  background: rgba(239,233,225,0.2);
  margin: 40px auto 0;
}

/* =========================================================
   SEÇÕES GERAIS
   ========================================================= */
.exodo-section {
  padding: 72px 48px;
  max-width: 1320px;
  margin: 0 auto;
}

.exodo-section-label {
  font-size: 11px;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: rgba(15,43,34,0.38);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.exodo-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(15,43,34,0.1);
}

/* =========================================================
   GRID DESTAQUE PRINCIPAL
   ========================================================= */
.exodo-featured-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 3px;
  background: rgba(15,43,34,0.08);
}

.exodo-card-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.exodo-card-hero .exodo-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.exodo-card-hero:hover .exodo-card-img { transform: scale(1.03); }

.exodo-card-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(175deg, rgba(15,43,34,0.1) 30%, rgba(8,22,14,0.88) 100%);
}

.exodo-card-hero-body {
  position: relative;
  z-index: 2;
  padding: 44px 40px;
}

.exodo-card-tag {
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(239,233,225,0.55);
  margin-bottom: 14px;
  display: block;
}

.exodo-card-hero h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  color: #EFE9E1;
  margin-bottom: 14px;
}

.exodo-card-hero p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(239,233,225,0.6);
  max-width: 420px;
  margin-bottom: 28px;
}

.exodo-card-stack {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.exodo-card-sm {
  flex: 1;
  min-height: 200px;
  background: #f8f6f2;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.exodo-card-sm:hover { background: #f0ede7; }

.exodo-card-sm .exodo-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  transition: opacity 0.4s;
}

.exodo-card-sm:hover .exodo-card-img { opacity: 0.45; }

.exodo-card-sm-body { position: relative; z-index: 2; }

.exodo-card-sm h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  color: #0F2B22;
  margin-bottom: 7px;
}

.exodo-card-sm p {
  font-size: 13px;
  color: rgba(15,43,34,0.55);
  line-height: 1.6;
}

/* =========================================================
   LINK PADRÃO
   ========================================================= */
.exodo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(239,233,225,0.65);
  text-decoration: none;
  transition: color 0.3s, gap 0.3s;
  font-family: 'Jost', sans-serif;
}

.exodo-link:hover { color: #EFE9E1; gap: 15px; }
.exodo-link::after { content: '→'; font-size: 14px; }

.exodo-link-dark {
  color: rgba(15,43,34,0.55);
}
.exodo-link-dark:hover { color: #0F2B22; }

/* =========================================================
   GRADE 3 COLUNAS
   ========================================================= */
.exodo-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.exodo-article-card { }

.exodo-article-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  background: #f0ede7;
  margin-bottom: 18px;
  overflow: hidden;
  display: block;
}

.exodo-article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.4s;
}

.exodo-article-card:hover .exodo-article-thumb img {
  transform: scale(1.04);
  opacity: 0.9;
}

.exodo-article-cat {
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(15,43,34,0.42);
  margin-bottom: 9px;
  display: block;
}

.exodo-article-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: #0F2B22;
  margin-bottom: 10px;
}

.exodo-article-card p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(15,43,34,0.55);
  margin-bottom: 16px;
}

/* =========================================================
   EDITORIAS ESPECIAIS
   ========================================================= */
.exodo-especiais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  background: rgba(15,43,34,0.07);
}

.exodo-especial-card {
  background: #ffffff;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.3s;
}

.exodo-especial-card:hover { background: #f8f5f0; }

.exodo-especial-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(15,43,34,0.1);
  line-height: 1;
}

.exodo-especial-cat {
  font-size: 10px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(15,43,34,0.38);
}

.exodo-especial-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  color: #0F2B22;
  flex: 1;
}

.exodo-especial-card p {
  font-size: 13px;
  color: rgba(15,43,34,0.5);
  line-height: 1.65;
}

/* =========================================================
   BANNER ESG
   ========================================================= */
.exodo-esg-banner {
  background: #0F2B22;
  padding: 52px 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: center;
  margin: 0 48px;
}

.exodo-esg-label {
  font-size: 10px;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: rgba(239,233,225,0.35);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.exodo-esg-banner h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;
  color: #EFE9E1;
  margin-bottom: 12px;
}

.exodo-esg-banner p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(239,233,225,0.55);
}

/* =========================================================
   MANIFESTO
   ========================================================= */
.exodo-manifesto {
  padding: 96px 48px;
  text-align: center;
  background: #faf8f5;
  border-top: 1px solid rgba(15,43,34,0.07);
  border-bottom: 1px solid rgba(15,43,34,0.07);
}

.exodo-manifesto blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.8vw, 46px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: rgba(15,43,34,0.7);
  max-width: 760px;
  margin: 0 auto 28px;
}

.exodo-manifesto cite {
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(15,43,34,0.3);
  font-style: normal;
}

/* =========================================================
   EXPERIÊNCIAS (2 colunas)
   ========================================================= */
.exodo-exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: rgba(15,43,34,0.07);
}

.exodo-exp-card {
  background: #f8f5f0;
  padding: 52px 44px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.exodo-exp-card:hover { background: #f0ece4; }

.exodo-exp-card .exodo-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  transition: opacity 0.4s;
}

.exodo-exp-card:hover .exodo-card-img { opacity: 0.42; }

.exodo-exp-body { position: relative; z-index: 2; }

.exodo-exp-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 300;
  color: #0F2B22;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.exodo-exp-card p {
  font-size: 14px;
  color: rgba(15,43,34,0.55);
  line-height: 1.72;
  margin-bottom: 24px;
  max-width: 340px;
}

/* =========================================================
   NEWSLETTER
   ========================================================= */
.exodo-newsletter {
  background: #0F2B22;
  padding: 72px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.exodo-newsletter h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: #EFE9E1;
  margin-bottom: 10px;
}

.exodo-newsletter p {
  font-size: 13px;
  color: rgba(239,233,225,0.42);
  letter-spacing: 0.08em;
  line-height: 1.7;
}

.exodo-nl-form {
  display: flex;
  flex: 0 0 420px;
}

.exodo-nl-form input[type="email"] {
  flex: 1;
  background: rgba(239,233,225,0.07);
  border: 1px solid rgba(239,233,225,0.15);
  border-right: none;
  padding: 15px 20px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #EFE9E1;
  outline: none;
  transition: border-color 0.3s;
}

.exodo-nl-form input[type="email"]::placeholder { color: rgba(239,233,225,0.3); }
.exodo-nl-form input[type="email"]:focus { border-color: rgba(239,233,225,0.35); }

.exodo-nl-form button {
  background: rgba(239,233,225,0.12);
  border: 1px solid rgba(239,233,225,0.15);
  padding: 15px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #EFE9E1;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}

.exodo-nl-form button:hover { background: rgba(239,233,225,0.22); }

/* =========================================================
   FOOTER
   ========================================================= */
#exodo-footer {
  background: #0F2B22;
  border-top: 1px solid rgba(239,233,225,0.08);
  padding: 56px 48px 28px;
}

.exodo-footer-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.exodo-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(239,233,225,0.08);
  margin-bottom: 28px;
}

.exodo-footer-brand svg { height: 40px; width: auto; opacity: 0.8; margin-bottom: 12px; }

.exodo-footer-brand p {
  font-size: 11px;
  color: rgba(239,233,225,0.3);
  letter-spacing: 0.13em;
}

.exodo-footer-cols {
  display: flex;
  gap: 56px;
}

.exodo-footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(239,233,225,0.3);
  margin-bottom: 18px;
}

.exodo-footer-col ul li {
  font-size: 13px;
  color: rgba(239,233,225,0.5);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.exodo-footer-col ul li a {
  color: inherit;
  transition: color 0.3s;
}

.exodo-footer-col ul li a:hover { color: #EFE9E1; }

.exodo-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.exodo-footer-bottom p {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(239,233,225,0.22);
}

/* =========================================================
   SINGLE POST
   ========================================================= */
.exodo-single-hero {
  background: #0F2B22;
  padding: 64px 48px;
  text-align: center;
}

.exodo-single-hero .exodo-card-tag { color: rgba(239,233,225,0.5); }

.exodo-single-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 300;
  color: #EFE9E1;
  max-width: 820px;
  margin: 0 auto 20px;
  line-height: 1.15;
}

.exodo-single-meta {
  font-size: 12px;
  color: rgba(239,233,225,0.38);
  letter-spacing: 0.18em;
}

.exodo-single-thumb {
  width: 100%;
  max-height: 560px;
  overflow: hidden;
}

.exodo-single-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exodo-single-content {
  max-width: 780px;
  margin: 64px auto;
  padding: 0 48px;
}

.exodo-single-content p {
  font-size: 17px;
  line-height: 1.85;
  color: #2a2a2a;
  margin-bottom: 1.5rem;
}

.exodo-single-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: #0F2B22;
  margin: 2.5rem 0 1rem;
}

.exodo-single-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: #0F2B22;
  margin: 2rem 0 0.8rem;
}

.exodo-single-content blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  color: #0F2B22;
  border-left: 2px solid #0F2B22;
  padding: 8px 0 8px 28px;
  margin: 2rem 0;
  line-height: 1.5;
}

.exodo-single-content img {
  width: 100%;
  margin: 2rem 0;
}

.exodo-single-content ul, 
.exodo-single-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  list-style: initial;
}

.exodo-single-content li {
  font-size: 17px;
  line-height: 1.85;
  color: #2a2a2a;
  margin-bottom: 0.5rem;
}

/* =========================================================
   PÁGINA ESTÁTICA (SOBRE, CONTATO, ETC)
   ========================================================= */
.exodo-page-content {
  max-width: 860px;
  margin: 72px auto;
  padding: 0 48px;
}

.exodo-page-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: #0F2B22;
  margin-bottom: 32px;
  line-height: 1.15;
}

.exodo-page-content p {
  font-size: 17px;
  line-height: 1.85;
  color: #2a2a2a;
  margin-bottom: 1.5rem;
}

/* =========================================================
   ARQUIVO / BLOG
   ========================================================= */
.exodo-archive-header {
  background: #0F2B22;
  padding: 56px 48px;
  text-align: center;
}

.exodo-archive-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  color: #EFE9E1;
}

.exodo-archive-header p {
  font-size: 13px;
  color: rgba(239,233,225,0.4);
  letter-spacing: 0.2em;
  margin-top: 12px;
}

.exodo-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1320px;
  margin: 64px auto;
  padding: 0 48px;
}

/* =========================================================
   DIVIDER ORNAMENT
   ========================================================= */
.exodo-divider {
  text-align: center;
  padding: 16px;
  color: rgba(15,43,34,0.15);
  font-size: 18px;
  letter-spacing: 12px;
}

/* =========================================================
   WIDGETS NA SIDEBAR
   ========================================================= */
.widget-area {
  padding: 40px 0;
}

.widget {
  margin-bottom: 40px;
}

.widget-title {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(15,43,34,0.4);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15,43,34,0.1);
}

/* =========================================================
   PAGINAÇÃO
   ========================================================= */
.exodo-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 48px;
}

.exodo-pagination .page-numbers {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15,43,34,0.15);
  font-size: 13px;
  color: #0F2B22;
  transition: all 0.3s;
}

.exodo-pagination .page-numbers.current,
.exodo-pagination .page-numbers:hover {
  background: #0F2B22;
  color: #EFE9E1;
}

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 1024px) {
  .exodo-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .exodo-especiais-grid { grid-template-columns: repeat(2, 1fr); }
  .exodo-archive-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .exodo-header-inner { padding: 16px 20px; }
  #exodo-primary-nav { display: none; }
  #exodo-primary-nav.open { display: block; }
  #exodo-primary-nav.open ul { flex-direction: column; }
  .exodo-menu-toggle { display: block; }

  .exodo-hero { padding: 56px 20px; min-height: 65vh; }

  .exodo-section { padding: 48px 20px; }

  .exodo-featured-grid,
  .exodo-exp-grid { grid-template-columns: 1fr; }

  .exodo-grid-3,
  .exodo-archive-grid { grid-template-columns: 1fr; gap: 28px; padding: 0 20px; }

  .exodo-especiais-grid { grid-template-columns: 1fr; }

  .exodo-esg-banner {
    grid-template-columns: 1fr;
    margin: 0 20px;
    padding: 40px 28px;
    gap: 20px;
  }

  .exodo-esg-label { writing-mode: horizontal-tb; transform: none; }

  .exodo-manifesto { padding: 60px 20px; }

  .exodo-newsletter {
    flex-direction: column;
    padding: 52px 20px;
  }

  .exodo-nl-form { flex: none; width: 100%; }

  #exodo-footer { padding: 40px 20px 20px; }

  .exodo-footer-top { flex-direction: column; gap: 28px; }
  .exodo-footer-cols { flex-wrap: wrap; gap: 28px; }

  .exodo-single-content,
  .exodo-page-content { padding: 0 20px; margin: 40px auto; }

  .exodo-archive-header { padding: 40px 20px; }
}
