

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

:root {
  --ink:         #0e1a0f;
  --ink-soft:    #2d3d2e;
  --sage:        #4a7c59;
  --sage-mid:    #6a9e7a;
  --sage-light:  #a8cba8;
  --sage-pale:   #e8f2e8;
  --cream:       #f5f0e8;
  --cream-warm:  #ede7d9;
  --gold:        #c4922a;
  --gold-light:  #f0d898;
  --gold-pale:   #faf3e0;
  --rust:        #b85c38;
  --rust-pale:   #faede8;
  --white:       #fdfcf8;
  --border:      rgba(14,26,15,0.09);
  --border-dark: rgba(14,26,15,0.16);
  --shadow:      0 2px 16px rgba(14,26,15,0.07);
  --shadow-lg:   0 12px 60px rgba(14,26,15,0.13);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
}

::selection { background: rgba(74,124,89,0.18); color: var(--ink); }


.display, h1, h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -1.5px;
  color: var(--ink);
}
h3 { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--ink); }
.label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sage); background: var(--sage-pale);
  padding: 4px 12px; border-radius: 100px; margin-bottom: 1.25rem;
}
.lead {
  font-size: 17px; font-weight: 300; line-height: 1.8; color: var(--ink-soft);
}
.body-text { font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--ink-soft); }
.body-text + .body-text { margin-top: 1rem; }


.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 100px 2rem; }


.btn-primary {
  background: var(--ink); color: var(--white);
  padding: 14px 28px; border-radius: 100px; font-size: 15px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(14,26,15,0.18);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--sage); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(74,124,89,0.28); }

.btn-secondary {
  background: var(--white); color: var(--ink);
  padding: 14px 28px; border-radius: 100px; font-size: 15px; font-weight: 500;
  text-decoration: none; border: 1.5px solid var(--border-dark);
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: var(--sage); color: var(--sage); transform: translateY(-1px); }

.btn-sage {
  background: var(--sage); color: white;
  padding: 14px 28px; border-radius: 100px; font-size: 15px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(74,124,89,0.22);
}
.btn-sage:hover { background: #3a6647; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(74,124,89,0.32); }

.btn-gold {
  background: var(--gold); color: white;
  padding: 14px 28px; border-radius: 100px; font-size: 15px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(196,146,42,0.24);
}
.btn-gold:hover { background: #a87824; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(196,146,42,0.34); }

.btn-white {
  background: white; color: var(--sage);
  padding: 14px 32px; border-radius: 100px; font-size: 15px; font-weight: 700;
  text-decoration: none; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.14);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.18); }

.btn-white-outline {
  background: transparent; color: white;
  padding: 14px 28px; border-radius: 100px; font-size: 15px; font-weight: 500;
  text-decoration: none; border: 2px solid rgba(255,255,255,0.38);
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-white-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }


.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 68px; display: flex; align-items: center;
  background: rgba(253,252,248,0.9); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: height 0.3s, box-shadow 0.3s;
}
.navbar.scrolled { height: 58px; box-shadow: 0 2px 24px rgba(14,26,15,0.08); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; letter-spacing: -0.5px;
  color: var(--ink); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.logo em { color: var(--sage); font-style: italic; }
.logo-paw {
  width: 32px; height: 32px; background: var(--sage); border-radius: 50% 50% 50% 12%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transform: rotate(-10deg);
}

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--ink-soft); text-decoration: none;
  font-size: 14px; font-weight: 500; letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--sage); }
.nav-links a.active { color: var(--sage); }
.nav-cta {
  background: var(--ink) !important; color: var(--white) !important;
  padding: 9px 22px !important; border-radius: 100px !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s !important;
  box-shadow: 0 2px 12px rgba(14,26,15,0.16);
}
.nav-cta:hover { background: var(--sage) !important; transform: translateY(-1px) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s; }


.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }


