/* ===== ABROAD REALITY — Folha de Estilos Principal ===== */

/* --- Paleta mediterrânea de Malta: verde-oliva, areia, oceano profundo --- */
:root {
  /* Verdes mediterrâneos (harmonia com logo) */
  --verde-oliva: #4a6741;
  --verde-escuro: #2e4528;
  --verde-suave: #6b8f62;
  --verde-menta: #e8f0e6;

  /* Areia e calcário maltês */
  --areia: #e2c98a;
  --areia-clara: #f0e0b0;
  --calcario: #faf4e8;
  --calcario-escuro: #f0e6cc;

  /* Oceano Mediterrâneo (usado com parcimônia) */
  --oceano: #1a5276;
  --oceano-profundo: #0d3349;

  /* Quentes de apoio */
  --terracota: #b8603a;
  --terracota-light: #d4795a;
  --dourado: #c9a84c;
  --dourado-escuro: #a8882e;

  /* Neutros */
  --texto: #1e1e1e;
  --texto-suave: #5a5a4a;
  --branco: #ffffff;
  --cinza-claro: #f5f2ea;

  /* Sombras com tom quente */
  --sombra: 0 4px 20px rgba(74,103,65,0.12);
  --sombra-hover: 0 8px 30px rgba(74,103,65,0.22);
  --radius: 12px;
  --radius-sm: 6px;
  --transicao: 0.25s ease;
}

/* --- Reset e Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Lato', 'Segoe UI', Arial, sans-serif;
  color: var(--texto);
  background-color: var(--branco);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--verde-escuro);
  color: var(--branco);
  padding: 0.75rem 1rem;
  z-index: 2000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  outline: 3px solid var(--areia);
}

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

a {
  color: var(--verde-oliva);
  text-decoration: none;
  transition: color var(--transicao);
}

a:hover { color: var(--terracota); }

ul { list-style: none; }

/* --- Tipografia --- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', 'Georgia', serif;
  line-height: 1.25;
  color: var(--verde-escuro);
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }

p { margin-bottom: 1.2rem; }

/* --- Container --- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Botões --- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: background var(--transicao), transform var(--transicao), box-shadow var(--transicao);
  letter-spacing: 0.02em;
  text-align: center;
}

.btn--primary {
  background: transparent;
  color: var(--calcario-escuro);
  border: 2px solid var(--calcario-escuro);
}

.btn--primary:hover {
  background: var(--calcario-escuro);
  color: var(--branco);
}

.btn--secondary {
  background: transparent;
  color: var(--verde-oliva);
  border: 2px solid var(--verde-oliva);
}

.btn--secondary:hover {
  background: var(--verde-oliva);
  color: var(--branco);
}

.btn--gold {
  background: var(--dourado);
  color: var(--branco);
}

.btn--gold:hover {
  background: #b8943e;
  color: var(--branco);
}

/* ===== HEADER & NAVEGAÇÃO ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--areia);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: box-shadow var(--transicao);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-wrap img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  color: var(--verde-escuro);
  font-family: 'Lato', 'Segoe UI', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Navegação desktop */
.nav-menu {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.nav-menu a {
  color: var(--verde-escuro);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: background var(--transicao), color var(--transicao);
  letter-spacing: 0.01em;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: var(--verde-menta);
  color: var(--verde-escuro);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--verde-escuro);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--branco);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 2rem;
    border-bottom: 2px solid var(--areia);
    box-shadow: var(--sombra);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    gap: 0.25rem;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-menu a {
    padding: 0.85rem 1rem;
    font-size: 1.05rem;
    border-radius: var(--radius-sm);
  }
}

