/* ── UTILS ── */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
 
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: filter .2s, transform .15s;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-olive  { background: var(--olive);  color: var(--espresso2); }
.btn-rust   { background: var(--rust);   color: var(--cream); }
.btn-outline { background: transparent; border-color: currentColor; }
 
.section-eyebrow {
  display: block;
  font-family: var(--font-eyebrow);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--olive-dark);
  letter-spacing: .04em;
  margin-bottom: 6px;
}
 

/* ── TEXTURE OVERLAY ── */
.texture {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .5;
}

/* ── LOGO SVG ── */
/* The IMF spiral: two nested arcs forming the signature spiral logo */
.logo-spiral {
  display: block;
}


/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--espresso2);
  display: flex; align-items: center;
  padding-top: 0;
  overflow: hidden;
}
.hero-bg-spiral {
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 950px; height: 950px;
  opacity: .07;
}
.hero .wrap {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 100px;
  padding-top: 60px; padding-bottom: 80px;
}

.hero-content{
    height: 70vh;
}

.hero-content .eyebrow {
  font-family: var(--font-eyebrow);
  font-size: 1.5rem; font-weight: 600;
  color: var(--olive);
  letter-spacing: .06em;
  display: block; margin-bottom: 18px;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.15;
  color: var(--cream);
  max-width: 700px;
  margin-bottom: 20px;
}
.hero-content h1 span { color: var(--olive); }
.hero-content .lead {
  font-size: 1.1rem; line-height: 1.7;
  color: var(--cream2);
  max-width: 580px;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-ctas .btn-outline { border-color: var(--cream2); color: var(--cream2); }
 
/* visit cards */
.visit-cards {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
}
.visit-card {
  background: rgba(251,244,227,.07);
  border: 1px solid rgba(251,244,227,.13);
  border-radius: var(--r-card);
  padding: 28px 24px;
  backdrop-filter: blur(4px);
  transition: background .25s;
}
.visit-card:hover { background: rgba(251,244,227,.12); }
.visit-card h4 {
  font-family: var(--font-display);
  font-size: 1.4rem; color: var(--olive);
  margin-bottom: 10px;
}
.visit-card p {
  font-size: .9rem; color: var(--cream2); line-height: 1.6; margin-bottom: 16px;
}
.visit-card a {
  font-family: var(--font-ui); font-weight: 700;
  font-size: .88rem; color: var(--mustard); text-decoration: none;
  transition: color .2s;
}
.visit-card a:hover { color: var(--olive); }
 
/* ── SOBRE ── */
.sobre {
  padding: 100px 0;
  background: var(--cream);
}
.sobre-grid {
  display: grid; grid-template-columns: 2fr 1fr; gap: 60px; align-items: start;
}
.sobre h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--rust); margin-bottom: 16px;
}
.sobre .intro {
  font-size: 1.05rem; line-height: 1.75;
  color: var(--text); margin-bottom: 32px;
}
.pillars { display: flex; flex-direction: column; gap: 20px; }
.pillar { border-left: 3px solid var(--olive); padding-left: 16px; }
.pillar h4 {
  font-family: var(--font-display);
  font-size: 1.5rem; color: var(--rust-dark); margin-bottom: 6px;
}
.pillar p { font-size: .92rem; line-height: 1.65; color: var(--text); }
 
.stats-card {
  border-radius: var(--r-card);
  padding: 28px 16px;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.stat{
    background-color: var(--espresso);
    padding: 20px;
    width: 70%;
    text-align: center;
    border-radius: var(--r-card);
    /* margin: auto; */
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem; color: var(--olive); line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-ui); font-size: .85rem; font-weight: 600;
  color: var(--cream2); letter-spacing: .03em;
}
 