@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes orbFloat { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(20px,-28px) scale(1.05)} }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes dotPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }
@keyframes cardFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes scrollDrop { 0%{top:-100%} 100%{top:100%} }
@keyframes badgePulse { 0%,100%{box-shadow:0 0 0 0 rgba(74,124,89,0.14)} 50%{box-shadow:0 0 0 8px rgba(74,124,89,0)} }


.ticker { background: var(--sage); padding: 12px 0; overflow: hidden; }
.ticker-inner { display: flex; animation: ticker 28s linear infinite; width: max-content; }
.ticker-item { display: flex; align-items: center; gap: 10px; padding: 0 2rem; white-space: nowrap; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.88); }
.ticker-sep { color: rgba(255,255,255,0.35); font-size: 1.1rem; margin: 0 0.5rem; }


.stats-strip {
  background: var(--ink); padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 2rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem; font-weight: 700; color: white; line-height: 1;
  letter-spacing: -1px;
}
.stat-label { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.45); margin-top: 6px; letter-spacing: 0.06em; text-transform: uppercase; }


.page-header {
  background: var(--ink); padding: 120px 2rem 80px; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(74,124,89,0.18) 0%, transparent 65%),
              radial-gradient(ellipse 40% 60% at 10% 90%, rgba(196,146,42,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 2rem; }
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900; line-height: 1.0; letter-spacing: -2px;
  color: white; margin-bottom: 1.25rem;
}
.page-header h1 em { color: var(--gold-light); font-style: italic; }
.page-header p { font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.55); max-width: 500px; line-height: 1.75; }
.page-header-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 2rem; }
.meta-chip { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); font-size: 12px; font-weight: 500; padding: 6px 14px; border-radius: 100px; }


.back-link-wrap {
  background: var(--sage-pale); border-bottom: 1px solid rgba(74,124,89,0.15);
  padding: 0.75rem 2rem;
}
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--sage); text-decoration: none;
  transition: gap 0.2s;
}
.back-link:hover { gap: 10px; }


.toolbar {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 1.25rem 2rem; position: sticky; top: 68px; z-index: 100;
  box-shadow: var(--shadow);
}
.toolbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-pill {
  padding: 8px 18px; border-radius: 100px;
  font-size: 13px; font-weight: 500; font-family: 'DM Sans', sans-serif;
  border: 1.5px solid var(--border-dark);
  background: transparent; color: var(--ink-soft);
  cursor: pointer; transition: all 0.2s;
}
.filter-pill.active, .filter-pill:hover { background: var(--ink); color: white; border-color: var(--ink); }
.toolbar-right { display: flex; align-items: center; gap: 14px; }
.search-box {
  display: flex; align-items: center; gap: 8px;
  background: var(--cream); border: 1.5px solid var(--border-dark);
  border-radius: 100px; padding: 8px 16px;
  transition: border-color 0.2s;
}
.search-box:focus-within { border-color: var(--sage); }
.search-box input {
  border: none; background: transparent; outline: none;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 400;
  color: var(--ink); width: 180px;
}
.count-badge { font-size: 12px; font-weight: 500; color: var(--ink-soft); white-space: nowrap; }
.count-badge strong { color: var(--sage); }


.animals-section { padding: 60px 2rem 100px; background: var(--white); }
.animals-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }


