/* ===========================
   SALVEDOG — estilos globais
   =========================== */

/* Pesos reais lidos da tabela interna OS/2.usWeightClass de cada arquivo
   (os nomes "Black"/"Heavy" da Roc Grotesk não correspondem a 900/900 —
   conferido peso a peso para não deixar o navegador escolher errado). */

@font-face {
  font-family: "Roc Grotesk Compressed";
  src: url("assets/fonts/RocGroteskCompressed-Regular.woff2") format("woff2"),
       url("assets/fonts/fonnts.com-Roc_Grotesk_Compressed.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roc Grotesk Compressed";
  src: url("assets/fonts/RocGroteskCompressed-Medium.woff2") format("woff2"),
       url("assets/fonts/fonnts.com-Roc_Grotesk_Compressed_Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roc Grotesk Compressed";
  src: url("assets/fonts/RocGroteskCompressed-Bold.woff2") format("woff2"),
       url("assets/fonts/fonnts.com-Roc_Grotesk_Compressed_Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roc Grotesk Compressed";
  src: url("assets/fonts/RocGroteskCompressed-Black.woff2") format("woff2"),
       url("assets/fonts/fonnts.com-Roc_Grotesk_Compressed_Black.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roc Grotesk Compressed";
  src: url("assets/fonts/RocGroteskCompressed-Heavy.woff2") format("woff2"),
       url("assets/fonts/fonnts.com-Roc_Grotesk_Compressed_Heavy.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Paleta preto / branco / amarelo do Jorginho (extraído de jorginho.png) —
     os nomes de variável (--green-*) ficaram do layout original em verde,
     mas hoje todos apontam para o preto. Trocar por outra cor é só mudar aqui. */
  --green-900: #1a1a1a;
  --green-700: #1a1a1a;
  --green-600: #1a1a1a;
  --green-500: #1a1a1a;
  --green-100: #fffbe0;
  --sand-50: #ffffff;
  --sand-100: #f2f2f2;
  --ink: #1a1a1a;
  --ink-soft: #55524f;
  --white: #ffffff;
  --amber: #fff151;
  --radius-lg: 20px;
  --radius-md: 12px;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
  --max-width: 1160px;
  color-scheme: light;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 125%; }

body {
  margin: 0;
  font-family: "Roc Grotesk Compressed", "Archivo", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  background: var(--sand-50);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Roc Grotesk Compressed", "Archivo", sans-serif;
  font-weight: 700;
}

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

a { color: inherit; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--green-900);
  text-decoration: none;
  letter-spacing: 0;
}

.logo-img { height: 26px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a:not(.nav-cta) {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 6px 14px;
  border-radius: 100px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.nav-links a:not(.nav-cta):hover {
  background: var(--amber);
  color: var(--ink);
}

.nav-links a.active { background: var(--sand-100); }

.nav-cta {
  background: var(--green-600);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 700;
}

.nav-cta:hover { background: var(--amber); color: var(--ink) !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--green-900);
  cursor: pointer;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--green-600);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.btn-primary:hover { background: var(--amber); color: var(--ink); }

.btn-outline {
  background: transparent;
  border-color: var(--green-600);
  color: var(--green-700);
}
.btn-outline:hover { background: var(--green-100); }

.btn-amber {
  background: var(--amber);
  color: var(--green-900);
}
.btn-amber:hover { filter: brightness(1.05); }

/* ---------- Hero ---------- */

.hero {
  padding: 72px 0 56px;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-700);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  line-height: 1.12;
  margin: 0 0 18px;
  color: var(--green-900);
  letter-spacing: 0;
  font-weight: 800; /* Black — o título de maior destaque da página */
}

.hero p.lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  margin: 0 0 30px;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-art {
  position: relative;
  background: var(--sand-100);
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3.4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-mascot {
  width: auto;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.25));
}

.trust-strip {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.trust-item .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

/* ---------- Section shell ---------- */

section { padding: 72px 0; }

.section-head {
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--green-900);
  margin: 0 0 14px;
  letter-spacing: 0;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: 0;
}

.tag-eyebrow {
  display: block;
  text-align: center;
  color: var(--green-600);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ---------- Products ---------- */

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

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.badge {
  align-self: flex-start;
  background: var(--amber);
  color: var(--green-900);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* "ECO" fica na cor do texto padrão (preto); só o sufixo (PEE/POO) fica
   amarelo — mesmo tratamento do logotipo real nas embalagens. */
.eco-accent { color: inherit; }

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 4px 0 14px;
}

.price-tag .price-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
}

.price-tag .price-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* Balão de fala do Jorginho — separado visualmente da copy institucional,
   para não misturar as duas vozes da marca no mesmo bloco de texto. */
/* Balão de pensamento (nuvem + bolhinhas), não de fala — o Jorginho está
   "imaginando" a frase, não dizendo-a em voz alta. */
.jorginho-bubble {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 26px;
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  max-width: 190px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.jorginho-bubble::before,
.jorginho-bubble::after {
  content: "";
  position: absolute;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.jorginho-bubble::before {
  width: 18px;
  height: 18px;
  bottom: -13px;
  left: 26px;
}

.jorginho-bubble::after {
  width: 10px;
  height: 10px;
  bottom: -23px;
  left: 16px;
}

.jorginho-quip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--amber);
  padding-bottom: 2px;
}

.jorginho-quip:hover { color: var(--ink-soft); }

.product-card .product-img {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--sand-100);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 0.85rem;
  overflow: hidden;
}

.product-card .product-img img { width: 100%; height: 100%; object-fit: contain; }

.product-card h3 {
  font-size: 1.35rem;
  margin: 0 0 8px;
  color: var(--green-900);
}

.product-card p {
  color: var(--ink-soft);
  margin: 0 0 18px;
  flex-grow: 1;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--ink);
}

.product-features li::before {
  content: "✓";
  color: var(--green-500);
  font-weight: 700;
  flex-shrink: 0;
}

.product-card .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Comparison table ---------- */

.compare {
  background: var(--green-900);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--white);
}