/* ===== HERO / BANNER ===== */
.hero {
  margin-top: 74px;
  background: linear-gradient(150deg, var(--verde-escuro) 0%, var(--verde-oliva) 55%, #5a7a50 100%);
  position: relative;
  overflow: hidden;
  padding: 4.25rem 1.5rem 2.25rem;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.25);
  border: 1px solid var(--dourado);
  color: var(--areia);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--branco);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero p {
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Ondas decorativas */
.hero-wave {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ===== SEÇÃO GENÉRICA ===== */
.section {
  padding: 2rem 0 3rem;
}

.section--alt {
  background: var(--cinza-claro);
}

.section-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-header h2 {
  margin-bottom: 0.6rem;
}

.section-header p {
  color: var(--texto-suave);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: 0.5rem;
}

/* ===== BUSCA DE ARTIGOS ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.article-search {
  max-width: 720px;
  margin: 0 auto 1.5rem;
}

.article-search__input {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border: 1px solid #d8d1c2;
  border-radius: 999px;
  font-size: 0.98rem;
  color: var(--texto);
  background: var(--branco);
  box-shadow: 0 4px 16px rgba(46, 69, 40, 0.06);
}

.article-search__input:focus {
  outline: none;
  border-color: var(--verde-oliva);
  box-shadow: 0 0 0 4px rgba(74, 103, 65, 0.12);
}

.search-empty {
  display: none;
  text-align: center;
  color: var(--texto-suave);
  margin: 0 0 1.5rem;
  font-weight: 600;
}

/* ===== CARDS DE ARTIGOS ===== */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--branco);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sombra);
  transition: transform var(--transicao), box-shadow var(--transicao);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sombra-hover);
}

.card__thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--verde-escuro), var(--verde-oliva));
}

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

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

.card__category {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--terracota);
  color: var(--branco);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
}

.card__body {
  padding: 1.4rem 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--texto-suave);
  margin-bottom: 0.75rem;
}

.card__meta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
  color: var(--verde-escuro);
  line-height: 1.3;
}

.card h3 a { color: inherit; }
.card h3 a:hover { color: var(--terracota); }

.card__excerpt {
  color: var(--texto-suave);
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.card__footer {
  margin-top: auto;
}

.read-more {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--verde-oliva);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transicao), color var(--transicao);
}

.read-more:hover {
  color: var(--terracota);
  gap: 0.6rem;
}

/* Card destaque (featured) */
.card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.card--featured .card__thumb {
  height: 100%;
  min-height: 280px;
}

@media (max-width: 640px) {
  .card--featured {
    grid-template-columns: 1fr;
  }
  .card--featured .card__thumb {
    height: 220px;
  }
}

/* ===== CARD THUMB PLACEHOLDER (quando não há imagem) ===== */
.card__thumb--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

/* ===== SEÇÃO MAPEAMENTO CTA ===== */
.cta-banner {
  background-color: var(--verde-escuro);
  background-image: linear-gradient(145deg, rgba(46, 69, 40, 0.9) 0%, rgba(74, 103, 65, 0.82) 100%), var(--cta-banner-image, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  text-align: center;
  color: var(--branco);
  box-shadow: var(--sombra);
  overflow: hidden;
}

.cta-banner h2 {
  color: var(--branco);
  margin-bottom: 0.9rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 1.75rem;
}

/* ===== PÁGINA QUEM SOU EU ===== */
.about-section {
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3.5rem;
  align-items: start;
}

.about-sidebar {
  position: sticky;
  top: 90px;
}

.about-author-card {
  background: var(--calcario);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--areia);
}

.about-author-card h3 {
  font-size: 1.3rem;
  margin: 1rem 0 0.3rem;
  color: var(--verde-escuro);
}

.about-author-card p {
  font-size: 0.9rem;
  color: var(--texto-suave);
  margin-bottom: 0;
}

.contact-box {
  background: var(--verde-escuro);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  margin-top: 1.5rem;
  color: var(--branco);
  text-align: center;
}

.contact-box h4 {
  color: var(--areia);
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.contact-box p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
}

.contact-email-placeholder {
  background: rgba(255,255,255,0.1);
  border: 1px dashed rgba(255,255,255,0.35);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
  color: var(--areia);
  font-style: italic;
}

.countries-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.country-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--calcario);
  border: 1px solid var(--areia);
  border-radius: 20px;
  padding: 0.3rem 0.85rem;
  font-size: 0.88rem;
  color: var(--verde-escuro);
  font-weight: 600;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--texto);
}

.features-list li::before {
  content: '✔';
  color: var(--terracota);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-sidebar {
    position: static;
  }
}

/* ===== PÁGINA DO ARTIGO ===== */
.post-hero {
  margin-top: 74px;
  background: linear-gradient(150deg, var(--verde-escuro), var(--verde-oliva));
  padding: 3.5rem 1.5rem 3rem;
  color: var(--branco);
}

.post-category {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--areia);
  background: rgba(255,255,255,0.12);
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.post-hero h1 {
  color: var(--branco);
  max-width: 780px;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}

