/* ============================================================
   EDUCANDÁRIO NOSSA SENHORA APARECIDA — Folha de estilos
   ============================================================ */

/* ── Tokens de design ──────────────────────────────────────── */
:root {
  --blue:    #1A4A8A;
  --blue2:   #1565C0;
  --green:   #2E7D32;
  --green2:  #388E3C;
  --yellow:  #F9A825;
  --yellow2: #FBC02D;
  --dark:    #0D2137;
  --gray:    #F5F7FA;
}

/* ── Reset e base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}

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

/* ── Layout ────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--sm {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  background: white;
}

.section--gray { background: var(--gray); }

/* ── Navegação ─────────────────────────────────────────────── */
.nav-top {
  background: var(--blue);
  padding: 7px 0;
}

.nav-top__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.nav-top__address {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.8);
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
}

.nav-top__address i { color: var(--yellow); font-size: 12px; }

.nav-top__social { display: flex; gap: 14px; align-items: center; }

.nav-top__social a {
  color: rgba(255,255,255,.75);
  font-size: 16px;
  transition: color .2s;
}

.nav-top__social a:hover { color: var(--yellow); }

.nav-main {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-main__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo__img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-educandario {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 19px;
  color: var(--green);
  line-height: 1;
}

.logo-rest {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 10px;
  color: #666;
  letter-spacing: 1.5px;
  line-height: 1.4;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  color: var(--blue);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  padding: 6px 11px;
  transition: color .2s;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.nav-link:hover { color: var(--yellow); }

/* ── Menu mobile ───────────────────────────────────────────── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger i { font-size: 22px; color: var(--blue); }

.mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--blue);
  z-index: 200;
  padding: 80px 32px 32px;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}

.mob-menu.open { display: flex; }

.mob-menu__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.mob-menu__logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.mob-menu__logo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--yellow);
  line-height: 1;
}

.mob-menu__logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,.7);
  letter-spacing: 1px;
}

.mob-link {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.close-btn {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0D2137 0%, #1A4A8A 50%, #1565C0 100%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,25,55,.62);
}

.hero__deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__deco--tr {
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border: 2px solid rgba(255,255,255,.05);
}

.hero__deco--bl {
  bottom: -120px;
  left: -60px;
  width: 500px;
  height: 500px;
  border: 2px solid rgba(255,255,255,.04);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0;
}

.hero__inner { max-width: 660px; }

.hero__lead {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.hero__logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255,255,255,.25));
}

.hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  color: var(--yellow);
  line-height: 1.12;
  margin: 0 0 8px;
}

.hero__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: rgba(255,255,255,.9);
  line-height: 1.2;
  margin: 0 0 24px;
}

.hero__quote {
  color: rgba(255,255,255,.85);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.75;
  margin: 0 0 12px;
  max-width: 520px;
  font-style: italic;
}

.hero__desc {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  margin: 0 0 36px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__chevron {
  position: absolute;
  bottom: 28px;
  left: 50%;
  color: rgba(255,255,255,.5);
  animation: bounce 1.8s infinite;
}

.hero__chevron i { font-size: 18px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Badge pill ────────────────────────────────────────────── */
.badge-pill {
  display: inline-block;
  background: var(--yellow);
  color: #7B4F00;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: 20px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* ── Stats bar ─────────────────────────────────────────────── */
.stats-bar {
  background: white;
  border-bottom: 1px solid #eee;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}

.stat-card {
  text-align: center;
  padding: 22px 12px;
  border-right: 1px solid #eee;
}

.stat-card:last-child { border-right: none; }

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.stat-num--green { color: var(--green); }

.stat-lbl {
  font-size: 12px;
  color: #666;
  margin-top: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

/* ── Cabeçalhos de seção ───────────────────────────────────── */
.sec-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
}

.sec-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
  margin: 0;
}

.sec-title--white { color: white; }

.divider {
  width: 56px;
  height: 4px;
  background: var(--yellow);
  margin: 10px 0 18px;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header .divider { margin: 10px auto 0; }
.section-header .sec-title { margin-top: 0; }

.section-header__desc {
  max-width: 640px;
  margin: 12px auto 0;
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* ── Cards genéricos ───────────────────────────────────────── */
.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(0,0,0,.07);
  transition: transform .2s, box-shadow .2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.13);
}

.card-border-l { border-left: 4px solid var(--yellow); }

.card-contact {
  padding: 28px;
  text-align: center;
}

.card-contact__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.card-contact__icon i { font-size: 20px; }

.card-contact__label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #333;
  margin-bottom: 6px;
}

.card-contact__value {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
}

.card-contact--link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .15s, box-shadow .15s;
}

.card-contact--link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
}

.card-contact--link:hover .card-contact__value {
  color: var(--blue);
}

