/* ============================================
   MY PETS — Design tokens
   ============================================ */
:root {
  --forest: #1F3B2C;
  --forest-light: #2E5642;
  --forest-deep: #142A1F;
  --cream: #F7F2E7;
  --cream-dim: #EFE8D8;
  --gold: #C69A3E;
  --gold-light: #DAB868;
  --clay: #8B5A3C;
  --sage: #A9B79E;
  --ink: #22281F;
  --ink-soft: #4B5347;

  --font-display: "Fraunces", serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --radius-tag: 22px;
  --shadow-soft: 0 12px 32px rgba(20, 42, 31, 0.14);
  --shadow-card: 0 8px 20px rgba(20, 42, 31, 0.10);
  --container: 1120px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--forest-deep);
  margin: 0;
  line-height: 1.12;
  font-weight: 600;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

/* ============ Focus visibility ============ */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--forest);
  color: var(--cream);
  border-bottom: 1px solid rgba(247,242,231,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--cream);
}
.brand-mark {
  width: 34px; height: 34px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(198,154,62,0.5);
}
.nav-links {
  display: flex;
  gap: 30px;
  font-size: 0.95rem;
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  color: var(--sage);
  transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-cta {
  background: var(--gold);
  color: var(--forest-deep);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s ease, background 0.2s ease;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(247,242,231,0.1);
  border-radius: 999px;
  padding: 3px;
}
.lang-toggle button {
  background: none;
  border: none;
  color: var(--sage);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 6px 9px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-toggle button.active {
  background: var(--gold);
  color: var(--forest-deep);
  font-weight: 600;
}
.lang-toggle button:hover:not(.active) { color: var(--cream); }

@media (max-width: 860px) {
  .nav .nav-inner .lang-toggle { display: none; }
}
.nav-mobile .lang-toggle {
  margin: 12px 0 4px;
  background: rgba(247,242,231,0.06);
}
.nav-mobile .lang-toggle button { flex: 1; text-align: center; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-mobile {
  display: none; /* escondido por padrão em qualquer largura de tela */
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-inner.open ~ .nav-mobile,
  .nav-mobile.open { display: flex; }
  .nav-mobile {
    flex-direction: column;
    gap: 4px;
    padding: 0 28px 20px;
    background: var(--forest);
  }
  .nav-mobile a {
    padding: 12px 0;
    color: var(--sage);
    border-bottom: 1px solid rgba(247,242,231,0.08);
  }
  .nav-mobile a.active { color: var(--gold-light); }
}

/* ============ PET TAG — signature element ============ */
.pet-tag {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-tag);
  box-shadow: var(--shadow-soft);
  padding: 32px 28px 28px;
}
.pet-tag::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--forest);
  border: 5px solid var(--gold);
  box-shadow: 0 4px 10px rgba(20,42,31,0.25);
}
.pet-tag--dark {
  background: var(--forest-light);
  color: var(--cream);
}
.pet-tag--dark::before { background: var(--gold); border-color: var(--forest-deep); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--forest-deep);
  box-shadow: 0 6px 16px rgba(198,154,62,0.35);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--forest);
  color: var(--forest);
}
.btn-outline:hover { background: var(--forest); color: var(--cream); }
.btn-outline-light {
  background: transparent;
  border: 1.5px solid rgba(247,242,231,0.5);
  color: var(--cream);
}
.btn-outline-light:hover { background: rgba(247,242,231,0.12); }

/* ============ HERO ============ */
.hero {
  background: var(--forest);
  color: var(--cream);
  padding: 40px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,154,62,0.18), transparent 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  color: var(--cream);
  margin: 18px 0 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero p.lead {
  font-size: 1.1rem;
  color: var(--sage);
  max-width: 46ch;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  animation: tag-swing 1.1s ease-out;
  transform-origin: top center;
}
@keyframes tag-swing {
  0% { transform: rotate(-8deg) translateY(-16px); opacity: 0; }
  60% { transform: rotate(3deg) translateY(0); opacity: 1; }
  100% { transform: rotate(0deg); }
}
.tag-card-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--forest-deep);
  margin-bottom: 4px;
}
.tag-card-sub {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clay);
}
.tag-photo-row {
  display: flex;
  gap: 12px;
  margin: 18px 0;
}
.tag-photo {
  flex: 1;
  aspect-ratio: 1;
  border-radius: 14px;
  background: linear-gradient(160deg, var(--sage), var(--forest-light));
  display: grid;
  place-items: center;
  color: rgba(247,242,231,0.85);
  font-size: 1.8rem;
}
.tag-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--ink-soft);
  border-top: 1px dashed rgba(34,40,31,0.2);
  padding-top: 12px;
}