.post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Layout do artigo */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* Conteúdo do artigo */
.post-content {
  min-width: 0;
}

.post-content h2 {
  font-size: 1.7rem;
  margin: 2.2rem 0 1rem;
  color: var(--verde-escuro);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--areia);
}

.post-content h3 {
  font-size: 1.25rem;
  margin: 1.75rem 0 0.75rem;
  color: var(--verde-oliva);
}

.post-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--texto);
  margin-bottom: 1.3rem;
}

.post-content ul, .post-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.3rem;
}

.post-content li {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

.post-content strong { color: var(--verde-escuro); }

.post-content blockquote {
  border-left: 4px solid var(--terracota);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--calcario);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--texto-suave);
}

/* Bloco de afiliado */
.affiliate-block {
  background: linear-gradient(135deg, var(--calcario), #fdf8ed);
  border: 1px solid var(--dourado);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.affiliate-block__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.affiliate-block__content h4 {
  font-size: 1rem;
  color: var(--verde-escuro);
  margin-bottom: 0.4rem;
}

.affiliate-block__content p {
  font-size: 0.9rem;
  color: var(--texto-suave);
  margin-bottom: 0.75rem;
}

.affiliate-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--dourado);
  color: var(--branco);
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  transition: background var(--transicao);
}

.affiliate-link:hover {
  background: #b8943e;
  color: var(--branco);
}

/* ===== SIDEBAR DO ARTIGO ===== */
.post-sidebar {
  position: sticky;
  top: 90px;
  align-self: start;
}

.sidebar-widget {
  background: var(--cinza-claro);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--areia);
}

.sidebar-widget h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--texto-suave);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--areia);
}

.related-posts { list-style: none; }

.related-posts li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--areia);
  font-size: 0.9rem;
}

.related-posts li:last-child { border-bottom: none; }

.related-posts a {
  color: var(--verde-escuro);
  font-weight: 600;
  transition: color var(--transicao);
}

.related-posts a:hover { color: var(--terracota); }

@media (max-width: 900px) {
  .post-layout {
    grid-template-columns: 1fr;
  }
  .post-sidebar {
    position: static;
  }
}

/* ===== SEÇÃO DE COMENTÁRIOS ===== */
.comments-section {
  border-top: 2px solid var(--areia);
  padding-top: 3rem;
  margin-top: 3rem;
}

.comments-section h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.comment-form {
  background: var(--cinza-claro);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 3rem;
  border: 1px solid var(--areia);
}

.comment-form h3 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--verde-escuro);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--verde-escuro);
}

.form-group input,
.form-group textarea {
  border: 1.5px solid var(--areia);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--branco);
  color: var(--texto);
  transition: border-color var(--transicao);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--verde-oliva);
  box-shadow: 0 0 0 3px rgba(74,103,65,0.15);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

/* Lista de comentários */
.comments-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comment {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  align-items: start;
}

.comment__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--verde-oliva), var(--verde-escuro));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--branco);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.comment__body {
  background: var(--cinza-claro);
  border-radius: 0 var(--radius) var(--radius) var(--radius);
  padding: 1rem 1.25rem;
  border: 1px solid var(--areia);
}

.comment__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.comment__author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--verde-escuro);
}

.comment__date {
  font-size: 0.78rem;
  color: var(--texto-suave);
}

.comment__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--texto);
  margin-bottom: 0;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--verde-escuro);
  color: rgba(255,255,255,0.8);
  padding: 3.5rem 0 1.5rem;
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand img {
  height: 56px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: brightness(1.2);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 280px;
}

.footer-col h5 {
  color: var(--areia);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--transicao);
}

.footer-col a:hover { color: var(--areia); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom a {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
}

.footer-bottom a:hover { color: var(--areia); }

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 460px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PÁGINA DESTINOS ===== */
.destinos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.destino-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 220px;
  box-shadow: var(--sombra);
  cursor: pointer;
  transition: transform var(--transicao), box-shadow var(--transicao);
}

.destino-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra-hover);
}

.destino-card__bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--verde-escuro), var(--verde-oliva));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: transform 0.4s ease;
}

.destino-card:hover .destino-card__bg {
  transform: scale(1.05);
}

