:root {
  --cream:     #F8F6F1;
  --white:     #FFFFFF;
  --orange:    #E07B3F;
  --orange-lt: #F0AC82;
  --orange-dk: #C45E22;
  --orange-bg: #FDF2EA;
  --green:     #5A8A60;
  --green-lt:  #A8CCB0;
  --green-bg:  #EBF4EC;
  --yellow-bg: #FDF7E3;
  --sky-bg:    #EAF3F8;
  --ink:       #1E2820;
  --muted:     #7A8A7D;
  --border:    #E4DDD4;
  --border-lt: #EDE8E2;
}

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

body {
  font-family: 'Quicksand', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--orange-lt); border-radius: 3px; }

/* ─── LGPD BANNER ─── */
.lgpd-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--ink);
  color: white;
  padding: 20px 6%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
}
.lgpd-banner.visible { transform: translateY(0); }
.lgpd-text { font-size: 0.88rem; line-height: 1.65; color: rgba(255,255,255,0.8); max-width: 700px; }
.lgpd-text strong { color: white; }
.lgpd-text a { color: var(--orange-lt); text-decoration: none; }
.lgpd-text a:hover { text-decoration: underline; }
.lgpd-actions { display: flex; gap: 12px; flex-shrink: 0; }
.lgpd-btn {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700; font-size: 0.88rem;
  padding: 10px 22px; border-radius: 50px;
  cursor: pointer; border: none; transition: all 0.2s;
}
.lgpd-accept { background: var(--orange); color: white; }
.lgpd-accept:hover { background: var(--orange-dk); }
.lgpd-decline { background: transparent; color: rgba(255,255,255,0.6); border: 1.5px solid rgba(255,255,255,0.2); }
.lgpd-decline:hover { border-color: rgba(255,255,255,0.5); color: white; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #fff;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-lt);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-circle {
  width: 36px; height: 36px; background: var(--orange);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.nav-logo-circle svg { width: 18px; height: 18px; fill: white; }
.nav-logo-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.nav-logo-name span { color: var(--orange); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { font-size: 0.88rem; font-weight: 700; color: var(--muted); text-decoration: none; letter-spacing: 0.04em; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-cta { background: var(--orange) !important; color: white !important; padding: 9px 22px; border-radius: 50px; transition: background 0.2s, transform 0.2s !important; }
.nav-cta:hover { background: var(--orange-dk) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; display: block; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 199; background: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 32px; transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--ink); text-decoration: none; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--orange); }
.mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--muted); }

/* ─── PAGE SYSTEM ─── */
.page.active { display: block; }

/* ─── COMMON ─── */
section { padding: 96px 6%; }
.container { max-width: 1160px; margin: 0 auto; }
.eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--orange); border-radius: 2px; display: inline-block; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.6vw, 2.9rem); line-height: 1.15; color: var(--ink); margin-bottom: 18px; }
.section-title em { font-style: italic; color: var(--orange); }

.btn-fill {
  background: var(--orange); color: white;
  font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 0.93rem;
  padding: 14px 30px; border-radius: 50px; text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(224,123,63,0.28);
  display: inline-block;
}
.btn-fill:hover { background: var(--orange-dk); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--ink);
  font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 0.93rem;
  padding: 13px 28px; border-radius: 50px; text-decoration: none;
  border: 2px solid var(--border); transition: border-color 0.2s, color 0.2s; display: inline-block;
}
.btn-outline:hover { border-color: var(--orange-lt); color: var(--orange); }

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

/* ─── HOME PAGE ─── */
#page-home {}

/* HERO */
.hero {
  min-height: 100vh; padding-top: 72px;
  background: var(--cream);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.blob { position: absolute; border-radius: 50%; pointer-events: none; }
.blob-orange { width: 560px; height: 560px; background: radial-gradient(ellipse, rgba(224,123,63,0.10) 0%, transparent 70%); top: -160px; right: -80px; }
.blob-green  { width: 420px; height: 420px; background: radial-gradient(ellipse, rgba(90,138,96,0.10) 0%, transparent 70%); bottom: -80px; left: -60px; }
.blob-yellow { width: 260px; height: 260px; background: radial-gradient(ellipse, rgba(220,180,60,0.12) 0%, transparent 70%); top: 38%; right: 28%; }

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1160px; margin: 0 auto; padding: 80px 6%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-bg); color: var(--green);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 28px;
  animation: riseIn 0.6s ease both;
}
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 5.2vw, 4.6rem); line-height: 1.1; color: var(--ink); margin-bottom: 12px; animation: riseIn 0.65s ease 0.08s both; }
.hero-title em { font-style: italic; color: var(--orange); }
.hero-hand { font-family: 'Caveat', cursive; font-size: 1.5rem; font-weight: 500; color: var(--green); margin-bottom: 26px; animation: riseIn 0.65s ease 0.14s both; }
.hero-desc { font-size: 1.02rem; line-height: 1.9; color: var(--muted); max-width: 450px; margin-bottom: 44px; animation: riseIn 0.65s ease 0.2s both; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: riseIn 0.65s ease 0.26s both; }