.compare .section-head h2,
.compare .section-head p { color: var(--white); }
.compare .section-head p { color: rgba(255,255,255,0.75); }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.compare-table th, .compare-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 0.95rem;
}

.compare-table th {
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.compare-table td.highlight {
  color: var(--amber);
  font-weight: 700;
}

.compare-table tr:last-child td { border-bottom: none; }

/* ---------- ECOPEE feature (StoryBrand) ---------- */

.ecopee-feature {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
}

.ecopee-art {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ecopee-art .badge { align-self: flex-start; }

.ecopee-art-frame {
  background: var(--sand-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ecopee-art-frame img { width: 100%; height: 100%; object-fit: contain; }

.estampa-picker { margin-top: 14px; }

.estampa-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.estampa-thumbs { display: flex; gap: 10px; }

.estampa-thumbs img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid var(--ink);
}

.ecopee-content h2 {
  color: var(--green-900);
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin: 0 0 18px;
  letter-spacing: 0;
}

.ecopee-content p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: 0 0 16px;
}

.ecopee-content .stats-row {
  margin-top: 6px;
  margin-bottom: 10px;
}

.ecopee-plan {
  background: var(--green-100);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: var(--ink) !important;
  font-size: 0.98rem !important;
  margin: 22px 0 26px !important;
}

/* ---------- Avaliações (prova social) ---------- */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.review-card p {
  color: var(--ink);
  font-size: 1rem;
  font-style: italic;
  margin: 0 0 16px;
}

.review-author {
  font-weight: 700;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.reviews-link {
  display: block;
  text-align: center;
  margin-top: 28px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--amber);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* ---------- About / mission ---------- */

.about {
  background: var(--green-100);
}

.about .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-art {
  background: var(--white);
  border-radius: var(--radius-lg);
  aspect-ratio: 1/1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  padding: 48px;
}
.about-art img { width: 100%; height: 100%; object-fit: contain; }

.about-content h2 {
  color: var(--green-900);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin: 0 0 18px;
  letter-spacing: 0;
}

.about-content p { color: var(--ink-soft); font-size: 1.03rem; }

.stats-row {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.stat b {
  display: block;
  font-size: 1.7rem;
  color: var(--green-700);
}
.stat span { font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- B2B section ---------- */

.b2b {
  background: var(--sand-100);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.b2b-content .eyebrow { margin-bottom: 16px; }

.b2b-content h2 {
  color: var(--green-900);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 16px;
  letter-spacing: 0;
}

.b2b-content p { color: var(--ink-soft); margin-bottom: 22px; }

.b2b-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.b2b-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink);
}

.b2b-list li::before {
  content: "🐾";
  flex-shrink: 0;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.form-card h3 {
  margin: 0 0 6px;
  color: var(--green-900);
  font-size: 1.25rem;
}

.form-card > p {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.form-field { margin-bottom: 16px; }

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--green-900);
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1.5px solid #d6d6d6;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--sand-50);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(255, 241, 81, 0.4);
}

.form-card button {
  width: 100%;
  justify-content: center;
  border: none;
}

.form-note {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 12px;
  text-align: center;
}

/* ---------- CTA banner ---------- */

.cta-banner {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  color: var(--white);
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 14px;
  letter-spacing: 0;
}

.cta-banner p {
  color: rgba(255,255,255,0.82);
  margin: 0 0 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .hero-actions { justify-content: center; }

/* ---------- Footer ---------- */

footer {
  background: var(--green-900);
  color: rgba(255,255,255,0.85);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo { color: var(--white); }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.92rem; max-width: 32ch; }

.footer-logo-img {
  height: 30px;
  filter: brightness(0) invert(1);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 16px;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { text-decoration: none; color: rgba(255,255,255,0.75); font-size: 0.92rem; }
.footer-col a:hover { color: var(--white); }

.social-row { display: flex; gap: 12px; margin-top: 4px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  font-size: 1rem;
}
.social-row a:hover { background: rgba(255,255,255,0.2); }

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

/* ---------- Floating WhatsApp button ---------- */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  z-index: 60;
  text-decoration: none;
  font-size: 1.6rem;
  transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .products-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .about .wrap { grid-template-columns: 1fr; }
  .about-art { order: -1; aspect-ratio: 16/9; }
  .ecopee-feature { grid-template-columns: 1fr; padding: 28px; }
  .ecopee-art-frame { aspect-ratio: 16/9; }
  .b2b { grid-template-columns: 1fr; padding: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .compare { padding: 28px; }
  .compare-table { display: block; overflow-x: auto; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--sand-50);
    padding: 20px 24px;
    gap: 16px;
    box-shadow: var(--shadow);
  }
}

/* ---------- Lightbox (ampliar fotos) ---------- */

.zoomable { cursor: zoom-in; }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius-md);
  cursor: default;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
}

/* ---------- Blog: listagem ---------- */

.blog-hero {
  padding: 64px 0 48px;
  text-align: center;
}

.blog-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--ink);
  margin: 14px 0 14px;
}

.blog-hero p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  max-width: 52ch;
  margin: 0 auto;
}

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