.animal-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s, border-color 0.3s;
  display: flex; flex-direction: column;
}
.animal-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--sage-light); }
.animal-img {
  width: 100%; height: 200px;
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.animal-img-bg { position: absolute; inset: 0; opacity: 0.06; font-size: 9rem; display: flex; align-items: center; justify-content: center; filter: blur(10px); }
.animal-emoji { position: relative; z-index: 1; }
.animal-badge {
  position: absolute; top: 12px; right: 12px;
  font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 100px;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.animal-status-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 100px;
  background: rgba(253,252,248,0.92); color: var(--ink); border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.badge-perdido   { background: var(--rust-pale); color: var(--rust); }
.badge-encontrado { background: var(--gold-pale); color: var(--gold); }
.badge-disponivel { background: var(--sage-pale); color: var(--sage); }
.animal-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.animal-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--ink);
  letter-spacing: -0.5px; margin-bottom: 8px;
}
.animal-meta { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.pill {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 100px; padding: 3px 12px;
  font-size: 12px; font-weight: 400; color: var(--ink-soft);
}
.animal-desc { font-size: 13px; font-weight: 300; color: var(--ink-soft); line-height: 1.75; margin-bottom: 1.25rem; flex: 1; }
.card-action-area { margin-top: auto; }

.btn-adotar-main, .btn-contato-main {
  width: 100%; padding: 12px 20px; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600;
  border: none; cursor: pointer; transition: all 0.2s;
  background: var(--ink); color: white; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-adotar-main:hover, .btn-contato-main:hover { background: var(--sage); transform: translateY(-1px); }
.btn-contato-encontrado { background: var(--gold) !important; }
.btn-contato-encontrado:hover { background: #a87824 !important; }

.cta-banner {
  background: var(--ink); border-radius: var(--r-xl);
  padding: 2rem 2.5rem; display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.cta-banner-text h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: white; margin-bottom: 4px; }
.cta-banner-text p { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.55); }

.empty-state { text-align: center; padding: 5rem 2rem; color: var(--ink-soft); }
.empty-state .empty-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.empty-state h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 0.5rem; }
.empty-state p { font-weight: 300; }


.action-section { background: var(--cream); }
.action-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 3.5rem; }
.action-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); padding: 2.5rem 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform 0.3s, box-shadow 0.3s; position: relative; overflow: hidden;
}
.action-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.action-card-accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.accent-sage { background: linear-gradient(90deg, var(--sage), var(--sage-light)); }
.accent-gold { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.action-card-icon {
  width: 56px; height: 56px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
}
.icon-sage { background: var(--sage-pale); }
.icon-gold { background: var(--gold-pale); }
.action-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; letter-spacing: -0.5px;
}
.action-card-desc { font-size: 14px; font-weight: 300; color: var(--ink-soft); line-height: 1.8; flex: 1; }
.action-checklist { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.action-checklist li { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 400; color: var(--ink-soft); }
.check-dot {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.check-dot.sage { background: var(--sage-pale); color: var(--sage); }
.check-dot.gold { background: var(--gold-pale); color: var(--gold); }

.btn-card {
  border: none; border-radius: 100px; padding: 13px 24px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.2s; width: 100%; text-decoration: none;
}
.btn-card-sage { background: var(--sage); color: white; }
.btn-card-sage:hover { background: #3a6647; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(74,124,89,0.28); }
.btn-card-gold { background: var(--gold); color: white; }
.btn-card-gold:hover { background: #a87824; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(196,146,42,0.28); }
.btn-card-ink { background: var(--ink); color: white; }
.btn-card-ink:hover { background: var(--sage); transform: translateY(-1px); }
.action-note { font-size: 12px; font-weight: 300; color: var(--ink-soft); text-align: center; }

.data-note {
  margin-top: 2.5rem; background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 1.5rem 2rem;
  display: flex; align-items: flex-start; gap: 1rem;
}
.data-note-icon { font-size: 1.4rem; flex-shrink: 0; }
.data-note strong { font-size: 14px; font-weight: 600; display: block; margin-bottom: 4px; }
.data-note p { font-size: 13px; font-weight: 300; color: var(--ink-soft); line-height: 1.6; }


.map-section { background: var(--white); }
.map-wrapper {
  margin-top: 3rem; border-radius: var(--r-xl); overflow: hidden;
  border: 1.5px solid var(--border); box-shadow: var(--shadow-lg);
}
.map-wrapper iframe { width: 100%; height: 500px; border: none; display: block; }
.map-placeholder {
  height: 500px; background: var(--sage-pale);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.map-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--sage-light) 1px, transparent 1px),
                    linear-gradient(90deg, var(--sage-light) 1px, transparent 1px);
  background-size: 50px 50px; opacity: 0.5;
}
.map-dot {
  position: absolute; width: 40px; height: 40px;
  border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.map-dot span { transform: rotate(45deg); font-size: 16px; }
.map-dot.d1 { background: var(--sage); left: 28%; top: 30%; }
.map-dot.d2 { background: var(--gold); left: 58%; top: 48%; }
.map-dot.d3 { background: var(--rust); left: 72%; top: 22%; }
.map-dot.d4 { background: var(--sage); left: 38%; top: 63%; }
.map-placeholder-content { position: relative; z-index: 1; text-align: center; padding: 2rem; }
.map-placeholder-content h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; margin-bottom: 0.5rem; }
.map-placeholder-content p { font-size: 14px; font-weight: 300; color: var(--ink-soft); max-width: 400px; line-height: 1.7; }


.ongs-section { background: var(--cream); }
.ongs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; margin-top: 2.5rem; }
.ong-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); padding: 2rem; position: relative; overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s, border-color 0.3s;
}
.ong-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; transform: scaleX(0); transform-origin: left; transition: transform 0.25s; }
.ong-card.verde::before  { background: var(--sage); }
.ong-card.amarelo::before { background: var(--gold); }
.ong-card.laranja::before { background: var(--rust); }
.ong-card.azul::before   { background: #2E7D82; }
.ong-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--sage-light); }
.ong-card:hover::before { transform: scaleX(1); }
.ong-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.ong-name { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.ong-tipo { display: inline-block; font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 100px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.07em; }
.tipo-verde   { background: var(--sage-pale); color: var(--sage); }
.tipo-amarelo { background: var(--gold-pale); color: var(--gold); }
.tipo-laranja { background: var(--rust-pale); color: var(--rust); }
.tipo-azul    { background: #e3f4f4; color: #2E7D82; }
.ong-desc { font-size: 13px; font-weight: 300; color: var(--ink-soft); line-height: 1.7; margin-bottom: 1.5rem; }
.ong-links { display: flex; gap: 8px; flex-wrap: wrap; }
.ong-link {
  font-size: 12px; font-weight: 500; padding: 5px 14px;
  border-radius: 100px; border: 1.5px solid var(--border-dark);
  color: var(--ink-soft); text-decoration: none; transition: all 0.2s;
}
.ong-link:hover { border-color: var(--sage); color: var(--sage); }
.ong-link.primary { background: var(--sage); color: white; border-color: var(--sage); }
.ong-link.primary:hover { background: #3a6647; }


.criadora-section { background: var(--cream); }
.criadora-inner { display: grid; grid-template-columns: 400px 1fr; gap: 6rem; align-items: center; }
.criadora-img-wrap { position: relative; }
.criadora-circle {
  width: 320px; height: 320px; border-radius: 50%;
  background: var(--sage-pale); overflow: hidden;
  border: 3px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center; font-size: 5rem;
}
.criadora-circle img { width: 100%; height: 100%; object-fit: cover; }
.criadora-badge {
  position: absolute; background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-md); padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg);
}
.cb1 { bottom: 20px; right: -20px; }
.cb2 { top: 20px; right: -40px; }
.cb-emoji { font-size: 1.2rem; }
.cb-text strong { font-size: 13px; font-weight: 600; display: block; }
.cb-text span { font-size: 11px; color: var(--ink-soft); font-weight: 300; }
.criadora-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,3.5vw,3rem); font-weight: 700; letter-spacing: -1px; line-height: 1.1; margin: 1rem 0 1.5rem; }
.criadora-text h2 em { color: var(--sage); font-style: italic; }
.criadora-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 2rem; }
.chip { padding: 6px 14px; border-radius: 100px; font-size: 12px; font-weight: 500; background: var(--white); border: 1.5px solid var(--border); color: var(--ink-soft); }
.chip-sage { background: var(--sage-pale); color: var(--sage); border-color: transparent; }
.quote-block { border-left: 3px solid var(--sage); padding: 1rem 0 1rem 1.5rem; margin-bottom: 1.5rem; }
.quote-block p { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 400; font-style: italic; line-height: 1.7; color: var(--ink-soft); }
.bio-text { font-size: 14px; font-weight: 300; line-height: 1.85; color: var(--ink-soft); margin-bottom: 1rem; }
.criadora-social { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 2rem; }
.social-link { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 100px; font-size: 13px; font-weight: 500; text-decoration: none; border: 1.5px solid var(--border-dark); color: var(--ink-soft); transition: all 0.2s; }
.social-link:hover { border-color: var(--sage); color: var(--sage); }


