/* ======================================================================
   DIMENSÃO EMPREENDIMENTOS - BLOG
   Folha de estilo compartilhada (index + artigos)
   Mesmo design system das páginas estáticas do site.
====================================================================== */

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

:root {
  --teal:        #006B73;
  --teal-dark:   #004D54;
  --teal-light:  #e8f4f5;
  --green:       #45e623;
  --green-dark:  #38bd1c;
  --gold:        #b08a5b;
  --gold-light:  #f5ead8;
  --gray-100:    #f7f7f7;
  --gray-200:    #ebebeb;
  --gray-400:    #9a9a9a;
  --gray-600:    #5a5a5a;
  --gray-800:    #2a2a2a;
  --white:       #ffffff;
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Inter', 'Segoe UI', sans-serif;
  --radius:      8px;
  --shadow-sm:   0 2px 12px rgba(0,0,0,.08);
  --shadow-md:   0 6px 28px rgba(0,0,0,.12);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.16);
  --transition:  .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-800);
}
.section-title span { color: var(--teal); }

/* ==================== BOTÕES ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 4px;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--green); color: var(--teal-dark); }
.btn-gold:hover { background: var(--green-dark); color: var(--teal-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 20px 40px; font-size: 1rem; }
.whatsapp-icon { width: 22px; height: 22px; fill: currentColor; flex-shrink: 0; }

/* ==================== NAVBAR (MENU GERAL) ==================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: var(--teal-dark);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); padding: 12px 0; }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; }
.navbar-logo img {
  width: auto;
  height: 46px;
  transition: var(--transition);
  filter: brightness(0) invert(1);
}
.navbar-nav { display: flex; align-items: center; gap: 30px; list-style: none; }
.navbar-nav a {
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
}
.navbar-nav a:hover,
.navbar-nav a.active { color: var(--green); }
.navbar-cta { font-size: .85rem; padding: 10px 22px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; border-radius: 2px; background: var(--white); transition: var(--transition); }

/* ==================== MOBILE NAV ==================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 100px 32px 40px;
  gap: 8px;
  transform: translateX(100%);
  transition: transform var(--transition);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gray-800);
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--teal); }
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--gray-100);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gray-800);
}

/* ==================== BLOG HERO ==================== */
/* banner: imagem (meia-nau) coberta por overlay teal para o texto continuar legível.
   troque a URL da imagem para personalizar por página. */
.blog-hero {
  background:
    linear-gradient(135deg, rgba(0,77,84,.93) 0%, rgba(0,107,115,.80) 45%, rgba(0,61,67,.94) 100%),
    url('/images/meia-nau-residence-dimensao-3-web.jpg') center/cover no-repeat;
  position: relative;
  padding: 150px 0 80px;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,.03) 40px, rgba(255,255,255,.03) 41px),
    repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,.03) 40px, rgba(255,255,255,.03) 41px);
}
.blog-hero .container { position: relative; z-index: 1; }
.blog-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  max-width: 760px;
  margin-bottom: 18px;
}
.blog-hero h1 span { color: var(--green); font-style: italic; }
.blog-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  max-width: 620px;
  line-height: 1.7;
}

/* ==================== BLOG LISTAGEM ==================== */
.blog-section { padding: 80px 0; }