/* ── Cards de atividade ────────────────────────────────────── */
.act-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  border-top: 3px solid var(--green);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .2s;
}

.act-card:hover { transform: translateY(-3px); }

.act-card__icon {
  color: var(--blue);
  font-size: 26px;
  margin-bottom: 12px;
  display: block;
}

.act-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 8px;
}

.act-card__text {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
  margin: 0;
}

/* ── Grid de atividades (chips) ────────────────────────────── */
.activity-chip {
  background: white;
  border-radius: 8px;
  padding: 12px 16px;
  box-shadow: 0 1px 6px rgba(0,0,0,.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.activity-chip i { font-size: 14px; flex-shrink: 0; }

.activity-chip span {
  font-size: 13px;
  font-weight: 600;
  color: #444;
}

.activity-chip--blue  { border-left: 3px solid var(--blue); }
.activity-chip--green { border-left: 3px solid var(--green); }
.activity-chip--yellow{ border-left: 3px solid var(--yellow); }

/* ── Itens de espaço ───────────────────────────────────────── */
.space-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}

.space-item i { font-size: 16px; flex-shrink: 0; }

.space-item span {
  font-size: 13px;
  font-weight: 600;
  color: #444;
}

/* ── Cards de equipe ───────────────────────────────────────── */
.team-card {
  background: white;
  border-radius: 10px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.team-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.team-icon i { font-size: 22px; }

.team-card__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #333;
}

.team-card__sub {
  font-size: 12px;
  color: #888;
  margin-top: 4px;
}

.team-card__note {
  font-size: 11px;
  color: #aaa;
  margin-top: 4px;
}

/* ── Botões ────────────────────────────────────────────────── */
.btn-p {
  background: var(--yellow);
  color: #7B4F00;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 12px;
  padding: 12px 28px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: background .2s, transform .1s;
}

.btn-p:hover { background: #e69c00; transform: translateY(-1px); }

.btn-ow {
  color: white;
  border: 2px solid white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  padding: 11px 28px;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: all .2s;
}

.btn-ow:hover { background: white; color: var(--blue); }

.btn-g {
  background: var(--green);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 12px;
  padding: 12px 28px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: background .2s;
}

.btn-g:hover { background: #1b5e20; }

/* ── Quote ─────────────────────────────────────────────────── */
.quote-block {
  border-left: 4px solid var(--yellow);
  padding: 16px 20px;
  background: #FFFDE7;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ── Foto placeholder ──────────────────────────────────────── */
.photo-placeholder {
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.photo-placeholder i { font-size: 48px; color: #90A4AE; }
.photo-placeholder--sm i { font-size: 32px; }

.photo-placeholder span {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #90A4AE;
  font-weight: 600;
}

.photo-placeholder--sm span { font-size: 12px; }

/* ── Quem Somos ────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
  align-items: center;
}

.about-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.85;
  margin: 0 0 16px;
}

.about-img {
  position: relative;
}

.about-img__badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--green);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  padding: 18px 20px;
  border-radius: 10px;
  text-align: center;
  min-width: 100px;
}

.about-img__badge-year {
  font-size: 1.9rem;
  line-height: 1;
}

.about-img__badge-label {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: .9;
}

/* ── Timeline ──────────────────────────────────────────────── */
.timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.timeline__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--blue), var(--green));
  transform: translateX(-50%);
  border-radius: 3px;
}

.timeline__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 48px;
  align-items: center;
}

.timeline__item:last-child { margin-bottom: 0; }

.timeline__left {
  padding-right: 40px;
  text-align: right;
}

.timeline__right {
  position: relative;
  padding-left: 40px;
}

.timeline__dot {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 4px solid white;
}

.timeline__dot--blue {
  background: var(--blue);
  box-shadow: 0 0 0 3px var(--blue);
}

.timeline__dot--green {
  background: var(--green);
  box-shadow: 0 0 0 3px var(--green);
}

.timeline__card {
  background: white;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 2px 14px rgba(0,0,0,.07);
}

.timeline__card-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.timeline__card-tag--yellow { color: var(--yellow); }
.timeline__card-tag--green  { color: var(--green); }

.timeline__card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue);
  margin: 0 0 10px;
}

.timeline__card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.timeline__photo {
  background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
  border-radius: 10px;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
}

.timeline__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.timeline__photo > div {
  width: 100% !important;
  height: 100%;
}

.timeline__photo i { font-size: 32px; color: #90A4AE; }

.timeline__photo span {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: #90A4AE;
  font-weight: 600;
}

/* ── Seção As Irmãs ────────────────────────────────────────── */
.irmas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
  align-items: start;
}

.irmas-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.85;
  margin: 0 0 16px;
}

