/* ============================================
   BLOG CSS - ISOLADO E INDEPENDENTE
   ============================================ */

/* Reset e Variáveis CSS */
:root {
  --bg: #ffffff;
  --bg-muted: #fafafa;
  --card: #ffffff;
  --text: #1a1a1a;
  --muted: #666666;
  --border: #e5e5e5;
  --shadow: none;
  --primary: #1a1a1a;
  --primary-700: #000000;
  --accent: #111111;
  --transition: all 0.2s ease;
}

* { 
  box-sizing: border-box; 
  margin: 0;
  padding: 0;
}

html, body { 
  height: 100%; 
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  padding-top: 80px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
}

/* Container */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Section */
.section {
  padding: 100px 0;
  background: #ffffff;
}

/* Section com 30px de espaçamento do header */
.blog-content.section {
  padding-top: 30px;
  margin-top: 0;
}

.section h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 300;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--text);
}

/* ============================================
   HEADER - Estilo Vivara
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  box-shadow: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 48px;
  position: relative;
}

.site-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--text);
}

.brand-name {
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
}

.logo-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #000000;
  border-radius: 4px;
  padding: 4px;
  flex-shrink: 0;
}

.logo-container-small {
  width: 32px;
  height: 32px;
  padding: 2px;
}

.logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.logo.small {
  width: 28px;
  height: 28px;
}

.header-search-container {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.nav {
  display: none;
  gap: 0;
  align-items: center;
  position: absolute;
  top: 80px;
  right: 0;
  left: 0;
  padding: 0;
  flex-direction: column;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.nav[data-open="true"] {
  display: flex;
  max-height: 500px;
  opacity: 1;
}

.nav .nav-link {
  width: 100%;
  text-align: left;
  padding: 20px 40px;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s ease;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
}

.nav .nav-link:hover {
  background: #fafafa;
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  padding: 0;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
}

.nav-toggle {
  background: transparent;
  border: 0;
  color: var(--text);
  font-size: 24px;
  display: inline-flex;
  cursor: pointer;
  padding: 8px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-toggle:hover {
  opacity: 0.7;
}

.nav-toggle:active {
  transform: scale(0.95);
}

/* ============================================
   GLOBAL SEARCH
   ============================================ */

.global-search {
  position: relative;
}

.global-search-input {
  width: 100%;
  padding: 12px 16px 12px 48px;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  background: #ffffff;
  color: var(--text);
  font-size: 13px;
  transition: border-color 0.2s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cpath d='m21 21-4.35-4.35'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 16px center;
  background-size: 16px;
}

.global-search-input::placeholder {
  color: var(--muted);
}

.global-search-input:focus {
  outline: none;
  border-color: var(--text);
}

.global-search-results {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  max-height: 500px;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  z-index: 200;
  border: 1px solid #e5e5e5;
}

.global-search-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 150;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  background: transparent;
  min-height: 44px;
}

.btn-full {
  width: 100%;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-700);
  border-color: var(--primary-700);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.btn.is-disabled,
.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

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

.site-footer {
  background: #ffffff;
  color: var(--text);
  border-top: 1px solid #f0f0f0;
  margin-top: 0;
  padding: 48px 0 36px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: inline-flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-ctas {
  display: inline-flex;
  gap: 20px;
  align-items: center;
}

.footer-ig,
.footer-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  text-decoration: none;
  transition: opacity 0.2s ease;
  border: 1px solid #e5e5e5;
  border-radius: 0;
}

.footer-ig:hover,
.footer-wa:hover {
  opacity: 0.6;
}

.footer-ig .ig-icon,
.footer-wa .wa-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* ============================================
   BLOG STYLES
   ============================================ */

.blog-content {
  padding: 0 0 60px 0;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin-top: 0;
}

.blog-main {
  min-width: 0;
}

.blog-featured-post {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.blog-featured-header {
  padding: 60px;
  border-bottom: 1px solid #f0f0f0;
}

.blog-featured-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.blog-featured-category {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--bg-muted);
  color: var(--text);
}

.blog-featured-date {
  color: var(--muted);
  font-size: 0.875rem;
}

.blog-featured-title {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -0.5px;
  margin: 0 0 24px;
  line-height: 1.3;
}

.blog-featured-excerpt {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.blog-featured-image {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  background: #fafafa;
}

.blog-featured-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.blog-featured-body {
  padding: 60px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  font-weight: 300;
}

.blog-featured-body p {
  margin-bottom: 1.5rem;
}

.blog-featured-body h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem 0;
  color: var(--text);
}

.blog-featured-body h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
  color: var(--text);
}

.blog-featured-body ul,
.blog-featured-body ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.blog-featured-body li {
  margin-bottom: 0.75rem;
}

.blog-featured-body a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.blog-featured-body a:hover {
  border-bottom-color: var(--primary);
}

.blog-featured-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid #f0f0f0;
  background: var(--bg-muted);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.blog-featured-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.blog-featured-share span {
  font-weight: 600;
  color: var(--text);
}

.blog-featured-cta {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Blog Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.blog-sidebar-section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.blog-sidebar-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1.5rem 0;
  color: var(--text);
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}

/* Blog Categories */
.blog-categories-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blog-category-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #ffffff;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  width: 100%;
  font-size: 0.9375rem;
}

.blog-category-item:hover {
  border-color: var(--primary);
  background: var(--bg-muted);
  transform: translateX(4px);
}

.blog-category-item.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  font-weight: 600;
}

.category-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.category-label {
  flex: 1;
}

.category-count {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.625rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  min-width: 28px;
  text-align: center;
}