/* ── MARIA FELIPA ── */
.mf {
  position: relative;
  background: var(--olive-deep);
  padding: 100px 0;
  overflow: hidden;
}
.mf-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.mf-portrait {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.portrait-frame {
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(33,18,10,.45);
  display: flex; align-items: center; justify-content: center;
  border: 3px solid rgba(187,194,56,.35);
  overflow: hidden;
}
.portrait-frame svg { width: 200px; height: 200px; opacity: .7; }
.map-tag {
  font-family: var(--font-eyebrow); font-size: 1rem; font-weight: 600;
  color: var(--mustard); background: rgba(0,0,0,.25);
  padding: 5px 14px; border-radius: 999px;
}
.mf .section-eyebrow { color: var(--olive); font-size: 1.5rem; }

.mf h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--cream); margin-bottom: 18px;
}
.mf p {
  font-size: 1rem; line-height: 1.75; color: var(--cream2); margin-bottom: 14px;
}
.mf-quote {
  font-family: var(--font-eyebrow) !important;
  font-size: 1.3rem !important; font-weight: 700 !important;
  color: var(--mustard) !important;
  border-left: 3px solid var(--olive);
  padding-left: 14px; margin-top: 8px !important;
}
 
/* ── SÍMBOLO ── */
.simbolo {
  position: relative;
  background: var(--espresso);
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}
.simbolo .section-eyebrow { color: var(--mustard); margin-bottom: 12px; }
.simbolo h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--cream);
  max-width: 600px; margin: 0 auto 48px;
  line-height: 1.3;
}
.simbolo-spiral-wrap {
  position: relative;
  width: 260px; height: 260px;
  margin: 0 auto 40px;
}
.simbolo-spiral-wrap img {
  width: 100%; height: 100%;
}
.word-tag {
  position: absolute;
  font-family: var(--font-eyebrow);
  font-size: 1.5rem; font-weight: 700;
  color: var(--cream2);
  background: transparent;
  white-space: nowrap;
}
.tag-resistencia { top: 10px; left: -100px; }
.tag-fluxo       { top: 10px; right: -50px; }
.tag-ciranda      { bottom: 60px; left: -80px; }
.tag-coletividade { bottom: 60px; right: -110px; }
.simbolo p {
  font-size: 1rem; line-height: 1.75;
  color: var(--cream2); max-width: 560px; margin: 0 auto;
}
 
/* ── APOIE ── */
.apoie-bg-losango {
  position: absolute;
  right: 65%; top: 40%;
  transform: translateY(-50%);
  width: 300px; height: 300px;
  opacity: .07;
}

.apoie {
    position: relative; overflow: hidden;
    background: var(--rust);
  padding: 80px 0;
}
.apoie-inner {
  text-align: center; position: relative; z-index: 1;
}
.apoie h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  color: var(--cream); max-width: 700px; margin: 0 auto 32px;
  line-height: 1.3;
}
.apoie-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.apoie .btn-olive { border-color: var(--olive); color: var(--rust); }
.apoie .btn-cream { background: var(--cream); color: var(--rust); }
 

/* ── UNIDADES ── */

.unidades{
    padding:100px 0;
    background:var(--cream2);
}

.unidades-head{
    text-align:center;
    margin-bottom:60px;
}

.unidades-head h2{

    font-family:var(--font-display);
    color:var(--rust);

    font-size:clamp(1.8rem,3vw,2.5rem);

    max-width:700px;
    margin:auto;
}

/* SWIPER */

.unidadesSwiper{

  position:relative;
  width:100%;
  padding:10px 0 60px;
}

.swiper-slide{
  height:auto;
  display:flex;
}

.unit-card{
    background:var(--cream);
    border-radius:var(--r-card);
    border:1px solid rgba(159,64,0,.12);
    padding:36px 28px;
    display:flex;
    flex-direction:column;
    gap:12px;
    width:100%;
    transition:.3s;
    text-align:center;
}

.unit-card:hover{

    box-shadow:0 8px 30px rgba(0,0,0,.12);
}