.director-card {
  background: var(--gray);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

/* Coluna direita da seção Irmãs */
.irmas-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.photo-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.photo-cards-row .photo-card {
  height: 440px;
  display: flex;
  flex-direction: column;
}

.photo-cards-row .photo-card__img {
  height: 80% !important;
  flex-shrink: 0;
}

/* Card de foto com legenda centralizada na parte inferior */
.photo-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.10);
  background: #fff;
}

.photo-card__img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--gray);
}

.photo-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.photo-card__caption {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  border-top: 1px solid #f0f0f0;
}

.photo-card__caption > i {
  font-size: 18px;
  margin-bottom: 2px;
}

.photo-card__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #333;
}

.photo-card__role {
  font-size: 11px;
  color: #888;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.director-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: white;
  font-size: 16px;
}

.director-card__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--blue);
}

.director-card__role {
  font-size: 12px;
  color: #888;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ── Diretora Presidente (página de transparência) ─────────── */
.diretora-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.diretora-card__photo-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--blue);
  flex-shrink: 0;
}

.diretora-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.diretora-card__photo-placeholder {
  width: 100%;
  height: 100%;
  background: #e8eef6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #90A4AE;
  font-size: 56px;
}

.diretora-card__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.diretora-card__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
}

.diretora-card__cargo {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.director-card__note {
  font-size: 12px;
  color: #aaa;
  margin-top: 2px;
}

.juridica-box {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  border-radius: 12px;
  padding: 32px;
  color: white;
  margin-bottom: 24px;
}

.juridica-box__tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}

.juridica-box h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 14px;
  color: white;
}

.juridica-box p {
  font-size: 13px;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin: 0 0 12px;
}

.juridica-box p:last-child { margin: 0; }

.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.info-card {
  background: var(--gray);
  border-radius: 8px;
  padding: 18px;
  text-align: center;
}

.info-card i { font-size: 24px; margin-bottom: 8px; display: block; }

.info-card__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #444;
}

.info-card__sub {
  font-size: 11px;
  color: #888;
  margin-top: 2px;
}

/* ── Destaque verde ────────────────────────────────────────── */
.highlight-green {
  background: linear-gradient(135deg, var(--green), var(--green2));
  border-radius: 12px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.highlight-green i { color: white; font-size: 36px; flex-shrink: 0; }

.highlight-green p {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ── Metodologias ──────────────────────────────────────────── */
.metodologias-header {
  text-align: center;
  margin-bottom: 40px;
}

.metodologias-header .divider { margin: 10px auto 0; }
.metodologias-header .sec-title { margin-top: 0; }

.metodologias-header p {
  max-width: 560px;
  margin: 10px auto 0;
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

.activity-photo {
  background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
  border-radius: 10px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.activity-photo i { font-size: 40px; color: #90A4AE; }

.activity-photo span {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #90A4AE;
  font-weight: 600;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

/* ── Estrutura ─────────────────────────────────────────────── */
.estrutura-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
  align-items: center;
}

.estrutura-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.85;
  margin: 0 0 16px;
}

.estrutura-text p:last-of-type { margin-bottom: 28px; }

.space-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.space-grid .space-item--full { grid-column: 1 / -1; }

/* ── Equipe ────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}

/* ── Voluntariado ──────────────────────────────────────────── */
.volunteer-box {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  border-radius: 14px;
  padding: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.volunteer-box__tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}

.volunteer-box h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  margin: 0 0 18px;
  line-height: 1.2;
}

.volunteer-box__desc {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 14px;
}

.volunteer-box__desc2 {
  color: rgba(255,255,255,.75);
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 28px;
}

.volunteer-cards { display: grid; gap: 14px; }

.volunteer-card {
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.volunteer-card i { color: var(--yellow); font-size: 22px; flex-shrink: 0; }

.volunteer-card__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: white;
  margin-bottom: 3px;
}

.volunteer-card__sub {
  font-size: 12px;
  color: rgba(255,255,255,.65);
}

/* ── Rotina ────────────────────────────────────────────────── */
.rotina-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.rotina-card {
  background: var(--gray);
  border-radius: 10px;
  padding: 28px;
}

.rotina-card--blue   { border-top: 4px solid var(--blue); }
.rotina-card--green  { border-top: 4px solid var(--green); }
.rotina-card--yellow { border-top: 4px solid var(--yellow); }

.rotina-card i { font-size: 28px; margin-bottom: 14px; display: block; }

.rotina-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 10px;
}

.rotina-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.humanized-box {
  background: linear-gradient(135deg, #F1F8E9, #DCEDC8);
  border-radius: 12px;
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}

.humanized-box > i {
  color: var(--green);
  font-size: 40px;
  flex-shrink: 0;
  margin-top: 4px;
}

.humanized-box h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--blue);
  margin: 0 0 12px;
}

.humanized-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin: 0 0 12px;
}

.humanized-box p:last-child { margin: 0; }