.participar-section { background: var(--cream); }
.participar-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 3rem; }
.part-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); padding: 2.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.part-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.part-card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 1.25rem; }
.part-icon { width: 52px; height: 52px; background: var(--sage-pale); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0; }
.part-title { font-size: 18px; font-weight: 700; }
.part-desc { font-size: 14px; font-weight: 300; color: var(--ink-soft); line-height: 1.75; margin-bottom: 1.5rem; }
.part-checks { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 8px; }
.part-checks li { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 400; color: var(--ink-soft); }
.check-icon { width: 20px; height: 20px; border-radius: 50%; background: var(--sage-pale); display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--sage); flex-shrink: 0; font-weight: 700; }
.part-btn { display: block; text-align: center; background: var(--ink); color: white; padding: 13px 20px; border-radius: 100px; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.part-btn:hover { background: var(--sage); transform: translateY(-1px); }
.part-note { text-align: center; font-size: 11px; color: var(--ink-soft); margin-top: 8px; font-weight: 300; }

.comunidade-section { background: var(--white); }
.comunidade-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 3rem; }
.comunidade-card { border: 1.5px solid var(--border); border-radius: var(--r-xl); padding: 2rem 1.75rem; background: var(--cream); transition: transform 0.25s, box-shadow 0.25s; }
.comunidade-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cc-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.cc-title { font-size: 17px; font-weight: 600; margin-bottom: 0.5rem; }
.cc-desc { font-size: 13px; font-weight: 300; color: var(--ink-soft); line-height: 1.7; margin-bottom: 1.5rem; }
.cc-btn { background: var(--ink); color: white; padding: 10px 20px; border-radius: 100px; font-size: 13px; font-weight: 600; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background 0.2s; display: inline-block; text-decoration: none; }
.cc-btn:hover { background: var(--sage); }


