/* ============================================
   CASA AURORA — DESIGN SYSTEM
   Terracota #C17A5A · Oliva #6B6347 · Rosé #EDD5CC
   Blush #F5EDE8 · Creme #FAF7F3
   Playfair Display (display) · Lato (body)
============================================ */

:root {
  --terracota: #C17A5A;
  --terracota-dark: #A05A3A;
  --terracota-deep: #8B4A30;
  --olive: #6B6347;
  --olive-dark: #4A4530;
  --blush: #F5EDE8;
  --rose: #EDD5CC;
  --cream: #FAF7F3;
  --ink: #2E2318;
  --sage: #8A9E80;
  --gold: #BFA060;
  --white: #FFFFFF;

  --font-display: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;

  --max-width: 1080px;
  --radius: 4px;
}

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

html { scroll-behavior: smooth; }

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

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

a { color: inherit; text-decoration: none; }

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

/* ============ FOCUS / A11Y ============ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--terracota);
  outline-offset: 3px;
}

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

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 247, 243, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(107, 99, 71, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand svg { width: 30px; flex-shrink: 0; }

.nav-brand-text {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--olive);
}

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

.nav-links a {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--olive);
  opacity: 0.65;
  transition: opacity 0.2s;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  border-bottom-color: var(--terracota);
}

.nav-cta {
  background: var(--terracota);
  color: white !important;
  padding: 10px 20px;
  border-radius: 2px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 1 !important;
  border-bottom: none !important;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--terracota-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--olive);
  cursor: pointer;
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid rgba(107,99,71,0.12);
    transform: translateY(-110%);
    transition: transform 0.25s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { width: 100%; padding: 12px 0; border-bottom: 1px solid rgba(107,99,71,0.08); }
  .nav-cta { margin-top: 10px; text-align: center; }
  .nav-toggle { display: block; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--terracota);
  color: white;
}
.btn-primary:hover { background: var(--terracota-dark); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--olive);
  border-color: rgba(107,99,71,0.3);
}
.btn-ghost:hover { border-color: var(--olive); background: rgba(107,99,71,0.05); }

.btn-light {
  background: var(--cream);
  color: var(--olive);
}
.btn-light:hover { background: white; }

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============ HERO ============ */
.hero {
  background: var(--olive);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 24px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 18% 30%, rgba(193,122,90,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 85% 75%, rgba(193,122,90,0.12) 0%, transparent 70%);
}

.hero-bg-word {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 26vw, 320px);
  font-weight: 700;
  color: white;
  opacity: 0.025;
  white-space: nowrap;
  letter-spacing: 12px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: 26px;
  opacity: 0.95;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 8vw, 76px);
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--rose);
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(17px, 2.4vw, 22px);
  font-style: italic;
  color: var(--rose);
  opacity: 0.9;
  margin-bottom: 38px;
  line-height: 1.5;
}

.hero .btn-row { justify-content: center; margin-bottom: 30px; }

.hero-proof {
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(250,247,243,0.55);
  text-transform: uppercase;
}

.hero-proof strong { color: var(--rose); opacity: 1; }

/* ============ SECTION SCAFFOLDING ============ */
.section {
  padding: 90px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-tight { padding: 60px 24px; }

.sec-eyebrow {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: 10px;
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 400;
  color: var(--olive);
  line-height: 1.15;
  margin-bottom: 14px;
}

.sec-title em { font-style: italic; color: var(--terracota); }

.sec-desc {
  font-size: 15px;
  color: var(--ink);
  opacity: 0.6;
  font-weight: 300;
  line-height: 1.75;
  max-width: 600px;
}

.sec-head { margin-bottom: 48px; }
.sec-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.sec-head.center .sec-desc { margin: 0 auto; }

.divider {
  height: 1px;
  background: var(--rose);
  opacity: 0.6;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-band {
  background: var(--olive);
  color: var(--cream);
}
.section-band .sec-title { color: var(--cream); }
.section-band .sec-desc { color: rgba(250,247,243,0.6); }

.section-band-light {
  background: var(--blush);
}

/* ============ 3 PILARES ============ */
.pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pilar-card {
  background: white;
  border-radius: var(--radius);
  border-top: 3px solid var(--terracota);
  padding: 34px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pilar-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,0.09); }
.pilar-card.olive { border-top-color: var(--olive); }
.pilar-card.sage { border-top-color: var(--sage); }

.pilar-ico { font-size: 30px; margin-bottom: 16px; }

.pilar-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--olive);
  margin-bottom: 10px;
}