.blog-category-item.active .category-count {
  background: rgba(0, 0, 0, 0.2);
}

/* Blog Sidebar Posts */
.blog-sidebar-posts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.blog-sidebar-post {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.blog-sidebar-post:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.blog-sidebar-post-image {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-muted);
}

.blog-sidebar-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-sidebar-post-category {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.625rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.blog-sidebar-post-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blog-sidebar-post-date {
  font-size: 0.75rem;
  color: var(--muted);
}

.blog-sidebar-post-title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0;
  color: var(--text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-sidebar-post-excerpt {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

/* Blog Grid (para posts relacionados) */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

/* Blog Card */
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--bg-muted);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.blog-card-date {
  color: var(--muted);
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  color: var(--text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-excerpt {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 0 1rem 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: auto;
  transition: var(--transition);
}

.blog-card:hover .blog-card-read-more {
  transform: translateX(4px);
}

/* Blog Empty State */
.blog-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--muted);
}

.blog-empty-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.blog-empty h3 {
  font-size: 1.5rem;
  margin: 0 0 0.5rem 0;
  color: var(--text);
}

.blog-empty p {
  margin: 0;
  font-size: 1rem;
}

/* Blog Loading */
.blog-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  color: var(--muted);
}

.blog-loading .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Share Buttons */
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
}

.share-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

/* Post Page Styles */
.post-page {
  padding: 2rem 0;
}

.post-navigation {
  margin-bottom: 2rem;
}

.post-back-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.post-back-link:hover {
  color: var(--primary-700);
  transform: translateX(-4px);
}

.post-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.post-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  color: var(--muted);
}

.post-loading .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 1rem;
}

.post-header {
  margin-bottom: 2rem;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.post-category {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--bg-muted);
  color: var(--text);
}

.post-date {
  color: var(--muted);
  font-size: 0.875rem;
}

.post-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.2;
  color: var(--text);
}

.post-excerpt {
  font-size: 1.25rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 2rem 0;
}

.post-featured-image {
  margin: 2rem 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.post-featured-image img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 500px;
  object-fit: cover;
}

.post-body {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 3rem;
}

.post-body p {
  margin-bottom: 1.5rem;
}

.post-body h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem 0;
  color: var(--text);
}

.post-body h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
  color: var(--text);
}

.post-body ul,
.post-body ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.post-body li {
  margin-bottom: 0.75rem;
}

.post-body a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.post-body a:hover {
  border-bottom-color: var(--primary);
}

.post-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: var(--shadow);
}

.post-body blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--muted);
}

.post-footer {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.post-share span {
  font-weight: 600;
  color: var(--text);
}

.post-cta {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.post-error {
  text-align: center;
  padding: 4rem 2rem;
}

.post-error-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.post-error h3 {
  font-size: 1.5rem;
  margin: 0 0 0.5rem 0;
  color: var(--text);
}

.post-error p {
  margin: 0 0 1rem 0;
  color: var(--muted);
}

/* Utilities */
:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 2px;
}

.is-hidden {
  display: none !important;
}

/* ============================================
   RESPONSIVE - MOBILE FIRST
   ============================================ */

/* Mobile pequeno (até 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  body {
    padding-top: 80px;
  }
  
  .header-inner {
    gap: 12px;
    height: 80px;
  }
  
  .logo-container {
    width: 40px;
    height: 40px;
    padding: 3px;
  }
  
  .logo {
    width: 34px;
    height: 34px;
  }
  
  .brand-name {
    font-size: 14px;
    letter-spacing: 1px;
  }
  
  .nav-toggle {
    font-size: 20px;
    padding: 6px;
  }
  
  .nav .nav-link {
    padding: 16px 20px;
    font-size: 12px;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .section h2 {
    font-size: 24px;
  }
  
  .blog-content {
    padding: 40px 0;
  }
  
  .blog-featured-header,
  .blog-featured-body {
    padding: 30px 20px;
  }
  
  .blog-featured-title {
    font-size: 24px;
  }
  
  .footer-inner {
    gap: 20px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 16px;
  }
  
  .footer-ctas {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  .footer-ig,
  .footer-wa {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }
}

/* Tablet (768px) */
@media (max-width: 768px) {
  body {
    font-size: 14px;
    line-height: 1.7;
  }
  
  .container {
    padding: 0 20px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section h2 {
    font-size: 28px;
  }
  
  .header-search-container {
    display: none;
  }
  
  .blog-layout {
    gap: 40px;
    margin-top: 40px;
  }
  
  .blog-featured-header,
  .blog-featured-body {
    padding: 40px 30px;
  }
  
  .blog-featured-title {
    font-size: 28px;
  }
  
  .blog-sidebar-post {
    flex-direction: column;
  }
  
  .blog-sidebar-post-image {
    width: 100%;
    height: 200px;
  }
  
  .post-title {
    font-size: 2rem;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .nav {
    display: inline-flex !important;
    position: static;
    padding: 0;
    flex-direction: row;
    background: transparent;
    border: 0;
    box-shadow: none;
    gap: 40px;
    max-height: none !important;
    opacity: 1 !important;
  }
  
  .nav .nav-link {
    width: auto;
    text-align: left;
    padding: 0;
    border-bottom: none;
    font-size: 13px;
  }
  
  .nav-toggle {
    display: none;
  }
  
  .header-search-container {
    display: block;
  }
  
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* Desktop grande (1200px+) */
@media (min-width: 1200px) {
  .blog-layout {
    grid-template-columns: 2fr 1fr;
    gap: 80px;
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop muito grande (1440px+) */
@media (min-width: 1440px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