.stats-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  background: var(--white); border-radius: 18px; border: 1.5px solid var(--border-lt);
  overflow: hidden; animation: riseIn 0.8s ease 0.12s both;
}
.stat-cell { padding: 26px 16px; text-align: center; }
.stat-cell:not(:last-child) { border-right: 1.5px solid var(--border-lt); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--orange); line-height: 1; }
.stat-label { font-size: 0.7rem; font-weight: 700; color: var(--muted); margin-top: 5px; text-transform: uppercase; letter-spacing: 0.07em; }

/* TICKER */
.ticker { background: var(--orange); padding: 15px 0; overflow: hidden; white-space: nowrap; }
.ticker-inner { display: inline-flex; gap: 52px; animation: ticker 30s linear infinite; }
.ticker-item { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.88); letter-spacing: 0.12em; text-transform: uppercase; display: flex; align-items: center; gap: 16px; }
.ticker-dot { width: 4px; height: 4px; background: rgba(255,255,255,0.45); border-radius: 50%; flex-shrink: 0; }

/* QUEM SOMOS SECTION (preserved exactly) */
#about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-body { font-size: 1rem; line-height: 1.9; color: var(--muted); margin-bottom: 18px; }
.pillar-list { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; }
.pillar { display: flex; align-items: flex-start; gap: 16px; padding: 18px 20px; background: var(--cream); border-radius: 16px; border: 1.5px solid var(--border-lt); transition: transform 0.22s, border-color 0.22s; }
.pillar:hover { transform: translateX(5px); border-color: var(--orange-lt); }
.pillar-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.pillar-title { font-weight: 700; font-size: 0.95rem; color: var(--ink); margin-bottom: 3px; }
.pillar-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }
.about-blocks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ablock { border-radius: 22px; padding: 30px 28px; position: relative; overflow: hidden; }
.ablock-orange { background: var(--orange-bg); border: 1.5px solid #F2C8AB; }
.ablock-green  { background: var(--green-bg);  border: 1.5px solid #BBDABF; }
.ablock-yellow { background: var(--yellow-bg); border: 1.5px solid #EBD98A; }
.ablock-sky    { background: var(--sky-bg);    border: 1.5px solid #B0D4E4; }
.ablock::after { content: ''; position: absolute; bottom: -30px; right: -30px; width: 90px; height: 90px; border-radius: 50%; opacity: 0.15; }
.ablock-orange::after { background: var(--orange); }
.ablock-green::after  { background: var(--green); }
.ablock-yellow::after { background: #C49000; }
.ablock-sky::after    { background: #3A80A0; }
.ablock-tag { display: inline-block; font-family: 'Caveat', cursive; font-size: 0.9rem; font-weight: 700; color: var(--muted); margin-bottom: 10px; }
.ablock-title { font-weight: 700; font-size: 1rem; color: var(--ink); margin-bottom: 7px; }
.ablock-text  { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* RECONHECIMENTOS */
#recog-section { background: var(--cream); }
.recog-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.timeline { position: relative; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(to bottom, var(--orange-lt), var(--green-lt)); border-radius: 2px; }
.tl-item { position: relative; padding: 0 0 40px 32px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot { position: absolute; left: -28px; top: 5px; width: 16px; height: 16px; background: var(--cream); border: 3px solid var(--orange); border-radius: 50%; }
.tl-year { font-size: 0.75rem; font-weight: 700; color: var(--orange); letter-spacing: 0.09em; text-transform: uppercase; margin-bottom: 5px; }
.tl-title { font-weight: 700; font-size: 1rem; color: var(--ink); margin-bottom: 6px; }
.tl-body  { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
.recog-right { display: flex; flex-direction: column; gap: 20px; }
.quote-block { background: var(--white); border-radius: 24px; padding: 36px 32px; border: 1.5px solid var(--border-lt); border-left: 4px solid var(--orange); }
.quote-mark { font-family: 'Playfair Display', serif; font-size: 4rem; color: var(--orange-lt); line-height: 0.6; margin-bottom: 18px; display: block; }
.quote-text { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.1rem; color: var(--ink); line-height: 1.75; margin-bottom: 16px; }
.quote-source { font-size: 0.8rem; font-weight: 700; color: var(--muted); }
.mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mini-card { background: var(--white); border-radius: 18px; padding: 22px 20px; border: 1.5px solid var(--border-lt); transition: border-color 0.22s, transform 0.22s; }
.mini-card:hover { border-color: var(--orange-lt); transform: translateY(-3px); }
.mini-card-year { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--orange); line-height: 1; margin-bottom: 8px; }
.mini-card-title { font-weight: 700; font-size: 0.88rem; color: var(--ink); margin-bottom: 5px; }
.mini-card-text  { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }

/* ─── WOODY NA MÍDIA ─── */
#media-section { background: var(--white); }
.media-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.media-card {
  border-radius: 20px; overflow: hidden;
  border: 1.5px solid var(--border-lt);
  background: var(--white);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer; text-decoration: none; display: block;
}
.media-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(30,40,32,0.1); }
.media-card-img {
  width: 100%; height: 180px; object-fit: cover;
  background: var(--cream); display: block;
  position: relative;
}
.media-card-img-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--orange-bg), var(--green-bg));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.media-card-img-placeholder img {
    width: 100%;
    object-fit: cover;
}
.media-card-img-placeholder svg { width: 40px; height: 40px; fill: var(--orange-lt); opacity: 0.6; }
.media-card-body { padding: 22px 20px; }
.media-card-source { font-size: 0.7rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.media-card-title { font-weight: 700; font-size: 0.97rem; color: var(--ink); line-height: 1.45; margin-bottom: 10px; }
.media-card-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.media-card-link { font-size: 0.82rem; font-weight: 700; color: var(--orange); display: flex; align-items: center; gap: 6px; }
.media-card-link svg { width: 14px; height: 14px; fill: var(--orange); }

/* ─── GALERIA ─── */
#gallery-section { background: var(--cream); }
.gallery-grid {
  columns: 3; column-gap: 16px; margin-top: 48px;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 16px;
  border-radius: 16px; overflow: hidden;
  position: relative; cursor: pointer;
}
.gallery-item-inner {
  width: 100%;
  background: linear-gradient(135deg, var(--orange-bg) 0%, var(--green-bg) 100%);
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px;
  transition: transform 0.3s;
  overflow: hidden;
}
.gallery-item:hover .gallery-item-inner { transform: scale(1.02); }
.gallery-item-inner img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 16px; }
.gallery-placeholder {
  width: 100%; display: flex; align-items: center; justify-content: center;
  border-radius: 16px;
  flex-direction: column; gap: 8px;
}
.gallery-placeholder svg { width: 32px; height: 32px; fill: var(--orange-lt); opacity: 0.5; }
.gallery-placeholder span { font-size: 0.75rem; font-weight: 700; color: var(--muted); opacity: 0.6; }

.gallery-upload-note {
  margin-top: 24px; padding: 18px 24px;
  background: var(--white); border-radius: 14px; border: 1.5px dashed var(--border);
  display: flex; align-items: center; gap: 14px;
}
.gallery-upload-note svg { width: 20px; height: 20px; fill: var(--muted); flex-shrink: 0; }
.gallery-upload-note span { font-size: 0.88rem; color: var(--muted); }

/* ─── QUEM SOMOS PAGE ─── */
#page-quem-somos .page-hero {
  padding-top: 72px;
  background: var(--cream);
  min-height: 40vh; display: flex; align-items: flex-end;
  position: relative; overflow: hidden;
}
.page-hero-blob1 { position: absolute; top: -100px; right: 0; width: 400px; height: 400px; background: radial-gradient(ellipse, rgba(224,123,63,0.09) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.page-hero-blob2 { position: absolute; bottom: -80px; left: 0; width: 300px; height: 300px; background: radial-gradient(ellipse, rgba(90,138,96,0.09) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.page-hero-inner { max-width: 1160px; margin: 0 auto; padding: 60px 6% 56px; position: relative; z-index: 2; }
.page-hero-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.page-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.1; color: var(--ink); }
.page-hero-title em { font-style: italic; color: var(--orange); }
.page-hero-sub { font-family: 'Caveat', cursive; font-size: 1.4rem; color: var(--green); margin-top: 12px; }

.team-section { background: var(--white); }
.team-intro { max-width: 640px; margin-bottom: 52px; }
.team-intro p { font-size: 1rem; line-height: 1.9; color: var(--muted); margin-bottom: 16px; }

.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 56px; }
.value-card {
  padding: 32px 28px; border-radius: 22px;
  border: 1.5px solid var(--border-lt); background: var(--cream);
  transition: transform 0.22s, border-color 0.22s;
}
.value-card:hover { transform: translateY(-4px); border-color: var(--orange-lt); }
.value-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.value-icon svg { width: 24px; height: 24px; }
.value-title { font-weight: 700; font-size: 1rem; color: var(--ink); margin-bottom: 8px; }
.value-text { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

.activities-full { background: var(--cream); }
.activities-full-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 48px; }
.act-card {
  background: var(--white); border-radius: 18px; padding: 26px 22px;
  border: 1.5px solid var(--border-lt);
  transition: transform 0.22s, box-shadow 0.22s;
}
.act-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(30,40,32,0.07); }
.act-icon { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.act-icon svg { width: 22px; height: 22px; }
.act-title { font-weight: 700; font-size: 0.95rem; color: var(--ink); margin-bottom: 6px; }
.act-text  { font-size: 0.84rem; color: var(--muted); line-height: 1.6; }

/* ─── TRANSPARÊNCIA PAGE ─── */
#page-transparencia .page-hero { padding-top: 72px; background: var(--cream); min-height: 36vh; display: flex; align-items: flex-end; position: relative; overflow: hidden; }

.transp-intro { max-width: 540px; margin-bottom: 56px; }
.transp-intro p { font-size: 1rem; line-height: 1.85; color: var(--muted); }

.tcards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 48px; }
.tcard { padding: 30px 24px; border-radius: 20px; border: 1.5px solid var(--border-lt); background: var(--cream); transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s; }
.tcard:hover { border-color: var(--orange-lt); transform: translateY(-4px); box-shadow: 0 10px 28px rgba(224,123,63,0.09); }
.tcard-icon-wrap { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.tcard-icon-wrap svg { width: 22px; height: 22px; }
.tcard-title { font-weight: 700; font-size: 0.97rem; color: var(--ink); margin-bottom: 9px; }
.tcard-text  { font-size: 0.86rem; color: var(--muted); line-height: 1.65; }

.laws-block { background: var(--cream); border-radius: 26px; padding: 42px; border: 1.5px solid var(--border); }
.laws-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--ink); margin-bottom: 28px; }
.law-row { display: flex; gap: 18px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--border-lt); }
.law-row:last-child { border-bottom: none; padding-bottom: 0; }
.law-pill { background: var(--orange); color: white; font-size: 0.7rem; font-weight: 700; padding: 4px 13px; border-radius: 50px; white-space: nowrap; flex-shrink: 0; margin-top: 3px; }
.law-name { font-weight: 700; color: var(--ink); margin-bottom: 5px; font-size: 0.95rem; }
.law-desc { font-size: 0.86rem; color: var(--muted); line-height: 1.6; }

/* PDF Portal */
.pdf-portal { background: var(--white); }
.pdf-portal-intro { max-width: 580px; margin-bottom: 48px; }
.pdf-portal-intro p { font-size: 1rem; color: var(--muted); line-height: 1.8; }
.pdf-categories { display: flex; flex-direction: column; gap: 36px; }
.pdf-category {}
.pdf-category-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--ink); margin-bottom: 18px;
  padding-bottom: 12px; border-bottom: 2px solid var(--border-lt);
  display: flex; align-items: center; gap: 12px;
}
.pdf-category-title::before { content: ''; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; display: inline-block; }
.pdf-list { display: flex; flex-direction: column; gap: 10px; }
.pdf-item {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; background: var(--cream);
  border-radius: 14px; border: 1.5px solid var(--border-lt);
  transition: border-color 0.22s;
}
.pdf-item:hover { border-color: var(--orange-lt); }
.pdf-item-left { display: flex; align-items: center; gap: 14px; }
.pdf-item-icon { width: 40px; height: 40px; background: var(--orange-bg); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pdf-item-icon svg { width: 20px; height: 20px; fill: var(--orange); }
.pdf-item-name { font-weight: 700; font-size: 0.93rem; color: var(--ink); margin-bottom: 2px; }
.pdf-item-meta { font-size: 0.78rem; color: var(--muted); }
.pdf-item-actions { display: flex; gap: 8px; }
.pdf-btn {
  font-family: 'Quicksand', sans-serif; font-size: 0.8rem; font-weight: 700;
  padding: 7px 16px; border-radius: 50px; cursor: pointer; border: none;
  transition: all 0.2s; text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
}
.pdf-btn-view { background: var(--orange-bg); color: var(--orange-dk); }
.pdf-btn-view:hover { background: var(--orange-lt); }
.pdf-btn svg { width: 13px; height: 13px; fill: currentColor; }

.pdf-empty {
  padding: 32px; text-align: center;
  border: 2px dashed var(--border); border-radius: 14px;
  color: var(--muted); font-size: 0.9rem;
}
.pdf-empty svg { width: 32px; height: 32px; fill: var(--border); display: block; margin: 0 auto 12px; }

/* ─── CONTATO PAGE ─── */
#page-contato .page-hero { padding-top: 72px; background: var(--cream); min-height: 36vh; display: flex; align-items: flex-end; position: relative; overflow: hidden; }

.contact-section { background: var(--white); }
.contact-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 72px; align-items: start; }
.contact-lead { font-size: 1rem; line-height: 1.9; color: var(--muted); margin-bottom: 40px; max-width: 440px; }

.clinks { display: flex; flex-direction: column; gap: 14px; }
.clink {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 22px; background: var(--cream);
  border-radius: 18px; border: 1.5px solid var(--border-lt);
  text-decoration: none; transition: border-color 0.22s, transform 0.22s;
}
.clink:hover { border-color: var(--orange-lt); transform: translateX(4px); }
.clink-icon-wrap { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.clink-icon-wrap svg { width: 22px; height: 22px; }
.clink-label { font-size: 0.7rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.clink-value { font-weight: 700; font-size: 0.95rem; color: var(--ink); }

.contact-aside {}
.contact-info-card {
  background: var(--cream); border-radius: 24px; padding: 36px 32px;
  border: 1.5px solid var(--border-lt);
  margin-bottom: 20px;
}
.contact-info-card-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--ink); margin-bottom: 16px; }
.contact-info-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }
.contact-info-card p + p { margin-top: 8px; }
.contact-info-card strong { color: var(--ink); font-weight: 700; }