.patas-section { background: var(--ink); }
.patas-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.patas-label-sm { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1rem; display: block; }
.patas-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem,3.5vw,3rem); font-weight: 400; line-height: 1.1; letter-spacing: -1px; color: white; margin-bottom: 1rem; }
.patas-title em { font-style: italic; color: var(--gold-light); }
.patas-desc { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.52); line-height: 1.8; margin-bottom: 2rem; }
.patas-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2.5rem; }
.patas-pill { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.65); font-size: 12px; padding: 6px 14px; border-radius: 100px; }
.patas-cards { display: flex; flex-direction: column; gap: 12px; }
.patas-mini { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); border-radius: var(--r-md); padding: 1rem 1.25rem; display: flex; align-items: center; gap: 12px; transition: background 0.2s; }
.patas-mini:hover { background: rgba(255,255,255,0.09); }
.pm-icon { width: 44px; height: 44px; background: rgba(255,255,255,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.pm-name { font-size: 14px; font-weight: 500; color: white; }
.pm-sub { font-size: 12px; color: rgba(255,255,255,0.38); margin-top: 2px; }
.pm-badge { margin-left: auto; background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.55); font-size: 11px; padding: 3px 12px; border-radius: 100px; white-space: nowrap; }


.cta-section { background: var(--sage); padding: 100px 2rem; position: relative; overflow: hidden; }
.cta-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.cta-orb-1 { width: 500px; height: 500px; top: -200px; right: -100px; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); }
.cta-orb-2 { width: 300px; height: 300px; bottom: -100px; left: 5%; background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%); }
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner h2 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem,5vw,4.5rem); font-weight: 900; letter-spacing: -2px; line-height: 1.0; color: white; margin-bottom: 1rem; }
.cta-inner h2 em { font-style: italic; color: var(--gold-light); }
.cta-inner p { font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.68); margin-bottom: 2.5rem; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }


.how-section { background: var(--white); }
.steps-row { display: flex; gap: 0; margin-top: 4rem; position: relative; }
.steps-row::before { content: ''; position: absolute; top: 32px; left: 32px; right: 32px; height: 1px; background: var(--border); z-index: 0; }
.step { flex: 1; padding: 0 1.5rem; position: relative; z-index: 1; }
.step-circle { width: 64px; height: 64px; border-radius: 50%; background: var(--white); border: 1.5px solid var(--border-dark); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--sage); margin-bottom: 1.5rem; box-shadow: var(--shadow); transition: background 0.3s, color 0.3s; }
.step:hover .step-circle { background: var(--sage); color: white; border-color: var(--sage); }
.step h3 { font-size: 15px; font-weight: 600; margin-bottom: 0.5rem; }
.step p { font-size: 13px; font-weight: 300; color: var(--ink-soft); line-height: 1.7; }


.causas-section { background: var(--cream); }
.causas-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; flex-wrap: wrap; gap: 1.5rem; }
.causas-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.causa-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 2rem 1.5rem; cursor: pointer; position: relative; overflow: hidden; transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s, border-color 0.3s; }
.causa-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--sage); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.causa-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--sage-light); }
.causa-card:hover::after { transform: scaleX(1); }
.causa-icon { font-size: 2rem; width: 56px; height: 56px; background: var(--sage-pale); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.causa-tag { position: absolute; top: 14px; right: 14px; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; color: var(--sage); background: var(--sage-pale); padding: 3px 10px; border-radius: 100px; text-transform: uppercase; }
.causa-name { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.causa-desc { font-size: 13px; font-weight: 300; color: var(--ink-soft); line-height: 1.65; }


.eventos-section { background: var(--white); }
.eventos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 3rem; }
.evento-card { background: var(--cream); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 1.75rem; display: flex; gap: 1.5rem; align-items: flex-start; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.evento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--sage-light); }
.ev-date { min-width: 56px; text-align: center; padding-right: 1.5rem; border-right: 1px solid var(--border); }
.ev-day { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 400; line-height: 1; color: var(--sage); }
.ev-month { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-soft); font-weight: 600; }
.ev-content { flex: 1; }
.ev-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border-radius: 100px; margin-bottom: 10px; }
.ev-online { background: var(--sage-pale); color: var(--sage); }
.ev-presencial { background: var(--gold-pale); color: var(--gold); }
.ev-parceria { background: var(--rust-pale); color: var(--rust); }
.ev-name { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.ev-info { font-size: 13px; font-weight: 300; color: var(--ink-soft); }


.cal-block { margin-top: 3rem; border: 1.5px solid var(--border); border-radius: var(--r-xl); overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.cal-header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 2rem; border-bottom: 1px solid var(--border); flex-wrap: wrap; gap: 1rem; }
.cal-header-left { display: flex; align-items: center; gap: 14px; }
.cal-icon { width: 44px; height: 44px; background: var(--sage-pale); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.cal-title { font-size: 15px; font-weight: 600; }
.cal-sub { font-size: 12px; font-weight: 300; color: var(--ink-soft); }
.cal-actions { display: flex; gap: 10px; }
.cal-btn { padding: 9px 20px; border-radius: 100px; font-size: 13px; font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.2s; background: var(--ink); color: white; border: none; }
.cal-btn:hover { background: var(--sage); }
.cal-btn-outline { background: transparent; color: var(--ink-soft); text-decoration: none; padding: 9px 20px; border-radius: 100px; font-size: 13px; font-weight: 500; border: 1.5px solid var(--border-dark); transition: all 0.2s; display: inline-flex; align-items: center; }
.cal-btn-outline:hover { border-color: var(--sage); color: var(--sage); }


.profile-hero { background: var(--cream); padding: 120px 2rem 80px; position: relative; overflow: hidden; }
.profile-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 60% at 85% 50%, rgba(74,124,89,0.08) 0%, transparent 65%), radial-gradient(ellipse 40% 50% at 10% 80%, rgba(196,146,42,0.07) 0%, transparent 60%); pointer-events: none; }
.profile-hero::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%); opacity: 0.4; }
.profile-layout { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 400px 1fr; gap: 6rem; align-items: center; position: relative; z-index: 1; }
.photo-frame { position: relative; width: 320px; }
.photo-circle { width: 320px; height: 320px; border-radius: 50%; background: var(--sage-pale); overflow: hidden; border: 3px solid var(--border-dark); display: flex; align-items: center; justify-content: center; font-size: 5rem; box-shadow: 0 0 0 8px rgba(74,124,89,0.08), var(--shadow-lg); }
.photo-circle img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.badge-float { position: absolute; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-md); padding: 10px 14px; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-lg); }
.badge-float .bf-icon { font-size: 1.2rem; }
.badge-float strong { font-size: 13px; font-weight: 600; display: block; }
.badge-float span { font-size: 11px; color: var(--ink-soft); font-weight: 300; }
.badge-ceub { bottom: 20px; right: -20px; }
.badge-bolt { top: 20px; left: -20px; }
.profile-text { padding-bottom: 2rem; }
.profile-text h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem,5vw,4rem); font-weight: 900; letter-spacing: -1.5px; line-height: 1.0; margin-bottom: 1.5rem; }
.profile-text .name-highlight { color: var(--sage); font-style: italic; }
.tagline { font-size: 17px; font-weight: 300; color: var(--ink-soft); line-height: 1.8; max-width: 480px; margin-bottom: 2rem; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid var(--border-dark); border-radius: 100px; padding: 9px 18px; font-size: 13px; font-weight: 500; text-decoration: none; color: var(--ink-soft); background: var(--white); transition: all 0.22s; }
.social-btn:hover { border-color: var(--sage); color: var(--sage); transform: translateY(-1px); }