/* ── Contato ───────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

/* ── Rodapé ────────────────────────────────────────────────── */
footer { background: var(--dark); padding: 60px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }

.footer-brand__logo { width: 52px; height: 52px; object-fit: contain; flex-shrink: 0; }

.footer-brand__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--yellow);
  line-height: 1;
}

.footer-brand__sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,.6);
  letter-spacing: 1px;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin: 0 0 20px;
}

.footer-social { display: flex; gap: 14px; }

.footer-social a {
  color: rgba(255,255,255,.6);
  font-size: 18px;
  transition: color .2s;
}

.footer-social a:hover { color: var(--yellow); }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--yellow);
  margin: 0 0 18px;
}

.f-link {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: 13px;
  display: block;
  margin-bottom: 8px;
  transition: color .2s;
}

.f-link:hover { color: var(--yellow); }

.f-link i { margin-right: 8px; opacity: .5; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  margin: 0;
}

.footer-bottom__copy { color: rgba(255,255,255,.4); }

.footer-bottom__quote {
  color: rgba(255,255,255,.3);
  font-style: italic;
}

/* ── Hero duas colunas ─────────────────────────────────────── */
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.hero__photo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__photo-placeholder {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  border: 3px solid rgba(255,255,255,.15);
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
  background: rgba(255,255,255,.05);
}

.hero__photo-placeholder i  { color: rgba(255,255,255,.25); font-size: 52px; }
.hero__photo-placeholder span { color: rgba(255,255,255,.35); font-size: 13px; }

/* ── Timeline extras ───────────────────────────────────────── */
.timeline__dot--yellow {
  background: var(--yellow);
  box-shadow: 0 0 0 3px var(--yellow);
}

.timeline__dot--green2 {
  background: var(--green2);
  box-shadow: 0 0 0 3px var(--green2);
}

.timeline__photo--yellow {
  background: linear-gradient(135deg, #FFF8E1, #FFF3CD);
}

.timeline__photo--green {
  background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
}

.obras-photo {
  margin-top: 40px;
  border-radius: 12px;
  height: 450px;
  background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
  border: 2px dashed #a5d6a7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.obras-photo i    { font-size: 44px; color: #81C784; }
.obras-photo span { font-family: 'Montserrat', sans-serif; font-size: 14px; color: #66BB6A; font-weight: 700; }

.obras-photo--img {
  background: none;
  border: none;
  overflow: hidden;
}

.obras-photo--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* ── Modal ─────────────────────────────────────────────────── */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,.6);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-backdrop.open { display: flex; }

.modal-box {
  background: white;
  border-radius: 16px;
  max-width: 560px;
  width: 100%;
  padding: 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-box--wide {
  max-width: 940px;
}

.modal-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.modal-col--bio {
  border-left: 1px solid #eee;
  padding-left: 36px;
}

.modal-bio-img-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #f0f4fb;
}

.modal-bio-img-wrap--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px dashed #c5cae9;
  color: #9fa8da;
}

.modal-bio-img-wrap--placeholder i    { font-size: 36px; }
.modal-bio-img-wrap--placeholder span { font-size: 12px; font-weight: 700; }

.modal-bio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-bio-text p {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 10px;
}

.modal-bio-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue);
  margin: 0 0 4px;
}

.modal-bio-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0 0 14px !important;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: #aaa;
  line-height: 1;
}

.modal-close:hover { color: #333; }

.modal-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.modal-icon {
  width: 52px;
  height: 52px;
  background: #FFEBEE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}

.modal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue);
  margin: 4px 0 0;
}

.modal-list { display: grid; gap: 12px; }

.modal-item {
  background: var(--gray);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.modal-item > i { font-size: 18px; flex-shrink: 0; margin-top: 2px; }

.modal-item strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #333;
  display: block;
  margin-bottom: 4px;
}