.pilar-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink);
  opacity: 0.62;
  font-weight: 300;
}

/* ============ CARDS GENERAL ============ */
.card-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ============ STAT STRIP ============ */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
}

.stat-item {
  background: var(--olive-dark);
  text-align: center;
  padding: 44px 28px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--terracota);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250,247,243,0.6);
  margin-top: 10px;
}

/* ============ TESTIMONIAL / QUOTE ============ */
.quote-block {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.quote-block p {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.4vw, 32px);
  font-style: italic;
  color: var(--olive);
  line-height: 1.5;
}

.quote-block p strong {
  font-style: normal;
  font-weight: 700;
  color: var(--terracota);
}

.quote-attr {
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--terracota);
  opacity: 0.8;
}

/* ============ EVENT CARD ============ */
.evento-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,0,0,0.07);
}

.evento-header {
  background: var(--terracota);
  padding: 30px 32px;
  position: relative;
  overflow: hidden;
}

.evento-header::before {
  content: '✦';
  position: absolute;
  top: -10px; right: 0;
  font-size: 110px;
  color: white;
  opacity: 0.06;
  font-family: var(--font-display);
}

.evento-tag {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
  position: relative;
}

.evento-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-style: italic;
  color: white;
  position: relative;
}

.evento-body { padding: 28px 32px; }

.evento-detalhe {
  display: flex;
  gap: 12px;
  font-size: 13.5px;
  color: var(--ink);
  padding: 9px 0;
  border-bottom: 1px solid var(--blush);
}
.evento-detalhe:last-of-type { border-bottom: none; }
.evento-detalhe .di { opacity: 0.5; flex-shrink: 0; width: 18px; }

.evento-footer {
  padding: 22px 32px;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.evento-price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--olive);
}
.evento-price span { font-size: 12px; opacity: 0.5; font-family: var(--font-body); }

/* ============ TIMELINE / PROCESSO ============ */
.timeline {
  display: flex;
  flex-direction: column;
}

.tl-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding-bottom: 32px;
  position: relative;
}

.tl-row:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 23px; top: 48px;
  width: 1px;
  height: calc(100% - 16px);
  background: var(--rose);
}

.tl-num {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--terracota);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.tl-title { font-family: var(--font-display); font-size: 19px; color: var(--olive); margin-bottom: 6px; }
.tl-desc { font-size: 13.5px; color: var(--ink); opacity: 0.6; font-weight: 300; line-height: 1.6; }

/* ============ FAQ ============ */
.faq-item { border-bottom: 1px solid var(--rose); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 0; cursor: pointer;
  font-family: var(--font-display);
  font-size: 17px; color: var(--olive);
}
.faq-q .fq-ico { font-size: 20px; color: var(--terracota); transition: transform 0.25s; flex-shrink: 0; margin-left: 16px; }
.faq-q[aria-expanded="true"] .fq-ico { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
  font-size: 14px; color: var(--ink); opacity: 0.65; font-weight: 300; line-height: 1.7;
}
.faq-a-inner { padding-bottom: 20px; }

/* ============ FORM ============ */
.form-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.07);
}

.form-row { margin-bottom: 18px; }

.form-row label {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 8px;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--rose);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  background: var(--cream);
}

.form-row textarea { resize: vertical; min-height: 100px; }

.form-note { font-size: 12px; color: var(--ink); opacity: 0.5; margin-top: 14px; }

/* ============ CONTACT CHANNELS ============ */
.channel-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s;
}
.channel-card:hover { transform: translateY(-3px); }
.channel-ico { font-size: 28px; margin-bottom: 12px; }
.channel-title { font-family: var(--font-display); font-size: 17px; color: var(--olive); margin-bottom: 6px; }
.channel-desc { font-size: 12.5px; color: var(--ink); opacity: 0.55; margin-bottom: 16px; font-weight: 300; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--olive-dark);
  color: rgba(250,247,243,0.6);
  padding: 56px 24px 32px;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand svg { width: 28px; }