.content-section { padding: 80px 2rem; }
.content-section.alt { background: var(--cream); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.section-eyebrow { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); background: var(--sage-pale); padding: 4px 12px; border-radius: 100px; margin-bottom: 1.25rem; }
.section-heading { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 700; line-height: 1.1; letter-spacing: -1px; margin-bottom: 1.5rem; }
.pullquote { border-left: 3px solid var(--sage); padding: 1.5rem 1.75rem; background: var(--sage-pale); border-radius: 0 var(--r-md) var(--r-md) 0; margin: 2rem 0; }
.pullquote p { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-style: italic; font-weight: 400; line-height: 1.6; color: var(--sage); }
.pullquote cite { display: block; margin-top: 0.75rem; font-size: 12px; color: var(--sage-mid); font-style: normal; font-weight: 500; }


.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 8px; bottom: 0; width: 1.5px; background: var(--sage-light); }
.tl-item { position: relative; padding-bottom: 2rem; }
.tl-dot { position: absolute; left: -1.55rem; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: var(--sage); border: 2.5px solid var(--cream); box-shadow: 0 0 0 2px var(--sage-light); }
.tl-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); margin-bottom: 0.4rem; display: block; }
.tl-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 0.3rem; }
.tl-item p { font-size: 13px; font-weight: 300; color: var(--ink-soft); line-height: 1.75; }