/* ============ SECTIONS ============ */
section { padding: 88px 0; }
.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 14px 0 12px; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }
.section-alt { background: var(--cream-dim); }

/* reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ ORIGIN STORY ============ */
.origin {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .origin { grid-template-columns: 1fr; } }
.origin-photo {
  border-radius: var(--radius-tag);
  background: linear-gradient(150deg, var(--gold-light), var(--clay));
  aspect-ratio: 4/3.2;
  display: grid;
  place-items: center;
  color: rgba(247,242,231,0.9);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-align: center;
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.origin blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--forest-deep);
  margin: 0 0 20px;
  line-height: 1.4;
}
.origin cite {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.8rem;
  color: var(--clay);
  letter-spacing: 0.04em;
}

/* ============ FEATURE GRID ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.feature-card {
  background: var(--cream);
  border-radius: 18px;
  padding: 26px 22px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(139,90,60,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(20,42,31,0.16);
}
.feature-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--forest);
  color: var(--gold-light);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* ============ TRUST BAND ============ */
.trust-band {
  background: var(--forest-deep);
  color: var(--cream);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.trust-band h3 {
  color: var(--cream);
  font-size: 1.5rem;
  max-width: 30ch;
}
.trust-band p { color: var(--sage); max-width: 40ch; margin: 10px 0 0; }

/* ============ FOOTER ============ */
footer {
  background: var(--forest);
  color: var(--sage);
  padding: 56px 0 28px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(247,242,231,0.1);
}
.footer-brand { max-width: 320px; }
.footer-brand .brand { margin-bottom: 12px; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.footer-col a, .footer-col li { margin-bottom: 10px; color: var(--sage); font-size: 0.92rem; display: block; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  font-family: var(--font-mono);
  color: rgba(169,183,158,0.7);
}

/* ============ PAGE HEADER (inner pages) ============ */
.page-header {
  background: var(--forest);
  color: var(--cream);
  padding: 32px 0 40px;
}
.page-header h1 { color: var(--cream); font-size: clamp(2rem, 4vw, 2.8rem); margin: 14px 0 10px; }
.page-header p { color: var(--sage); max-width: 60ch; font-size: 1.05rem; }

/* ============ PHONE MOCKUP ============ */
.phone-mock {
  width: 220px;
  aspect-ratio: 9/18.5;
  background: var(--forest-deep);
  border-radius: 32px;
  padding: 10px;
  box-shadow: var(--shadow-soft);
  margin: 0 auto;
}
.phone-mock-screen {
  width: 100%; height: 100%;
  background: var(--cream);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-mock-topbar {
  background: var(--forest);
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  padding: 10px 14px 8px;
}
.phone-mock-body {
  flex: 1;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.phone-mock-body .mock-icon {
  font-size: 1.6rem;
  margin-bottom: 4px;
}
.phone-mock-body h5 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin: 0;
  color: var(--forest-deep);
}
.phone-mock-body p {
  font-size: 0.68rem;
  color: var(--ink-soft);
  margin: 0;
}
.phone-mock-chip {
  margin-top: auto;
  background: var(--gold);
  color: var(--forest-deep);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-align: center;
  padding: 6px;
  border-radius: 8px;
}
.phone-mock-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============ RECURSOS (Features detail) ============ */
.recurso-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.recurso-row.reverse { direction: rtl; }
.recurso-row.reverse > * { direction: ltr; }
@media (max-width: 860px) {
  .recurso-row, .recurso-row.reverse { grid-template-columns: 1fr; direction: ltr; }
}
.recurso-row + .recurso-row { margin-top: 88px; }
.recurso-num {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}
.recurso-row h3 { font-size: 1.7rem; margin: 10px 0 14px; }
.recurso-row p { color: var(--ink-soft); margin-bottom: 20px; }
.recurso-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--ink);
}
.recurso-list li::before {
  content: "🐾";
  font-size: 0.85rem;
}

/* ============ GALERIA ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}
.pet-card {
  cursor: pointer;
  background: var(--cream);
  border-radius: var(--radius-tag);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border: 1px solid rgba(139,90,60,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.pet-card-photo {
  aspect-ratio: 4/3;
  background: linear-gradient(160deg, var(--sage), var(--forest-light));
  display: grid;
  place-items: center;
  color: rgba(247,242,231,0.85);
  font-size: 2.4rem;
  position: relative;
}
.pet-card-photo span.hint {
  position: absolute;
  bottom: 10px; left: 10px; right: 10px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  background: rgba(20,42,31,0.55);
  color: var(--cream);
  padding: 6px 10px;
  border-radius: 8px;
}
.pet-card-body { padding: 18px 20px 20px; }
.pet-card-body h3 { font-size: 1.2rem; margin-bottom: 4px; }
.pet-card-body .tag-card-sub { display: block; margin-bottom: 10px; }
.pet-card-body p { color: var(--ink-soft); font-size: 0.9rem; margin: 0; }

.pet-card--empty {
  border: 2px dashed rgba(139,90,60,0.35);
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  text-align: center;
  color: var(--clay);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  padding: 24px;
}
.pet-card--empty:hover { transform: none; }

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,42,31,0.6);
  backdrop-filter: blur(2px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 200;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--cream);
  border-radius: var(--radius-tag);
  max-width: 520px;
  width: 100%;
  max-height: 84vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-soft);
  animation: modal-in 0.25s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--forest);
  color: var(--cream);
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: grid;
  place-items: center;
}
.modal-photo {
  aspect-ratio: 16/10;
  border-radius: 14px;
  background: linear-gradient(160deg, var(--sage), var(--forest-light));
  display: grid;
  place-items: center;
  color: rgba(247,242,231,0.85);
  font-size: 2.6rem;
  margin-bottom: 20px;
}
.modal-box h3 { font-size: 1.5rem; margin-bottom: 4px; }
.modal-box .story-text { color: var(--ink-soft); margin-top: 16px; }

.pet-card-photo img,
.modal-photo img,
.modal-gallery-thumb img,
.mosaic-tile img,
.lightbox-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}
.lightbox-content {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.modal-gallery-strip {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.modal-gallery-thumb {
  flex: 1;
  aspect-ratio: 1;
  border-radius: 10px;
  background: linear-gradient(160deg, var(--sage), var(--forest-light));
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: rgba(247,242,231,0.85);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.modal-gallery-thumb:hover { transform: translateY(-2px); }
.modal-gallery-thumb.active { border-color: var(--gold); }

/* mosaico geral de fotos */
.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}
.mosaic-tile {
  aspect-ratio: 1;
  border-radius: 16px;
  background: linear-gradient(160deg, var(--sage), var(--forest-light));
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: rgba(247,242,231,0.85);
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mosaic-tile:hover { transform: translateY(-5px) scale(1.02); box-shadow: var(--shadow-soft); }

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,42,31,0.75);
  backdrop-filter: blur(2px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 210;
}
.lightbox-overlay.open { display: flex; }
.lightbox-box {
  position: relative;
  width: min(480px, 100%);
  aspect-ratio: 1;
  border-radius: 20px;
  background: linear-gradient(160deg, var(--sage), var(--forest-light));
  display: grid;
  place-items: center;
  font-size: 4rem;
  color: rgba(247,242,231,0.9);
  animation: modal-in 0.25s ease;
}
.lightbox-close {
  position: absolute;
  top: -16px; right: -16px;
  background: var(--gold);
  color: var(--forest-deep);
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: var(--shadow-card);
}