.footer-brand-text { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--cream); letter-spacing: 1px; }
.footer-tagline { font-size: 13px; line-height: 1.7; max-width: 280px; font-weight: 300; }

.footer-col-title { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--terracota); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; opacity: 0.85; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 1; color: var(--rose); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 1px;
  opacity: 0.45;
}

/* ============ PAGE HERO (sub pages) ============ */
.page-hero {
  background: var(--olive);
  padding: 80px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(193,122,90,0.18), transparent 70%);
}
.page-hero-inner { position: relative; max-width: 680px; margin: 0 auto; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 6vw, 56px);
  color: var(--cream);
  font-weight: 700;
  margin-bottom: 14px;
}
.page-hero h1 em { font-style: italic; font-weight: 400; color: var(--rose); }
.page-hero p {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  color: var(--rose);
  opacity: 0.85;
}

/* ============ NÃO SOMOS / SOMOS ============ */
.nao-somos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ns-col-title {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.ns-col-title.nao { color: var(--terracota-deep); }
.ns-col-title.sim { color: var(--sage); }
.ns-col-title::after { content: ''; flex: 1; height: 1px; background: currentColor; opacity: 0.25; }
.ns-item {
  padding: 13px 0; border-bottom: 1px solid var(--blush);
  font-size: 14px; color: var(--ink); display: flex; gap: 10px; font-weight: 300;
}
.ns-item:last-child { border-bottom: none; }
.ns-item .nsi { flex-shrink: 0; }

/* ============ TEAM / FOUNDERS ============ */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.team-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.team-photo {
  height: 220px;
  background: var(--rose);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 60px; color: var(--terracota); opacity: 0.4;
}
.team-info { padding: 22px 24px; }
.team-name { font-family: var(--font-display); font-size: 19px; color: var(--olive); margin-bottom: 4px; }
.team-role { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--terracota); margin-bottom: 12px; }
.team-bio { font-size: 13.5px; color: var(--ink); opacity: 0.6; font-weight: 300; line-height: 1.7; }

/* ============ MANIFESTO ============ */
.manifesto {
  background: var(--blush);
  padding: 90px 24px;
  text-align: center;
}
.manifesto-inner { max-width: 760px; margin: 0 auto; }
.manifesto p {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 38px);
  font-style: italic;
  color: var(--olive);
  line-height: 1.55;
}
.manifesto p strong { font-style: normal; font-weight: 700; color: var(--terracota); }

/* ============ AGENDA TABLE (eventos page) ============ */
.agenda-list { display: flex; flex-direction: column; }
.agenda-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rose);
}
.agenda-row:last-child { border-bottom: none; }
.agenda-date { text-align: center; }
.agenda-date .day { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--terracota); line-height: 1; }
.agenda-date .mon { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--olive); opacity: 0.6; margin-top: 2px; }
.agenda-name { font-family: var(--font-display); font-size: 18px; color: var(--olive); margin-bottom: 4px; }
.agenda-meta { font-size: 12.5px; color: var(--ink); opacity: 0.55; font-weight: 300; }
.agenda-tag-wrap { text-align: right; }
.agenda-tag {
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 99px; border: 1px solid;
  white-space: nowrap; display: inline-block; margin-bottom: 8px;
}
.tag-aberto { color: var(--sage); border-color: var(--sage); background: rgba(138,158,128,0.08); }
.tag-fundadoras { color: var(--gold); border-color: var(--gold); background: rgba(191,160,96,0.08); }
.tag-esgotado { color: #b05030; border-color: #b05030; background: rgba(176,80,48,0.08); }

/* ============ UTILITIES ============ */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 300;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.07); }

/* ============ GALERIA ============ */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 180px);
  gap: 10px;
}
.galeria-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
}
.galeria-item.big { grid-column: span 2; grid-row: span 2; }
.galeria-item img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.galeria-placeholder {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--terracota-deep);
  opacity: 0.55;
  padding: 12px;
}
.galeria-placeholder .gp-ico { font-size: 26px; display: block; margin-bottom: 6px; }
.galeria-placeholder .gp-label {
  font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 700;
}
.galeria-note {
  text-align: center;
  font-size: 12px;
  color: var(--olive);
  opacity: 0.45;
  margin-top: 18px;
  font-style: italic;
}