.pet-cards { display: flex; flex-direction: column; gap: 1rem; }
.pet-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 1.5rem; display: flex; align-items: flex-start; gap: 1.25rem; transition: transform 0.2s, box-shadow 0.2s; }
.pet-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.pet-emoji { font-size: 2.8rem; line-height: 1; background: var(--cream); border-radius: var(--r-md); padding: 0; flex-shrink: 0; overflow: hidden; width: 88px; height: 88px; }
.pet-emoji img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pet-info h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 300; margin-bottom: 0.3rem; }
.pet-info .pet-meta { font-size: 12px; font-weight: 600; color: var(--sage); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 0.5rem; }
.pet-info p { font-size: 13px; font-weight: 300; color: var(--ink-soft); line-height: 1.7; }
.pet-card.memorial { border-color: rgba(74,124,89,0.2); background: var(--sage-pale); }


.skills-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px,1fr)); gap: 0.75rem; margin-top: 1.5rem; }
.skill-chip { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-md); padding: 0.75rem 1rem; font-size: 13px; font-weight: 400; text-align: center; transition: all 0.2s; }
.skill-chip:hover { border-color: var(--sage); background: var(--sage-pale); color: var(--sage); }


.stats-mini { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.stat-mini-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--sage); letter-spacing: -1px; }
.stat-mini-label { font-size: 12px; color: var(--ink-soft); font-weight: 300; }


.contact-cta { background: var(--ink); color: white; text-align: center; padding: 80px 2rem; }
.contact-cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,3rem); font-weight: 700; letter-spacing: -1px; margin-bottom: 1rem; }
.contact-cta p { font-weight: 300; opacity: 0.55; max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.75; }
.contact-cta-links { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-contact { display: inline-flex; align-items: center; gap: 8px; border-radius: 100px; padding: 12px 26px; font-size: 14px; font-weight: 600; text-decoration: none; font-family: 'DM Sans', sans-serif; transition: all 0.2s; border: none; cursor: pointer; }
.btn-contact.primary { background: var(--gold); color: var(--white); }
.btn-contact.primary:hover { background: #a87824; transform: translateY(-1px); }
.btn-contact.ghost { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.3); }
.btn-contact.ghost:hover { border-color: white; transform: translateY(-1px); }


footer { background: var(--ink); padding: 60px 2rem 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: white; text-decoration: none; letter-spacing: -0.5px; display: inline-block; margin-bottom: 1rem; }
.footer-logo em { color: var(--sage-light); font-style: italic; }
.footer-brand p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.38); line-height: 1.8; max-width: 280px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.48); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--sage-light); }
.footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; font-size: 12px; color: rgba(255,255,255,0.28); font-weight: 300; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom a { color: rgba(255,255,255,0.38); text-decoration: none; }
.footer-bottom a:hover { color: var(--sage-light); }


@media (max-width: 1024px) {
  .criadora-inner { grid-template-columns: 1fr; gap: 3rem; }
  .profile-layout { grid-template-columns: 1fr; gap: 3rem; }
  .patas-inner { grid-template-columns: 1fr; gap: 3rem; }
  .causas-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.reverse { direction: ltr; }


  .nav-links { display: none; flex-direction: column; gap: 0; position: fixed; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 1rem; z-index: 199; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links li a { display: block; padding: 10px 12px; border-radius: 8px; }
  .nav-links .nav-cta { display: block; text-align: center; padding: 12px 22px !important; }


  .cb1 { bottom: 10px; right: 0; }
  .cb2 { top: 10px; right: 0; }


  [style*="height:420px"] { display: none !important; }
}
@media (max-width: 1024px) {
  .nav-links { display: none; flex-direction: column; gap: 0; position: fixed; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 1rem; z-index: 199; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .steps-row { flex-direction: column; gap: 2rem; }
  .steps-row::before { display: none; }
  .eventos-grid { grid-template-columns: 1fr; }
  .participar-grid { grid-template-columns: 1fr; }
  .comunidade-grid { grid-template-columns: 1fr; }
  .action-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .toolbar { top: 60px; }
}
@media (max-width: 600px) {
  .causas-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 1.5rem; }
  .navbar { height: 60px; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .photo-frame, .photo-circle { width: 260px; height: 260px; }
  .criadora-circle { width: 260px; height: 260px; }
}