.featured-post {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 64px;
}
/* imagem estica para preencher toda a altura do card (sem faixa branca abaixo) */
.featured-post .post-thumb { min-height: 340px; height: 100%; }
.featured-post .post-body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.featured-post h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.25;
  margin: 6px 0 18px;
}
.featured-post .post-excerpt { line-height: 1.75; margin-bottom: 26px; }

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.post-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.post-thumb {
  position: relative;
  width: 100%;
  height: 210px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  overflow: hidden;
}
.post-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.post-thumb.ph-1 { background: linear-gradient(135deg, #003D43 0%, #006B73 100%); }
.post-thumb.ph-2 { background: linear-gradient(135deg, #1a5c63 0%, #004D54 100%); }
.post-thumb.ph-3 { background: linear-gradient(135deg, #005860 0%, #003a40 100%); }
.post-thumb.ph-4 { background: linear-gradient(135deg, #0d7a84 0%, #006B73 100%); }

.post-tag {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: var(--green);
  color: var(--teal-dark);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 30px;
}

.post-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .78rem;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.post-meta time { display: inline-flex; align-items: center; gap: 6px; }
.post-card h2, .post-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--gray-800);
  margin-bottom: 12px;
  transition: color var(--transition);
}
.post-card:hover h2, .post-card:hover h3 { color: var(--teal); }
/* títulos clicáveis: o link herda a cor do título e acompanha o hover */
.post-body h2 a, .post-body h3 a { color: inherit; text-decoration: none; transition: color var(--transition); }
.featured-post h2 a:hover, .post-card h2 a:hover, .post-card h3 a:hover { color: var(--teal); }
.post-excerpt {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}
.post-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--teal);
}
.post-readmore svg { width: 16px; height: 16px; fill: currentColor; transition: transform var(--transition); }
.post-card:hover .post-readmore svg { transform: translateX(4px); }

/* ==================== ARTIGO ==================== */
.article-head {
  background:
    linear-gradient(135deg, rgba(0,77,84,.94) 0%, rgba(0,107,115,.84) 45%, rgba(0,61,67,.95) 100%),
    url('/images/meia-nau-residence-dimensao-3-web.jpg') center/cover no-repeat;
  position: relative;
  padding: 140px 0 70px;
  overflow: hidden;
}
/* override por artigo: defina --banner no header para trocar a imagem */
.article-head[style*="--banner"] {
  background:
    linear-gradient(135deg, rgba(0,77,84,.94) 0%, rgba(0,107,115,.84) 45%, rgba(0,61,67,.95) 100%),
    var(--banner) center/cover no-repeat;
}
.article-head::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,.03) 40px, rgba(255,255,255,.03) 41px),
    repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,.03) 40px, rgba(255,255,255,.03) 41px);
}
.article-head .container-narrow { position: relative; z-index: 1; }

.breadcrumb {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 22px;
}
.breadcrumb a { color: rgba(255,255,255,.8); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { margin: 0 8px; }

.article-tag {
  display: inline-block;
  background: var(--green);
  color: var(--teal-dark);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.article-head h1 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 22px;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  color: rgba(255,255,255,.75);
  font-size: .85rem;
}
.article-meta .author { display: flex; align-items: center; gap: 10px; }
.article-meta .author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  /* logo da Dimensão como miniatura do autor (escritor do artigo) */
  background: #fff url('/images/logo/LOGO-DIMENSAO-fundo-branco.png') center/78% no-repeat;
  color: transparent;
  font-size: 0;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.article-meta .author strong { color: var(--white); display: block; font-size: .9rem; }
.article-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.4); }

/* corpo do artigo */
.article-body { padding: 56px 0 40px; }
.article-body .container-narrow > * { max-width: 720px; }

.article-lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--gray-800);
  font-weight: 500;
  margin-bottom: 32px;
}
.article-body p { font-size: 1.02rem; color: var(--gray-600); margin-bottom: 22px; }
.article-body h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1.25;
  margin: 48px 0 18px;
  scroll-margin-top: 100px;
}
.article-body h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--teal);
  margin: 32px 0 12px;
}
.article-body ul, .article-body ol { margin: 0 0 24px 0; padding-left: 4px; list-style: none; }
.article-body ul li, .article-body ol li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 1.02rem;
  color: var(--gray-600);
  line-height: 1.6;
}
.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  background: var(--teal);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  mask-size: cover; -webkit-mask-size: cover;
}
.article-body ol { counter-reset: li; }
.article-body ol li { counter-increment: li; }
.article-body ol li::before {
  content: counter(li);
  position: absolute;
  left: 0; top: 1px;
  width: 22px; height: 22px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.article-body strong { color: var(--gray-800); font-weight: 700; }
.article-body a:not(.btn) { color: var(--teal); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

.article-body blockquote {
  border-left: 4px solid var(--green);
  background: var(--gray-100);
  padding: 22px 26px;
  margin: 0 0 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--gray-800);
}

/* figura ilustrativa */
.article-figure { margin: 8px 0 32px; }
.article-figure img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: block;
}
.article-figure figcaption {
  font-size: .82rem;
  color: var(--gray-400);
  margin-top: 10px;
  text-align: center;
  font-style: italic;
}

/* tabela de custos / dados */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 28px;
  font-size: .95rem;
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  overflow: hidden;
}
.data-table caption {
  caption-side: top;
  text-align: left;
  font-size: .82rem;
  color: var(--gray-400);
  margin-bottom: 10px;
}
.data-table th, .data-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--gray-200); }
.data-table thead th { background: var(--teal); color: var(--white); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; }
.data-table tbody tr:nth-child(even) { background: var(--gray-100); }
.data-table tbody td:last-child { font-weight: 700; color: var(--teal-dark); }