.post-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease;
}

.post-card:hover { transform: translateY(-4px); }

.post-card .post-card-img {
  aspect-ratio: 16/10;
  background: var(--sand-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.post-card .post-card-img img { width: 100%; height: 100%; object-fit: cover; }

.post-card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex-grow: 1; }

.post-card-tag {
  align-self: flex-start;
  background: var(--green-100);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.post-card h3 {
  font-size: 1.2rem;
  margin: 0 0 10px;
  color: var(--ink);
}

.post-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0 0 16px;
  flex-grow: 1;
}

.post-card-meta {
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.post-card-more {
  color: var(--ink);
  font-weight: 700;
  border-bottom: 2px solid var(--amber);
  align-self: flex-start;
  padding-bottom: 2px;
}

.blog-empty {
  text-align: center;
  color: var(--ink-soft);
  padding: 48px 0;
}

/* ---------- Blog: artigo ---------- */

.article-header {
  padding: 56px 0 32px;
  text-align: center;
}

.article-header .tag-eyebrow { margin-bottom: 14px; }

.article-header h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--ink);
  max-width: 22ch;
  margin: 0 auto 18px;
}

.article-meta {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.article-cover {
  max-width: 860px;
  margin: 0 auto 8px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--sand-100);
}

.article-cover img { width: 100%; height: 100%; object-fit: cover; }

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 0 24px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ink);
}

.article-body p { margin: 0 0 24px; }

.article-body h2 {
  font-size: 1.5rem;
  color: var(--ink);
  margin: 44px 0 18px;
}

.article-body h3 {
  font-size: 1.2rem;
  color: var(--ink);
  margin: 32px 0 14px;
}

.article-body ul, .article-body ol {
  margin: 0 0 24px;
  padding-left: 22px;
}

.article-body li { margin-bottom: 10px; }

.article-body strong { color: var(--ink); }

.article-body blockquote {
  border-left: 4px solid var(--amber);
  margin: 32px 0;
  padding: 4px 0 4px 22px;
  font-style: italic;
  color: var(--ink-soft);
}

.article-cta {
  max-width: 720px;
  margin: 8px auto 64px;
  background: var(--green-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}

.article-cta p { margin: 0 0 18px; font-size: 1.05rem; }

.article-back {
  display: block;
  text-align: center;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 8px;
}

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