/* ===== Instituto Sempre Com Você — estilo =====
   Paleta fiel aos posts do Instagram: azul-marinho + amarelo vibrante,
   com azul-céu e rosa/magenta como acentos. Verde reservado ao WhatsApp. */
:root {
  --navy: #12295C;
  --navy-2: #1B3A7A;
  --navy-deep: #0d1f45;
  --sky: #29ABE2;
  --sky-dark: #1B8Fc4;
  --pink: #EC1E79;
  --lime: #8DC63F;         /* verde-claro da logo — destaque principal */
  --lime-2: #A6D45F;       /* verde-claro clarinho (hover) */
  --lime-dark: #79B52E;    /* verde-claro escuro */
  --whatsapp: #25D366;
  --ink: #12295C;
  --muted: #5b6577;
  --line: #E5E9EF;
  --bg: #ffffff;
  --bg-alt: #F4F6F8;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(18,41,92,.08);
  --shadow-sm: 0 4px 14px rgba(18,41,92,.07);
  --container: 1180px;
  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip; /* trava rolagem horizontal sem quebrar o header sticky */
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.15; color: var(--navy); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); }

.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--sky); margin-bottom: 12px;
}
.eyebrow-light { color: var(--lime); }
.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-head.center h2::after {
  content: ""; display: block; width: 64px; height: 4px;
  background: var(--pink); border-radius: 2px; margin: 16px auto 0;
}
.section-sub { color: var(--muted); max-width: 640px; margin: 12px auto 0; }
.section h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: 13px 26px; border-radius: 999px; cursor: pointer;
  border: 2px solid transparent; transition: .2s ease; white-space: nowrap;
  background: transparent; -webkit-appearance: none; appearance: none;
  line-height: 1.2;
}
.btn-sm { padding: 10px 20px; font-size: .88rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
/* Primário = pílula amarela com texto marinho (como nos posts) */
.btn-primary { background: var(--lime); color: var(--navy); box-shadow: 0 6px 18px rgba(141,198,63,.4); }
.btn-primary:hover { background: var(--lime-2); transform: translateY(-2px); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: #1eb655; transform: translateY(-2px); }
.btn-outline { border-color: var(--sky); color: var(--sky); background: transparent; }
.btn-outline:hover { background: var(--sky); color: #fff; }
.btn-outline-navy { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline-navy:hover { background: var(--navy); color: #fff; }
.btn-outline-light { border-color: rgba(255,255,255,.75); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--navy); }
.btn-ghost-light { background: #fff; color: var(--navy); }
.btn-ghost-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-disabled { background: var(--line); color: var(--muted); cursor: default; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; gap: 18px; height: 82px; }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo { height: 62px; width: auto; }
.main-nav { margin-left: auto; }
.main-nav > ul { display: flex; align-items: center; gap: 1px; list-style: none; }
.main-nav a {
  font-family: var(--font-head); font-weight: 600; font-size: .9rem;
  color: var(--navy); padding: 8px 11px; border-radius: 8px; transition: .18s;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--sky); background: var(--bg-alt); }
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: "▾"; font-size: .7rem; margin-left: 4px; }
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 190px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); list-style: none; padding: 6px;
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: .18s;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; }
.nav-cta { flex-shrink: 0; padding: 11px 18px; font-size: .88rem; }
.nav-ig { width: 42px; height: 42px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; transition: .2s; box-shadow: 0 4px 12px rgba(220,39,67,.28); background: linear-gradient(45deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.nav-ig svg { width: 20px; height: 20px; }
.nav-ig:hover { transform: translateY(-2px); filter: brightness(1.06); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto; }
.nav-toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 3px; transition: .25s; }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 500px; display: flex; align-items: center;
  background-color: #0d2350;
  background-image: url('../img/hero.jpg'), url('../img/sim-scene-1.svg');
  background-size: cover; background-position: center 30%;
  overflow: hidden;
}
/* Scrim escuro mais forte à esquerda pra leitura do texto sobre a foto */
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(13,35,80,.95) 0%, rgba(13,35,80,.82) 42%, rgba(18,41,92,.35) 75%, rgba(18,41,92,.15) 100%),
    radial-gradient(circle at 92% 82%, rgba(141,198,63,.20), transparent 42%);
}
.hero .container { position: relative; }
.hero-content { color: #fff; padding: 68px 0; max-width: 740px; margin: 0; text-align: left; }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
.hero p { font-size: 1.12rem; margin: 20px 0 32px; max-width: 560px; color: rgba(255,255,255,.92); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
@media (min-width: 768px) { .hero-cta { flex-wrap: nowrap; } }

/* ===== Stats bar ===== */
.stats-bar {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  border-top: 5px solid var(--lime);
  box-shadow: var(--shadow); padding: 30px 24px; margin-top: -46px; position: relative; z-index: 5;
}
.stat { display: flex; align-items: center; justify-content: center; gap: 14px; }
.stat-icon { color: var(--sky); flex-shrink: 0; display: flex; }
.stat-icon svg { width: 36px; height: 36px; }
.stat-body { display: flex; flex-direction: column; }
.stat-num { display: block; font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: var(--navy); line-height: 1.05; transition: transform .2s ease; transform-origin: left center; }
/* Efeito de contagem dos números */
.stat-num.is-counting, .impact-num.is-counting { transform: scale(1.05); }
.stat-num.counted, .impact-num.counted { animation: numPop .45s ease; }
@keyframes numPop { 0% { transform: scale(1.14); } 55% { transform: scale(.96); } 100% { transform: scale(1); } }
.stat-label { color: var(--muted); font-size: .9rem; }

/* ===== Two col ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.two-col--top { align-items: start; }
.two-col-text h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 16px; }
/* "O Instituto Sempre Com Você" numa linha só no desktop */
#quem-somos .two-col { grid-template-columns: 0.9fr 1.1fr; }
#quem-somos .two-col-text h2 { font-size: clamp(1.5rem, 2.2vw, 1.95rem); }
@media (min-width: 961px) { #quem-somos .two-col-text h2 { white-space: nowrap; } }
.two-col-text p { color: var(--muted); margin-bottom: 16px; }
.two-col-text .btn { margin-top: 8px; }
.media-frame {
  aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
  background-image: url('../img/post1.jpeg');
  background-size: cover; background-position: center; box-shadow: var(--shadow);
}
.media-placeholder, .gallery-item span, .map-frame span {
  color: rgba(255,255,255,.9); font-family: var(--font-head); font-weight: 600;
  font-size: .95rem; text-align: center; padding: 10px;
}

/* ===== Missão/Visão/Valores ===== */
/* ===== Nossa Essência (Missão / Visão / Valores) — base dos cards de Projetos ===== */
.essence { background: var(--bg-alt); }

.mvv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
.mvv-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease, box-shadow .25s ease;
}
.mvv-card.is-visible { opacity: 1; transform: translateY(0); }
.mvv-card.is-visible:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mvv-card--dark { background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%); border: none; color: #fff; }
.mvv-card--dark h3 { color: #fff; }
.mvv-card--dark p { color: rgba(255,255,255,.85); }
.mvv-card--dark .mvv-icon { color: var(--lime); }

.mvv-icon { color: var(--sky); display: inline-flex; }
.mvv-icon svg { width: 38px; height: 38px; }
.mvv-card h3 { color: var(--navy); font-size: 1.35rem; font-weight: 700; margin: 0; }
.mvv-card p { color: var(--muted); line-height: 1.7; margin: 0; }

.values-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; width: 100%; margin: 0; }
.values-list li { position: relative; padding-left: 24px; color: var(--muted); font-size: .92rem; }
.values-list li::before { content: "✓"; position: absolute; left: 0; color: var(--sky); font-weight: 700; }

/* ===== Projetos ===== */
.projects-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.project-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.project-card h3 { font-size: 1.35rem; }
.project-card p { color: var(--muted); flex: 1; }
.project-icon { color: var(--sky); display: inline-flex; }
.project-icon svg { width: 38px; height: 38px; }
.project-card--dark { background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%); color: #fff; border: none; }
.project-card--dark h3 { color: #fff; }
.project-card--dark p { color: rgba(255,255,255,.85); }
.project-tag { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--lime); }

/* ===== Projeto Circuito card ===== */
.circuito-card {
  display: grid; grid-template-columns: 1.1fr .95fr 0.9fr; gap: 0; align-items: center;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.circuito-info { color: #fff; padding: 30px 34px; }
.circuito-info h2 { color: #fff; font-size: 1.9rem; margin-bottom: 2px; }
.circuito-meta { list-style: none; display: grid; gap: 10px; margin: 14px 0 20px; }
.circuito-meta li { display: flex; align-items: center; gap: 10px; color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .95rem; }
.circuito-meta li svg { width: 18px; height: 18px; color: var(--lime); flex-shrink: 0; }
.circuito-cta { display: flex; flex-wrap: wrap; gap: 12px; }
/* Programação — no mesmo marinho, com checks verdes */
.circuito-prog { color: #fff; padding: 30px 24px; align-self: center; }
.circuito-prog h4 { color: var(--lime); font-family: var(--font-head); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.prog-list { list-style: none; display: grid; gap: 10px; }
.prog-list li { position: relative; padding-left: 30px; font-size: .95rem; }
.prog-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; background: var(--lime-dark); color: #fff; border-radius: 50%; text-align: center; line-height: 20px; font-size: .72rem; font-weight: 700; }
/* Foto à direita com borda esquerda curvada */
.circuito-media {
  align-self: stretch;
  background-image: url('../img/circuito.jpg'), url('../img/post3.jpeg');
  background-size: cover; background-position: center;
  border-radius: 90px 0 0 90px; min-height: 260px;
}

/* ===== Atividades ===== */
.activities-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.activity { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 22px; text-align: center; box-shadow: var(--shadow-sm); transition: .2s; }
.activity:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--sky); }
.activity-icon { color: var(--sky); display: inline-flex; margin-bottom: 12px; }
.activity-icon svg { width: 38px; height: 38px; }
/* ícone inline (dentro de textos/labels) */
.ic-inline { width: 15px; height: 15px; vertical-align: -2px; flex-shrink: 0; }
.activity h4 { font-size: 1.02rem; margin-bottom: 8px; }
.activity p { color: var(--muted); font-size: .9rem; }

/* ===== Agenda ===== */
.agenda-grid { display: grid; gap: 16px; max-width: 860px; margin: 0 auto; }
.agenda-item { display: grid; grid-template-columns: 160px 1fr; gap: 24px; align-items: center; background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--sky); border-radius: var(--radius-sm); padding: 22px 26px; box-shadow: var(--shadow-sm); }
.agenda-when { display: flex; flex-direction: column; }
.agenda-day { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1.05rem; }
.agenda-hour { color: var(--muted); font-size: .9rem; }
.agenda-what h4 { font-size: 1.08rem; margin-bottom: 4px; }
.agenda-what p { color: var(--muted); font-size: .92rem; }
.agenda-badge { display: inline-block; margin-top: 8px; background: var(--lime); color: var(--navy); font-family: var(--font-head); font-weight: 700; font-size: .75rem; padding: 4px 12px; border-radius: 999px; }
.agenda-note { text-align: center; color: var(--muted); margin-top: 28px; font-size: .92rem; }
.agenda-note a { color: var(--sky); font-weight: 600; }

/* ===== Impacto ===== */
.section-impact { background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%); }
.section-impact h2 { color: #fff; }
.impact-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.impact { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.impact-icon { color: var(--lime); display: flex; margin-bottom: 6px; }
.impact-icon svg { width: 42px; height: 42px; }
.impact-num { display: block; font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; color: var(--lime); line-height: 1; }
.impact-label { color: rgba(255,255,255,.85); }

/* ===== Galeria + depoimentos ===== */
.gallery-testimonials { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start; }
.gallery-block h2, .testimonials-block h2 { font-size: 1.7rem; margin-bottom: 12px; }
.ig-sub { color: var(--muted); font-size: .95rem; margin-bottom: 18px; max-width: 420px; }
.btn-ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: #fff; border: none; margin-bottom: 22px; box-shadow: 0 8px 20px rgba(220,39,67,.28); }
.btn-ig:hover { filter: brightness(1.06); transform: translateY(-2px); }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
/* Feed automático do Instagram (Behold.so) — responsivo, altura automática */
.ig-embed { width: 100%; margin-bottom: 20px; }
.ig-embed behold-widget { display: block; width: 100%; }
.gallery-item { aspect-ratio: 4/3; border-radius: var(--radius-sm); background-size: cover; background-position: center; box-shadow: var(--shadow-sm); }
.gallery-item:nth-child(1){ background-image: url('../img/post1.jpeg'); }
.gallery-item:nth-child(2){ background-image: url('../img/post2.jpeg'); }
.gallery-item:nth-child(3){ background-image: url('../img/post3.jpeg'); }
.gallery-item:nth-child(4){ background-image: url('../img/post2.jpeg'); }
.testimonial { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); margin-bottom: 18px; }
.testimonial blockquote { font-size: 1.05rem; color: var(--navy); margin-bottom: 16px; }
.testimonial figcaption { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .9rem; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; color: var(--sky); flex-shrink: 0; }
.testimonial-avatar svg { width: 24px; height: 24px; }

/* ===== Parceiros + apoio ===== */
.partners-block h2 { font-size: 1.7rem; margin-bottom: 16px; }
.partners-block p { color: var(--muted); margin-bottom: 24px; }
.partners-logos { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }
#parceiros { padding-top: 44px; padding-bottom: 44px; }
.partner-logo { display: flex; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 16px; min-width: 100px; height: 64px; box-shadow: var(--shadow-sm); text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
a.partner-logo:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(18,41,92,.14); }
.partner-logo img { max-height: 40px; max-width: 120px; object-fit: contain; }
.partner-name { font-family: var(--font-head); font-weight: 700; color: var(--navy); }
.partner-logo.has-logo .partner-name { display: none; }
/* Selos redondos (Betânia, CharlieBH) respiram melhor um pouco maiores */
.partner-logo img[src*="betania"],
.partner-logo img[src*="charliebh"] { max-height: 52px; }
/* CharlieBH: logo de fundo preto — card escuro pra se fundir */
.partner-logo--dark { background: #0d0d0d; border-color: #0d0d0d; }
.support-block .eyebrow { display: block; }
.support-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px 20px; box-shadow: var(--shadow-sm); }
.support-photo-wrap { position: relative; margin-bottom: 4px; }
.support-photo { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; border: 4px solid var(--sky); box-shadow: 0 0 22px rgba(41,171,226,.32), 0 8px 18px rgba(18,41,92,.12); }
.support-badge { position: absolute; bottom: -11px; left: 50%; transform: translateX(-50%); background: var(--sky); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .7rem; letter-spacing: .02em; padding: 5px 15px; border-radius: 999px; white-space: nowrap; box-shadow: 0 6px 16px rgba(41,171,226,.3); }
.support-card p { color: var(--muted); font-size: .9rem; line-height: 1.6; margin: 0; }
.support-card p strong { color: var(--navy); }
.support-socials { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; width: 100%; }
.btn-insta { background: var(--sky); color: #fff; }
.btn-insta:hover { background: var(--sky-dark); transform: translateY(-2px); }

/* ===== CTA band ===== */
.cta-band { background: linear-gradient(120deg, var(--navy) 0%, var(--navy-deep) 100%); text-align: center; color: #fff; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem,3vw,2.4rem); }
.cta-band p { max-width: 640px; margin: 16px auto 28px; color: rgba(255,255,255,.9); }
.cta-band-buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ===== Contato ===== */
#contato { padding-top: 52px; padding-bottom: 52px; }
.contact-text h2 { font-size: clamp(1.7rem,3vw,2.4rem); margin-bottom: 12px; }
.contact-list { list-style: none; display: grid; gap: 14px; margin-top: 22px; }
.contact-list li { display: flex; align-items: center; gap: 12px; color: var(--muted); }
.contact-list li > span { color: var(--sky); display: inline-flex; flex-shrink: 0; }
.contact-list li > span svg { width: 20px; height: 20px; }
.contact-list a { color: var(--navy); font-weight: 500; }
.contact-list a:hover { color: var(--sky); }
.map-frame { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ===== Agenda / Programação das aulas ===== */
.sched { max-width: 880px; margin: 0 auto; }
.sched-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 22px; }
.sched-tab { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--navy); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 10px 20px; cursor: pointer; transition: .2s; }
.sched-tab:hover { border-color: var(--sky); color: var(--sky); }
.sched-tab.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }
.sched-panel { display: none; }
.sched-panel.is-active { display: block; animation: schedFade .3s ease; }
@keyframes schedFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.sched-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--line); background: #fff; }
.sched-table { width: 100%; border-collapse: collapse; min-width: 480px; }
.sched-table thead th { background: linear-gradient(150deg, var(--navy), var(--navy-deep)); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .8rem; letter-spacing: .05em; text-transform: uppercase; text-align: left; padding: 14px 20px; }
.sched-table td { padding: 13px 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: .93rem; }
.sched-table td:first-child { font-family: var(--font-head); font-weight: 600; color: var(--navy); white-space: nowrap; }
.sched-table td:nth-child(2) { color: var(--navy); white-space: nowrap; }
.sched-table tbody tr:nth-child(even) { background: var(--bg-alt); }
.sched-table tbody tr:hover { background: rgba(41,171,226,.06); }
.agenda-note { text-align: center; color: var(--muted); margin-top: 24px; font-size: .92rem; }
.agenda-note a { color: var(--sky); font-weight: 600; }

/* Agenda no mobile: tabela vira cards empilhados */
@media (max-width: 560px) {
  .sched-tabs { gap: 6px; }
  .sched-tab { padding: 9px 14px; font-size: .82rem; }
  .sched-table-wrap { overflow-x: visible; }
  .sched-table { min-width: 0; }
  .sched-table thead { display: none; }
  .sched-table tbody, .sched-table tr, .sched-table td { display: block; }
  .sched-table tbody tr { background: #fff; border-top: 1px solid var(--line); padding: 12px 18px; }
  .sched-table tbody tr:first-child { border-top: none; }
  .sched-table tbody tr:hover { background: #fff; }
  .sched-table td { padding: 2px 0; border: none; white-space: normal; font-size: .92rem; }
  .sched-table td:first-child { font-size: 1rem; margin-bottom: 4px; }
  .sched-table td:nth-child(2), .sched-table td:nth-child(3) { color: var(--muted); }
  .sched-table td:nth-child(2)::before { content: "Horário · "; font-family: var(--font-head); font-weight: 600; color: var(--sky); }
  .sched-table td:nth-child(3)::before { content: "Local · "; font-family: var(--font-head); font-weight: 600; color: var(--sky); }
}

/* ===== Footer ===== */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.8); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding: 60px 24px 40px; }
.footer-logo { height: 66px; background: #fff; padding: 8px 12px; border-radius: 12px; margin-bottom: 16px; }
.footer-brand p { font-size: .92rem; margin-bottom: 10px; max-width: 320px; }
.footer-signature { color: var(--lime); font-family: var(--font-head); font-weight: 600; }
.footer-col h5 { color: #fff; font-size: .95rem; margin-bottom: 16px; letter-spacing: .04em; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { font-size: .9rem; color: rgba(255,255,255,.75); }
.footer-col a:hover { color: var(--lime); }
.footer-social { display: flex; gap: 12px; }
.fsoc { width: 44px; height: 44px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #fff; transition: .2s; }
.fsoc svg { width: 20px; height: 20px; }
.fsoc:hover { transform: translateY(-3px); filter: brightness(1.06); }
.fsoc-ig { background: linear-gradient(45deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.fsoc-wa { background: var(--whatsapp); }
.fsoc-mail { background: var(--sky); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; }
.footer-bottom p { font-size: .85rem; text-align: center; color: rgba(255,255,255,.6); }

/* ===== Lightbox do panfleto ===== */
.flyer-lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(13,31,69,.88); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; padding: 24px; animation: flyerFade .25s ease; }
.flyer-lightbox[hidden] { display: none; }
@keyframes flyerFade { from { opacity: 0; } to { opacity: 1; } }
.flyer-img { max-width: min(540px, 92vw); max-height: 92vh; width: auto; border-radius: 12px; box-shadow: 0 24px 70px rgba(0,0,0,.55); }
.flyer-close { position: absolute; top: 16px; right: 20px; width: 46px; height: 46px; border-radius: 50%; border: none; background: rgba(255,255,255,.16); color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; transition: .2s; }
.flyer-close:hover { background: rgba(255,255,255,.32); transform: scale(1.05); }

/* ===== WhatsApp float ===== */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 90; width: 60px; height: 60px; border-radius: 50%; background: var(--whatsapp); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,.45); transition: .2s; }
.whatsapp-float:hover { transform: scale(1.08); }

/* ===== Responsive ===== */

/* Notebooks estreitos — aperta o menu pra caber numa linha */
@media (max-width: 1040px) {
  .main-nav a { padding: 8px 7px; font-size: .84rem; }
  .main-nav > ul { gap: 0; }
  .brand-logo { height: 56px; }
}

/* Tablet — menu hambúrguer e grids em 2 colunas */
@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-ig { margin-left: auto; width: 40px; height: 40px; }
  .main-nav { position: fixed; inset: 82px 0 auto 0; background: #fff; border-bottom: 1px solid var(--line); margin: 0; max-height: 0; overflow: hidden; transition: max-height .3s ease; box-shadow: var(--shadow); }
  .main-nav.open { max-height: calc(100vh - 82px); overflow-y: auto; }
  .main-nav > ul { flex-direction: column; align-items: stretch; padding: 12px; gap: 2px; }
  .main-nav a { padding: 13px 12px; display: block; font-size: 1rem; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: 16px; }
  .has-dropdown > a::after { content: ""; }
  .section { padding: 66px 0; }
  .section-head { margin-bottom: 40px; }
  .stats-bar { grid-template-columns: 1fr 1fr; row-gap: 26px; }
  .mvv-grid, .projects-grid, .activities-grid { grid-template-columns: 1fr 1fr; }
  .circuito-card { grid-template-columns: 1fr; }
  .circuito-media { min-height: 210px; border-radius: 0; order: -1; }
  .two-col, .gallery-testimonials { grid-template-columns: 1fr; gap: 36px; }
  #quem-somos .two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Celular grande */
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .section { padding: 52px 0; }
  .section-head { margin-bottom: 32px; }
  .hero { min-height: 440px; }
  .hero-content { padding: 52px 0; }
  .mvv-grid, .projects-grid { grid-template-columns: 1fr; }
  .values-list { grid-template-columns: 1fr 1fr; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .stats-bar { padding: 24px 18px; gap: 14px; margin-top: -40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px 24px; padding: 48px 18px 32px; }
  .circuito-info, .circuito-prog { padding: 30px 24px; }
}

/* Celular pequeno */
@media (max-width: 460px) {
  .nav-wrap { height: 70px; }
  .main-nav { inset: 70px 0 auto 0; }
  .main-nav.open { max-height: calc(100vh - 70px); }
  .brand-logo { height: 46px; }
  .activities-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; row-gap: 18px; }
  .stat { justify-content: flex-start; }
  .values-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { max-width: none; }
  .footer-logo { margin-left: auto; margin-right: auto; }
  .footer-col ul { justify-items: center; }
  .support-socials .btn { width: 100%; justify-content: center; }
  .whatsapp-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
}