.unit-card img{

    width:100%;

    height:220px;

    object-fit:cover;

    border-radius:var(--r-card);

    margin-bottom:10px;
}

.unit-card h3{

    font-family:var(--font-display);

    color:var(--rust);

    font-size:1.4rem;
}

.unit-card .cei{

    color:var(--olive-dark);

    font-weight:600;
}

.unit-card address{

    font-style:normal;

    color:var(--plum-brown);

    font-size:.95rem;
}

.unit-card .phone{

    color:var(--plum-brown);

    font-size:.9rem;
}

.unit-card .btn{

    margin-top:auto;
}

/* SETAS */
.swiper-button-next,
.swiper-button-prev{

    width:35px;
    height:35px;

    background:transparent;

    display:flex;
    align-items:center;
    justify-content:center;
}

.swiper-button-next::after,
.swiper-button-prev::after{

    display:none;
}

.swiper-button-next img,
.swiper-button-prev img{

    width:100%;
    height:100%;

    object-fit:contain;

    transition:.2s;
}

.swiper-button-next:hover img,
.swiper-button-prev:hover img{

    transform:scale(1.08);
}

.swiper-button-next:active img,
.swiper-button-prev:active img{

    transform:scale(.95);
}

.swiper-button-prev{

    left: 10px;
}

.swiper-button-next{

    right: 10px;
}

/* RESPONSIVO */

@media(max-width:768px){

    .unidades{

        padding:70px 0;
    }

    .unit-card{

        padding:25px;
    }

    .unit-card img{

        height:180px;
    }

}
 
/* ── TRABALHE ── */
.trabalhe-bg-zigzag {
  position: absolute;
  right: 25%; top: 70%;
  transform: translateY(-50%);
  width: 400px; height: 400px;
  opacity: .07;
}
.trabalhe {
  padding: 70px 0;
  background: var(--espresso2);
  text-align: center;
}
.trabalhe h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--cream); max-width: 620px; margin: 0 auto 28px;
  line-height: 1.35;
}
.trabalhe .btn { background: var(--cream); color: var(--espresso2); }
 
/* ── FAQ ── */
.faq { padding: 100px 0; background: var(--cream); }
.faq-grid {
  display: grid; grid-template-columns: 340px 1fr; gap: 60px;
}
.faq-head h2 {
  font-family: var(--font-display);
  font-size: 1.9rem; color: var(--rust); margin-bottom: 12px;
}
.faq-head p { font-size: 1rem; color: var(--text); margin-bottom: 24px; }
.faq-item {
  border-bottom: 1px solid rgba(59,42,26,.15);
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; cursor: pointer;
  font-family: var(--font-ui); font-weight: 700; font-size: 1rem;
  color: var(--text);
}
.plus {
  font-size: 1.4rem; color: var(--rust); font-weight: 400;
  transition: transform .3s;
}
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 18px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: .95rem; line-height: 1.7; color: var(--text); }
 
/* ── CONTATO ── */
.contato {
  position: relative; overflow: hidden;
  background: var(--olive-deep);
  padding: 100px 0; text-align: center;
}
.contato h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--cream); max-width: 600px; margin: 0 auto 16px;
  line-height: 1.3;
}
.contato p {
  font-size: 1.05rem; line-height: 1.7; color: var(--cream2);
  max-width: 520px; margin: 0 auto 32px;
}

.contato-bg-spirals {
  position: absolute;
  width: 950px;
  opacity: .07;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
 


/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .sobre-grid, .mf-grid, .faq-grid { grid-template-columns: 1fr; }
  .visit-cards, .unit-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .mf-portrait { display: none; }
  .nav-links { display: none; }
  .tag-resistencia, .tag-fluxo, .tag-ciranda, .tag-coletividade { display: none; }
}

@media (max-width: 600px) {
    .stats-grid { grid-template-columns: repeat(1,1fr); justify-items: center; }
}