/* ============ PRIVACY PAGE ============ */
.policy {
  max-width: 780px;
  margin: 0 auto;
}
.policy h2 {
  font-size: 1.4rem;
  margin: 44px 0 14px;
  padding-top: 4px;
}
.policy h2:first-child { margin-top: 0; }
.policy h3 {
  font-size: 1.12rem;
  margin: 28px 0 10px;
}
.policy p, .policy li { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 12px; }
.policy ul { margin: 10px 0 18px; }
.policy ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}
.policy ul li::before {
  content: "•";
  color: var(--gold);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  line-height: 1.1;
}
.policy-updated {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--clay);
  margin-bottom: 8px;
}
.policy-callout {
  background: var(--cream-dim);
  border-left: 4px solid var(--gold);
  padding: 18px 22px;
  border-radius: 8px;
  margin: 28px 0;
}
.policy-callout p { margin: 0; color: var(--ink); }

.impact-band {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--forest-deep);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.impact-band .impact-stat {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
.impact-band .impact-stat sup { font-size: 1.6rem; top: -1.2em; }
.impact-band h3 {
  color: var(--forest-deep);
  font-size: 1.5rem;
  max-width: 34ch;
}
.impact-band p { color: var(--forest); max-width: 44ch; margin: 10px 0 0; opacity: 0.85; }

/* ============ PARCEIROS: CRITÉRIOS E FORMULÁRIO ============ */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.criteria-card {
  background: var(--cream);
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(139,90,60,0.08);
}
.criteria-card .criteria-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--forest);
  color: var(--gold-light);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.criteria-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.criteria-card p { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }

.partner-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: var(--radius-tag);
  box-shadow: var(--shadow-card);
  padding: 36px;
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 8px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(34,40,31,0.15);
  background: var(--cream-dim);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
}
.form-row textarea { resize: vertical; min-height: 90px; }
.form-row-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) { .form-row-inline { grid-template-columns: 1fr; } }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.form-check input { width: auto; margin-top: 3px; }
.form-note {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--clay);
  margin-top: 14px;
  text-align: center;
}
.form-status {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 14px;
  min-height: 1.2em;
}
.form-status.error { color: #a13d2b; }
.form-status.success { color: var(--forest); }

/* ============ MOMENTOS: FEED, ITEM ÚNICO E COMENTÁRIOS ============ */
.moment-list-item {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--cream);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  border: 1px solid rgba(139,90,60,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.moment-list-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.moment-list-thumb {
  width: 100px; height: 100px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--sage), var(--forest-light));
  display: grid;
  place-items: center;
  color: rgba(247,242,231,0.85);
  font-size: 1.6rem;
}
.moment-list-thumb img, .moment-list-thumb video { width: 100%; height: 100%; object-fit: cover; }
.moment-list-body { flex: 1; }
.moment-list-body h3 { font-size: 1.15rem; margin-bottom: 4px; }
.moment-date {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--clay);
  margin-bottom: 8px;
  display: block;
}
.moment-list-body a.moment-link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest);
  border-bottom: 1.5px solid var(--gold);
}

.moment-single-media {
  width: 100%;
  max-height: 520px;
  border-radius: var(--radius-tag);
  overflow: hidden;
  margin: 20px 0;
  box-shadow: var(--shadow-soft);
}
.moment-single-media img, .moment-single-media video {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: var(--forest-deep);
  display: block;
}

.comments-section { margin-top: 40px; }
.comments-section h4 { font-size: 1.15rem; margin-bottom: 16px; }
.comment-bubble {
  background: var(--cream-dim);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 12px;
}
.comment-bubble-head {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--clay);
  margin-bottom: 6px;
}
.comment-bubble-name { font-weight: 700; color: var(--forest-deep); }
.comment-bubble-text { color: var(--ink); font-size: 0.95rem; }
.comment-empty { color: var(--ink-soft); font-size: 0.9rem; font-style: italic; }

.comment-form {
  background: var(--cream);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow-card);
  margin-top: 20px;
}
.comment-msg { margin-top: 10px; font-size: 0.9rem; }
.comment-msg.success { color: var(--forest); }
.comment-msg.error { color: #a13d2b; }

@media (max-width: 700px) {
  .impact-band { padding: 32px 24px; }
  .moment-list-item { flex-direction: column; align-items: flex-start; }
  .moment-list-thumb { width: 100%; height: 160px; }
}

@media (max-width: 600px) {
  section { padding: 56px 0; }
  .trust-band { padding: 32px 24px; }
  .partner-form { padding: 26px 20px; }
}

@media (max-width: 600px) {
  section { padding: 56px 0; }
  .trust-band { padding: 32px 24px; }
}