.destino-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(46,69,40,0.95) 0%, transparent 100%);
  padding: 2rem 1.25rem 1.25rem;
  color: var(--branco);
}

.destino-card__label h3 {
  color: var(--branco);
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.destino-card__label span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
}

/* ===== MAPEAMENTO DE PERFIL ===== */
.mapeamento-hero {
  margin-top: 74px;
  background: linear-gradient(135deg, rgba(39, 77, 46, 0.86) 0%, rgba(78, 115, 62, 0.82) 55%, rgba(121, 152, 95, 0.78) 100%), url('https://images.unsplash.com/photo-1669294841689-0ceb34ad40c1?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
  background-size: cover;
  background-position: center bottom;
  padding: 4rem 1.5rem;
  text-align: center;
  color: var(--branco);
}

.mapeamento-hero h1 { color: var(--branco); }
.mapeamento-hero p { color: rgba(255,255,255,0.9); }

.mapeamento-content {
  max-width: 820px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.mapeamento-cta-box {
  background: var(--calcario);
  border: 2px solid var(--areia);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  margin-top: 2rem;
}

.mapeamento-cta-box h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.mapeamento-cta-box p {
  color: var(--texto-suave);
  margin-bottom: 1.75rem;
}

/* ===== UTILITÁRIOS ===== */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }

/* ===== ANIMAÇÕES ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.5s ease both; }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--verde-oliva);
  color: var(--branco);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sombra);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transicao), background var(--transicao);
  z-index: 900;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover { background: var(--verde-escuro); }

/* ===== IMAGEM HERO DO ARTIGO COM OVERLAY ===== */
.post-hero--img {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-color: var(--verde-escuro);
}

.post-hero--img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(46,69,40,0.35) 0%,
    rgba(46,69,40,0.75) 60%,
    rgba(46,69,40,0.92) 100%
  );
}

.post-hero--img .container--narrow {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: 1.75rem;
}

/* ===== IMAGEM INTERNA DO ARTIGO ===== */
.post-img {
  margin: 2rem 0;
}

.post-img img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: var(--sombra);
  transition: transform 0.4s ease;
}

.post-img:hover img {
  transform: scale(1.02);
}

.post-img figcaption {
  font-size: 0.82rem;
  color: var(--texto-suave);
  text-align: center;
  padding: 0.6rem 1rem;
  background: var(--cinza-claro);
  border-radius: 0 0 var(--radius) var(--radius);
  font-style: italic;
}

/* ===== HERO HOME COM IMAGEM DE FUNDO ===== */
.hero--bg-img {
  position: relative;
  background-size: cover;
  background-position: center;
}

.hero--bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(46,69,40,0.82) 0%,
    rgba(74,103,65,0.72) 60%,
    rgba(90,122,80,0.55) 100%
  );
  z-index: 0;
}

.hero--bg-img .hero-content {
  position: relative;
  z-index: 1;
}

/* ===== CARD COM IMAGEM REAL ===== */
.card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== DESTINO CARD COM IMAGEM ===== */
.destino-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.4s ease;
}

.destino-card:hover .destino-card__img {
  transform: scale(1.07);
}

.destino-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

/* ===== SECTION LOGO TRATADO (mix-blend) ===== */
.logo-wrap img {
  mix-blend-mode: multiply;
}

/* Em fundo escuro, não aplicar mix-blend */
.site-footer .logo-wrap img,
.hero .logo-wrap img {
  mix-blend-mode: normal;
  filter: brightness(0) invert(1);
}

/* ===== DESTINO — PÁGINA ENRIQUECIDA ===== */
.destino-detail {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sombra);
  margin-bottom: 3rem;
  background: var(--branco);
}

.destino-detail__header {
  position: relative;
  height: 260px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.destino-detail__header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(46,69,40,0.88) 100%);
}

.destino-detail__title {
  position: relative;
  z-index: 1;
  padding: 1.5rem 2rem;
  color: var(--branco);
}

.destino-detail__title h2 {
  color: var(--branco);
  font-size: 2rem;
  margin-bottom: 0.2rem;
}

.destino-detail__title p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin: 0;
}

.destino-detail__body {
  padding: 2rem;
}

.destino-topics {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.topic-card {
  background: var(--calcario);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--verde-oliva);
}

.topic-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--verde-escuro);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.topic-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--texto-suave);
  margin: 0;
}