.hours-card {
  background: var(--orange-bg); border-radius: 24px; padding: 32px 28px;
  border: 1.5px solid #F2C8AB;
}
.hours-card-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--ink); margin-bottom: 16px; }
.hours-list { display: flex; flex-direction: column; gap: 8px; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.88rem; }
.hours-day { color: var(--muted); font-weight: 600; }
.hours-time { color: var(--ink); font-weight: 700; }

/* ─── FOOTER ─── */
footer { background: var(--ink); padding: 64px 6% 32px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: white; font-weight: 700; margin-bottom: 12px; }
.footer-logo-name span { color: var(--orange-lt); }
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.75; max-width: 280px; }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; cursor: pointer; }
.footer-col a:hover { color: var(--orange-lt); }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background 0.2s, transform 0.2s; }
.footer-social a:hover { background: var(--orange); transform: translateY(-2px); }
.footer-social svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.7); }
.footer-bottom { padding-top: 26px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: var(--orange-lt); text-decoration: none; cursor: pointer; }

/* ─── ANIMATIONS ─── */
@keyframes riseIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; }
  .recog-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .tcards-grid { grid-template-columns: 1fr 1fr; }
  .media-grid { grid-template-columns: 1fr 1fr; }
  .activities-full-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .gallery-grid { columns: 2; }
}
@media (max-width: 600px) {
  section { padding: 64px 5%; }
  .tcards-grid { grid-template-columns: 1fr; }
  .mini-cards { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .activities-full-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
}

.hero-inner img {
  width: 100%;
  border-radius: 100px 30px 100px 30px;
}

.nav-logo-name img {
  width: 98px;
  margin-top: 6px;
}