.modal-item p { font-size: 12px; color: #777; margin: 0; line-height: 1.5; }

/* ── Irmãs — ajustes ───────────────────────────────────────── */
.irmas-text p { font-size: 16px; }

.director-card__avatar--purple {
  background: linear-gradient(135deg, #7B1FA2, #4A148C);
  color: white;
  font-size: 20px;
}

.director-card__avatar--gradient {
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: white;
  font-size: 18px;
}

.director-card__avatar--purple i,
.director-card__avatar--gradient i { color: white; }

.info-card--clickable {
  cursor: pointer;
  transition: box-shadow .2s, transform .15s;
}

.info-card--clickable:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  transform: translateY(-2px);
}

.info-card__sub--link { color: var(--blue); font-weight: 700; margin-top: 4px; }

/* ── Atuação — ajustes ─────────────────────────────────────── */
.act-card__icon { font-size: 32px; }
.act-card__title { font-size: 15px; }
.act-card__text  { font-size: 14px; color: #666; }

.team-photo {
  background: linear-gradient(135deg, #E3F2FD, #C8E6C9);
  border-radius: 12px;
  min-height: 200px;
  border: 2px dashed #90CAF9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.team-photo i    { font-size: 40px; color: #64B5F6; }
.team-photo span { font-family: 'Montserrat', sans-serif; font-size: 13px; color: #64B5F6; font-weight: 700; }

/* ── Carrossel ─────────────────────────────────────────────── */
.carousel {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 36px;
  background: #111;
}

.carousel__track {
  display: flex;
  transition: transform .5s ease;
}

.carousel__slide {
  min-width: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.carousel__slide img {
  width: 100%;
  height: auto;
  display: block;
}

.carousel__slide i    { font-size: 52px; color: rgba(255,255,255,.3); }
.carousel__slide span { font-family: 'Montserrat', sans-serif; font-size: 14px; color: rgba(255,255,255,.45); font-weight: 600; }

.carousel__slide--blue   { background: linear-gradient(135deg, #1565C0, #2E7D32); }
.carousel__slide--purple { background: linear-gradient(135deg, #7B1FA2, #1565C0); }
.carousel__slide--orange { background: linear-gradient(135deg, #E65100, #F9A825); }
.carousel__slide--green  { background: linear-gradient(135deg, #2E7D32, #00838F); }

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.85);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
  transition: background .2s;
  font-size: 14px;
  color: var(--blue);
}

.carousel__btn:hover { background: white; }
.carousel__btn--prev { left: 14px; }
.carousel__btn--next { right: 14px; }

.carousel__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255,255,255,.4);
  transition: background .3s;
  padding: 0;
}

.carousel__dot--active { background: white; }

/* ── Tabs ──────────────────────────────────────────────────── */
.tabs-section { margin-top: 56px; }

.tab-nav {
  display: flex;
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 28px;
  overflow-x: auto;
}

.tab-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 12px 24px;
  border: none;
  border-bottom: 3px solid transparent;
  background: none;
  cursor: pointer;
  color: #aaa;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
  margin-bottom: -2px;
}

.tab-btn--active { color: var(--blue); border-bottom-color: var(--blue); }

.tab-panel--hidden { display: none; }

/* ── Eventos ───────────────────────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.event-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(0,0,0,.07);
  overflow: hidden;
  border-top: 4px solid var(--yellow);
}

.event-card__img {
  background: linear-gradient(135deg, #FFF8E1, #FFF3CD);
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.event-card__img i    { font-size: 36px; color: #F9A825; }
.event-card__img span { font-family: 'Montserrat', sans-serif; font-size: 11px; color: #b8860b; font-weight: 700; }

.event-card__body { padding: 20px; }

.event-card__tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 6px;
}

.event-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--blue);
  margin: 0 0 6px;
}

.event-card__desc { font-size: 13px; color: #888; line-height: 1.5; margin: 0 0 12px; }

.event-card__meta { display: flex; gap: 16px; font-size: 12px; color: #aaa; }

/* ── Voluntários / fotos ───────────────────────────────────── */
.thanks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.thanks-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  border-left: 4px solid var(--yellow);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.thanks-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), #FBC02D);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 16px;
}

.thanks-card__name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; color: #333; }
.thanks-card__role { font-size: 11px; color: #aaa; margin-top: 2px; }
.thanks-card__msg  { font-size: 12px; color: #777; margin: 8px 0 0; line-height: 1.5; font-style: italic; }

.vol-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}

.vol-photo {
  border-radius: 10px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.vol-photo i    { font-size: 32px; color: #90A4AE; }
.vol-photo span { font-family: 'Montserrat', sans-serif; font-size: 11px; color: #90A4AE; font-weight: 600; }

.vol-photo--blue   { background: linear-gradient(135deg, #E3F2FD, #C8E6C9); }
.vol-photo--yellow { background: linear-gradient(135deg, #FFF8E1, #FFF3CD); }
.vol-photo--pink   { background: linear-gradient(135deg, #FCE4EC, #F8BBD9); }

/* ── Add card (placeholder) ────────────────────────────────── */
.add-card {
  border: 2px dashed #e0e0e0;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 120px;
  cursor: pointer;
  transition: border-color .2s;
}

.add-card:hover { border-color: var(--blue); }
.add-card i     { font-size: 28px; color: #ccc; }
.add-card span  { font-family: 'Montserrat', sans-serif; font-size: 12px; color: #bbb; font-weight: 600; }

/* ── Empty state ───────────────────────────────────────────── */
.empty-state {
  background: var(--gray);
  border-radius: 10px;
  padding: 40px;
  text-align: center;
}

.empty-state i { font-size: 40px; color: #ccc; margin-bottom: 12px; display: block; }
.empty-state p { font-family: 'Montserrat', sans-serif; font-size: 14px; color: #aaa; margin: 0; }

/* ── Utilitários de tamanho de imagem ─────────────────────── */
/* Desktop: use img-w-XX na tag <img> ou no elemento pai      */
.img-w-10  { width: 10%;  height: auto; }
.img-w-20  { width: 20%;  height: auto; }
.img-w-25  { width: 25%;  height: auto; }
.img-w-30  { width: 30%;  height: auto; }
.img-w-33  { width: 33.333%; height: auto; }
.img-w-40  { width: 40%;  height: auto; }
.img-w-50  { width: 50%;  height: auto; }
.img-w-60  { width: 60%;  height: auto; }
.img-w-66  { width: 66.666%; height: auto; }
.img-w-70  { width: 70%;  height: auto; }
.img-w-75  { width: 75%;  height: auto; }
.img-w-80  { width: 80%;  height: auto; }
.img-w-90  { width: 90%;  height: auto; }
.img-w-100 { width: 100%; height: auto; }

/* Altura máxima opcional — combine com img-w-XX */
.img-h-auto { height: auto; }
.img-h-200  { max-height: 200px; object-fit: cover; }
.img-h-300  { max-height: 300px; object-fit: cover; }
.img-h-400  { max-height: 400px; object-fit: cover; }
.img-h-500  { max-height: 500px; object-fit: cover; }

/* Alinhamento horizontal de imagens */
.img-center { display: block; margin-left: auto; margin-right: auto; }
.img-left   { display: block; margin-right: auto; }
.img-right  { display: block; margin-left: auto; }

/* object-fit helpers */
.img-cover   { object-fit: cover; }
.img-contain { object-fit: contain; }

/* ── Responsivo ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .hamburger { display: block !important; }
  .hero { min-height: 72vh; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__photo-wrap { display: none; }

  /* 1. Margem lateral no hero */
  .hero__content { padding-left: 20px; padding-right: 20px; }

  /* Foto panorâmica da trajetória — volta ao tamanho original no mobile */
  .obras-photo { height: 220px; }

  /* Modal Caridade — empilha colunas no mobile */
  .modal-box--wide { max-width: 100%; }
  .modal-cols { grid-template-columns: 1fr; gap: 24px; }
  .modal-col--bio { border-left: none; padding-left: 0; border-top: 1px solid #eee; padding-top: 24px; }
  .modal-bio-img-wrap { aspect-ratio: 4 / 3; }

  /* 2. Foto das irmãs — reduz altura da imagem para caber a legenda */
  .photo-cards-row .photo-card__img { height: 70% !important; }

  /* 3. Esconde scrollbar das abas de Agenda e Gratidão */
  .tab-nav { scrollbar-width: none; -ms-overflow-style: none; }
  .tab-nav::-webkit-scrollbar { display: none; }

  /* ── Override de tamanho de imagem no mobile ─────────────── */
  /* Prefixo mob-img-w-XX sobrescreve o tamanho no celular     */
  .mob-img-w-10  { width: 10%  !important; height: auto; }
  .mob-img-w-20  { width: 20%  !important; height: auto; }
  .mob-img-w-25  { width: 25%  !important; height: auto; }
  .mob-img-w-30  { width: 30%  !important; height: auto; }
  .mob-img-w-33  { width: 33.333% !important; height: auto; }
  .mob-img-w-40  { width: 40%  !important; height: auto; }
  .mob-img-w-50  { width: 50%  !important; height: auto; }
  .mob-img-w-60  { width: 60%  !important; height: auto; }
  .mob-img-w-66  { width: 66.666% !important; height: auto; }
  .mob-img-w-70  { width: 70%  !important; height: auto; }
  .mob-img-w-75  { width: 75%  !important; height: auto; }
  .mob-img-w-80  { width: 80%  !important; height: auto; }
  .mob-img-w-90  { width: 90%  !important; height: auto; }
  .mob-img-w-100 { width: 100% !important; height: auto; }

  /* Imagens que são grandes no desktop ficam 100% no mobile por padrão */
  .img-w-60,
  .img-w-66,
  .img-w-70,
  .img-w-75,
  .img-w-80,
  .img-w-90,
  .img-w-100 { width: 100%; }
}

@media (min-width: 769px) {
  .hamburger { display: none !important; }
}

@media (max-width: 639px) {
  .timeline__line { display: none; }

  .timeline__item {
    grid-template-columns: 1fr;
  }

  .timeline__left {
    padding-right: 0;
    text-align: left;
  }

  .timeline__right { padding-left: 0; }

  .timeline__dot { display: none; }

  .humanized-box {
    grid-template-columns: 1fr;
  }
}

/* ── Single Evento ─────────────────────────────────────────── */
.evento-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, #0D2137 0%, #1A4A8A 100%);
  background-size: cover;
  background-position: center;
}

.evento-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 55, .75);
}

.evento-hero__content {
  position: relative;
  z-index: 2;
  padding: 60px 24px;
  width: 100%;
}

.evento-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  transition: color .2s;
}

.evento-back:hover { color: var(--yellow); }

.evento-hero__tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}

.evento-hero__tag--green { color: #81C784; }

.evento-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  margin: 0 0 20px;
  line-height: 1.2;
  max-width: 800px;
}

.evento-hero__meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.evento-hero__meta span {
  color: rgba(255,255,255,.85);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.evento-hero__meta i { color: var(--yellow); }

/* ── Conteúdo do evento ────────────────────────────────────── */
.evento-content {
  font-size: 16px;
  line-height: 1.85;
  color: #444;
}

.evento-content h2,
.evento-content h3,
.evento-content h4 {
  font-family: 'Montserrat', sans-serif;
  color: var(--blue);
  margin: 36px 0 14px;
  line-height: 1.3;
}

.evento-content h2 { font-size: 1.7rem; }
.evento-content h3 { font-size: 1.3rem; }
.evento-content h4 { font-size: 1.1rem; }

.evento-content p { margin: 0 0 20px; }

.evento-content img {
  max-width: 100%;
  border-radius: 10px;
  margin: 20px 0;
  display: block;
}

.evento-content figure { margin: 28px 0; }

.evento-content figcaption {
  font-size: 13px;
  color: #888;
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

.evento-content ul,
.evento-content ol {
  padding-left: 24px;
  margin: 0 0 20px;
}

.evento-content li { margin-bottom: 8px; }

.evento-content blockquote {
  border-left: 4px solid var(--yellow);
  background: #FFFDE7;
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 24px 0;
  font-style: italic;
  color: #555;
}

/* Galeria de imagens (Gutenberg) */
.evento-content .wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.evento-content .wp-block-gallery figure { margin: 0; }

.evento-content .wp-block-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin: 0;
}

/* ── Link "Ver evento" no card ─────────────────────────────── */
.evento-ver-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: color .2s;
}

.evento-ver-link:hover { color: var(--yellow); }

/* ── vol-photo com imagem real ─────────────────────────────── */
.vol-photo {
  overflow: hidden;
  position: relative;
}

.vol-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  display: block;
}

/* ── Galeria completa (archive-foto_acao) ──────────────────── */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.galeria-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  background: var(--gray);
}

.galeria-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  margin: 0;
  transition: transform .3s;
}

.galeria-item:hover img { transform: scale(1.04); }

.galeria-item__caption {
  padding: 10px 14px;
  font-size: 13px;
  color: #666;
  font-style: italic;
  margin: 0;
}

/* ── Paginação da galeria ──────────────────────────────────── */
.galeria-paginacao {
  text-align: center;
  margin-top: 32px;
}

.galeria-paginacao .nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.galeria-paginacao .page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: var(--blue);
  background: var(--gray);
  transition: background .2s, color .2s;
}

.galeria-paginacao .page-numbers.current,
.galeria-paginacao .page-numbers:hover {
  background: var(--blue);
  color: white;
}

.galeria-paginacao .page-numbers.dots {
  background: none;
  color: #aaa;
  cursor: default;
  pointer-events: none;
}

/* ── Lightbox ───────────────────────────────────────────────── */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.93);
  align-items: center;
  justify-content: center;
  padding: 0 60px;
}

.lb-overlay.lb-open { display: flex; }

.lb-img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  max-height: 90vh;
  overflow: hidden;
}

.lb-img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  display: block;
  opacity: 1;
  transition: opacity .2s;
}

.lb-img.lb-loading { opacity: 0; }

.lb-close {
  position: fixed;
  top: 16px;
  right: 20px;
  background: rgba(255,255,255,.12);
  border: none;
  color: white;
  font-size: 30px;
  line-height: 1;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 10000;
}

.lb-close:hover { background: rgba(255,255,255,.28); }

.lb-prev,
.lb-next {
  flex-shrink: 0;
  background: rgba(255,255,255,.12);
  border: none;
  color: white;
  font-size: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.lb-prev:hover,
.lb-next:hover { background: rgba(255,255,255,.28); }

.lb-counter {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.55);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

@media (max-width: 640px) {
  .lb-overlay { padding: 0 12px; }
  .lb-prev, .lb-next { width: 38px; height: 38px; font-size: 13px; }
}

/* ══════════════ DOAÇÕES ═════════════════════════════════════════ */

.doacoes-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.doacoes-text p {
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 14px;
}

.doacoes-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff8e1;
  border-left: 4px solid var(--yellow);
  border-radius: 0 8px 8px 0;
  padding: 14px 20px;
  margin: 20px 0 6px;
}

.doacoes-highlight i {
  color: #e53935;
  font-size: 22px;
  flex-shrink: 0;
}

.doacoes-highlight span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #555;
  font-style: italic;
}

/* QR Code card */
.doacoes-qr__card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,.10);
  padding: 24px;
  text-align: center;
  width: 240px;
}

.doacoes-qr__label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.doacoes-qr__label i {
  font-size: 18px;
  color: var(--green);
}

.doacoes-qr__img-wrap {
  background: #f5f7fa;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 14px;
}

.doacoes-qr__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.doacoes-qr__tip {
  font-size: 11px;
  color: #999;
  line-height: 1.55;
  margin: 0;
}

.doacoes-qr__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 32px 16px;
  color: #bbb;
}

.doacoes-qr__placeholder i {
  font-size: 56px;
  color: #ddd;
}

.doacoes-qr__placeholder span {
  font-size: 12px;
  text-align: center;
  line-height: 1.5;
  font-family: 'Montserrat', sans-serif;
}

@media (max-width: 768px) {
  .doacoes-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .doacoes-qr__card {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }
}

/* ══════════════ TRANSPARÊNCIA ═══════════════════════════════════ */

/* ── Seção CTA na home ─────────────────────────────────────────── */
.transp-cta-section {
  background: linear-gradient(135deg, #0D2137 0%, #1A4A8A 60%, #1565C0 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.transp-cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.06);
  pointer-events: none;
}

.transp-cta-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
}

.transp-cta-icon {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.transp-cta-icon i {
  font-size: 36px;
  color: var(--yellow);
}

.transp-cta-btn {
  white-space: nowrap;
}

/* ── Footer link highlight ─────────────────────────────────────── */
.f-link--highlight {
  color: var(--yellow) !important;
  font-weight: 600;
}

.f-link--highlight i {
  margin-right: 5px;
}

/* ── Hero da página de transparência ──────────────────────────── */
.transp-hero {
  background: linear-gradient(135deg, #0D2137 0%, #1A4A8A 60%, #1565C0 100%);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}

.transp-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.05);
  pointer-events: none;
}

.transp-hero__inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.transp-hero__icon {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.transp-hero__icon i {
  font-size: 30px;
  color: var(--yellow);
}

.transp-hero__desc {
  color: rgba(255,255,255,.8);
  margin-top: 12px;
  line-height: 1.7;
  max-width: 580px;
  font-size: 15px;
}

/* ── Lista de relatórios ───────────────────────────────────────── */
.transp-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ── Ano ───────────────────────────────────────────────────────── */
.transp-year {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.transp-year__header {
  display: flex;
  align-items: center;
  padding: 20px 28px;
  background: var(--blue);
  color: white;
}

.transp-year__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.transp-year__body {
  padding: 24px 28px;
  background: white;
}

/* ── Mês ───────────────────────────────────────────────────────── */
.transp-month {
  margin-bottom: 10px;
  border: 1px solid #e8eaf6;
  border-radius: 8px;
  overflow: hidden;
}

.transp-month:last-child {
  margin-bottom: 0;
}

.transp-month__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  background: var(--gray);
}

.transp-month__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 8px;
}

.transp-month__name i {
  color: var(--blue);
  font-size: 0.8rem;
}

.transp-month__count {
  font-size: 11px;
  color: #666;
  background: #e0e4f7;
  padding: 2px 10px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  white-space: nowrap;
}

.transp-month__body {
  padding: 14px 20px;
  background: white;
}

/* ── Lista de PDFs ─────────────────────────────────────────────── */
.transp-pdf-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.transp-pdf-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f8f9fc;
  border: 1px solid #e8eaf6;
  border-radius: 8px;
  text-decoration: none;
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background .2s, border-color .2s, color .2s;
}

.transp-pdf-item:hover {
  background: #e8eaf6;
  border-color: var(--blue);
  color: var(--blue);
}

/* Badge "PDF" no lugar do ícone */
.transp-pdf-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e53935;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 9px;
  letter-spacing: .5px;
  padding: 3px 6px;
  border-radius: 4px;
  flex-shrink: 0;
  line-height: 1;
}

.transp-pdf-item__ext {
  margin-left: auto;
  font-size: 0.7rem;
  color: #999;
  flex-shrink: 0;
}

.transp-empty-year {
  color: #aaa;
  font-style: italic;
  font-size: 14px;
  padding: 8px 0;
}

/* ── Responsivo ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .transp-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .transp-cta-icon {
    margin: 0 auto;
  }

  .transp-cta-action {
    display: flex;
    justify-content: center;
  }

  .transp-hero__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .transp-year__header {
    padding: 16px 20px;
  }

  .transp-year__body {
    padding: 16px 20px;
  }
}