/* caixa de destaque "resposta rápida" (GEO) */
.quick-answer {
  background: var(--teal-light);
  border: 1px solid #cfe6e8;
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 0 0 32px;
}
.quick-answer strong.qa-label {
  display: block;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.quick-answer p { margin: 0; color: var(--gray-800); font-size: 1.02rem; }

/* índice (TOC) */
.toc {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 26px 30px;
  margin: 0 0 40px;
}
.toc h2 {
  font-family: var(--font-body) !important;
  font-size: .8rem !important;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin: 0 0 16px !important;
}
.toc ol { margin: 0; padding: 0; list-style: none; counter-reset: toc; }
/* especificidade .toc ol li (0,1,2) iguala .article-body ol li e, por vir depois, vence:
   evita herdar a numeração circulada da lista ordenada do artigo */
.toc ol li { padding-left: 0; margin-bottom: 10px; counter-increment: toc; }
.toc ol li::before { content: none; background: none; }
.toc a { color: var(--gray-600); font-weight: 500; font-size: .95rem; text-decoration: none; }
.toc a::before { content: counter(toc) '. '; color: var(--gold); font-weight: 700; }
.toc a:hover { color: var(--teal); }

/* caixa CTA dentro do artigo */
.article-cta {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  border-radius: var(--radius);
  padding: 40px;
  margin: 44px 0;
  text-align: center;
}
.article-cta h3 { font-family: var(--font-head); color: var(--white); font-size: 1.5rem; margin-bottom: 12px; }
.article-cta p { color: rgba(255,255,255,.82); margin-bottom: 24px; }

/* box do autor / E-E-A-T */
.author-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 28px;
  margin: 40px 0;
}
.author-box .author-avatar {
  width: 68px; height: 68px;
  border-radius: 50%;
  /* logo da Dimensão como miniatura do autor (escritor do artigo) */
  background: #fff url('/images/logo/LOGO-DIMENSAO-fundo-branco.png') center/80% no-repeat;
  color: transparent;
  font-size: 0;
  border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.author-box h3 { font-size: 1.05rem; color: var(--gray-800); margin-bottom: 4px; }
.author-box .author-role { font-size: .85rem; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.author-box p { font-size: .9rem; color: var(--gray-600); margin: 0; }

/* FAQ */
.faq-section { background: var(--gray-100); padding: 72px 0; }
.faq-list { max-width: 820px; margin: 32px auto 0; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--teal); }
.faq-question .chevron { width: 20px; height: 20px; fill: var(--teal); flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner { padding: 0 26px 22px; font-size: .95rem; color: var(--gray-600); line-height: 1.7; }

/* relacionados */
.related-section { padding: 64px 0; background: var(--gray-100); }
.related-section .section-title { margin-bottom: 0; }

/* ==================== BARRA DE CATEGORIAS (filtro no index) ==================== */
.cat-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 40px;
}
.cat-btn {
  padding: 9px 20px;
  border-radius: 30px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
}
.cat-btn:hover { border-color: var(--teal); color: var(--teal); }
.cat-btn.active { background: var(--teal); border-color: var(--teal); color: var(--white); }

/* ==================== TAGS DO ARTIGO ==================== */
.tags-section { padding: 8px 0 0; }
.tags-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.tags-row .tags-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-right: 4px;
}
.tag-pill {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 30px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: .82rem;
  font-weight: 600;
}

/* ==================== CTA FINAL ==================== */
.cta-section {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,.06) 0%, transparent 50%);
}
.cta-content { position: relative; z-index: 1; }
.cta-content .section-label { color: var(--green); }
.cta-content h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--white); margin-bottom: 20px; line-height: 1.2; }
.cta-content p { font-size: 1.05rem; color: rgba(255,255,255,.8); max-width: 540px; margin: 0 auto 36px; line-height: 1.7; }
.cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ==================== FOOTER ==================== */
.footer { background: #0d0d0d; color: rgba(255,255,255,.65); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; margin-bottom: 48px; }
.footer-logo img { width: auto; height: 44px; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .85; }
.footer-about { font-size: .875rem; line-height: 1.7; max-width: 280px; }
.footer-heading { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .875rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--teal-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; margin-bottom: 12px; }
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--teal); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom-text { font-size: .8rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .8rem; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.whatsapp-float svg { width: 32px; height: 32px; fill: var(--white); }
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.3);
  animation: pulse-wa 2s infinite;
}
@keyframes pulse-wa { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.3); opacity: 0; } }

/* ==================== RESPONSIVO ==================== */
@media (max-width: 1024px) {
  .posts-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .navbar-nav, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .posts-grid { grid-template-columns: 1fr; }
  .featured-post { grid-template-columns: 1fr; }
  .featured-post .post-thumb { min-height: 220px; }
  .featured-post .post-body { padding: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .article-body { padding: 40px 0 24px; }
}