.topic-card--food   { border-left-color: var(--terracota); }
.topic-card--house  { border-left-color: var(--dourado); }
.topic-card--work   { border-left-color: var(--verde-oliva); }
.topic-card--fun    { border-left-color: #8e44ad; }
.topic-card--safety { border-left-color: #1a5276; }

@media (max-width: 600px) {
  .destino-topics { grid-template-columns: 1fr; }
  .destino-detail__header { height: 200px; }
}

/* ===== DESTINOS — hero e conteúdo (gêmeo do mapeamento-hero) ===== */
.destinos-hero {
  margin-top: 74px;
  background-size: cover;
  background-position: center bottom;
  padding: 4.5rem 1.5rem;
  text-align: center;
  color: var(--branco);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.destinos-hero .container--narrow {
  max-width: 760px;
}

.destinos-hero h1 { color: var(--branco); }
.destinos-hero p  { color: rgba(255,255,255,0.9); }

/* ===== ARTIGOS — hero ===== */
.artigos-hero {
  margin-top: 74px;
  background-size: cover;
  background-position: center bottom;
  padding: 4.5rem 1.5rem;
  text-align: center;
  color: var(--branco);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.artigos-hero .container--narrow {
  max-width: 760px;
}

.artigos-hero h1 { color: var(--branco); }
.artigos-hero p  { color: rgba(255,255,255,0.9); }

/* ===== QUEM SOU EU — hero ===== */
.quem-sou-eu-hero {
  margin-top: 74px;
  background-size: cover;
  background-position: center bottom;
  padding: 4.5rem 1.5rem;
  text-align: center;
  color: var(--branco);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quem-sou-eu-hero .container--narrow {
  max-width: 760px;
}

.quem-sou-eu-hero h1 { color: var(--branco); }
.quem-sou-eu-hero p  { color: rgba(255,255,255,0.9); }

.destinos-content {
  max-width: 820px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.destinos-content h2 {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  color: var(--verde-escuro);
  margin-bottom: 0.75rem;
}

.destinos-content > p {
  color: var(--texto-suave);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

/* Caixa de informação interna (espelho da caixa do mapeamento) */
.destinos-info-box {
  background: var(--calcario);
  border: 1px solid var(--areia);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin: 2rem 0;
}

.destinos-info-box h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--verde-escuro);
}

/* CTA box (espelho do mapeamento-cta-box) */
.destinos-cta-box {
  background: var(--calcario);
  border: 2px solid var(--areia);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  margin-top: 2rem;
}

.destinos-cta-box h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--verde-escuro);
}

.destinos-cta-box p {
  color: var(--texto-suave);
  margin-bottom: 1.75rem;
}

/* Bloco de cada país */
.destino-bloco {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sombra);
  margin-bottom: 2.5rem;
  background: var(--branco);
  border: 1px solid var(--areia);
}

.destino-bloco__header {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.destino-bloco__header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 25%, rgba(46,69,40,0.88) 100%);
}

.destino-bloco__title {
  position: relative;
  z-index: 1;
  padding: 1.25rem 1.75rem;
  color: var(--branco);
}

.destino-bloco__title h2 {
  color: var(--branco);
  font-size: 1.7rem;
  margin-bottom: 0.2rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

.destino-bloco__title p {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  margin: 0;
}

.destino-bloco__body {
  padding: 1.75rem;
}

.destino-topicos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.topico {
  background: var(--calcario);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
  border-left: 4px solid var(--verde-oliva);
}

.topico--alimentacao { border-left-color: var(--terracota); }
.topico--moradia     { border-left-color: var(--dourado); }
.topico--emprego     { border-left-color: var(--verde-oliva); }
.topico--lazer       { border-left-color: #8e44ad; }
.topico--seguranca   { border-left-color: var(--oceano); }

.topico h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--verde-escuro);
}

.topico--alimentacao h4 { color: var(--terracota); }
.topico--moradia h4     { color: var(--dourado-escuro); }
.topico--emprego h4     { color: var(--verde-oliva); }
.topico--lazer h4       { color: #8e44ad; }
.topico--seguranca h4   { color: var(--oceano); }

.topico p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--texto-suave);
  margin: 0;
}

@media (max-width: 560px) {
  .destino-topicos { grid-template-columns: 1fr; }
  .destino-bloco__header { height: 170px; }
}