/* ============ DEPOIMENTOS ============ */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.depoimento-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}
.depoimento-stars { color: var(--terracota); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.depoimento-texto {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15.5px;
  color: var(--olive);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}
.depoimento-attr {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--terracota);
  opacity: 0.75;
  border-top: 1px solid var(--blush);
  padding-top: 12px;
}

/* ============ FORMATOS FUTUROS ============ */
.formato-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}
.formato-img {
  height: 140px;
  background: var(--olive);
  display: flex; align-items: center; justify-content: center;
  font-size: 34px;
  position: relative;
}
.formato-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--terracota); color: white;
  padding: 4px 10px; border-radius: 99px;
}
.formato-body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.formato-title { font-family: var(--font-display); font-size: 18px; color: var(--olive); margin-bottom: 8px; }
.formato-desc { font-size: 13px; color: var(--ink); opacity: 0.6; font-weight: 300; line-height: 1.65; flex: 1; }
.formato-meta { font-size: 11px; color: var(--terracota); letter-spacing: 1px; text-transform: uppercase; margin-top: 14px; opacity: 0.85; }

/* ============ FUNDADORAS — PÁGINA EXCLUSIVA ============ */
.fund-hero {
  background: var(--olive-dark);
  padding: 110px 24px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fund-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 50% 0%, rgba(191,160,96,0.18), transparent 70%);
}
.fund-crest {
  width: 64px; height: 64px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  position: relative;
}
.fund-hero-inner { position: relative; max-width: 680px; margin: 0 auto; }
.fund-eyebrow { font-size: 11px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.fund-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6.5vw, 60px);
  color: var(--cream);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.1;
}
.fund-hero h1 em { font-style: italic; font-weight: 400; color: var(--rose); }
.fund-hero p.lede {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  color: rgba(250,247,243,0.7);
  line-height: 1.6;
}

.beneficio-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.beneficio-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: white; border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border-left: 3px solid var(--gold);
}
.beneficio-ico { font-size: 22px; flex-shrink: 0; color: var(--gold); }
.beneficio-title { font-family: var(--font-display); font-size: 16px; color: var(--olive); margin-bottom: 5px; }
.beneficio-desc { font-size: 13px; color: var(--ink); opacity: 0.6; font-weight: 300; line-height: 1.6; }

.fund-cta-band {
  background: var(--gold);
  text-align: center;
  padding: 64px 24px;
}
.fund-cta-band h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(24px, 4vw, 34px);
  color: var(--olive-dark);
  margin-bottom: 24px;
}

.criterio-row {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--rose);
}
.criterio-row:last-child { border-bottom: none; }
.criterio-num { font-family: var(--font-display); font-size: 22px; color: var(--gold); font-weight: 700; flex-shrink: 0; min-width: 32px; }
.criterio-text { font-size: 14.5px; color: var(--ink); opacity: 0.7; font-weight: 300; line-height: 1.6; }
.criterio-text strong { font-weight: 700; color: var(--olive); opacity: 1; }

/* ============ JSON-LD VISUAL NOTE (não afeta layout) ============ */

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  .pilares-grid, .card-grid-3 { grid-template-columns: 1fr; }
  .card-grid-2, .nao-somos-grid, .team-grid { grid-template-columns: 1fr; }
  .card-grid-4 { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .agenda-row { grid-template-columns: 60px 1fr; }
  .agenda-tag-wrap { grid-column: 1 / -1; text-align: left; margin-top: 8px; }
  .evento-footer { flex-direction: column; align-items: stretch; }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 160px); }
  .galeria-item.big { grid-column: span 2; grid-row: span 1; }
  .depoimentos-grid { grid-template-columns: 1fr; }
  .beneficio-list { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 64px 20px; }
  .hero { min-height: auto; padding: 100px 20px 60px; }
  .wa-float { width: 50px; height: 50px; bottom: 16px; right: 16px; }
}
