@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600;1,700&display=swap');

:root {
  --orange:#f47c20; --orange2:#f5a623; --red:#e03b2e;
  --green:#4caf50; --blue:#1976d2; --purple:#6b3fa0; --navy:#1e2d4e;
  --bg:#0f1117; --bg2:#181c26; --bg3:#1f2536; --surface:#252d3e;
  --border:rgba(244,124,32,.18); --text:#f0f2f8; --text-muted:#8892a4;
  --accent:var(--orange); --accent-glow:rgba(244,124,32,.22);
  --logo-filter: brightness(0) invert(1);
  --logo-text-filter: brightness(1.8) contrast(1.2);
}

[data-theme="light"] {
  --bg:#f4f6fb; --bg2:#ffffff; --bg3:#eef1f8; --surface:#ffffff;
  --border:rgba(244,124,32,.22); --text:#1a2035; --text-muted:#5a6380;
  --accent-glow:rgba(244,124,32,.15);
  --logo-filter: none;
  --logo-text-filter: none;
}

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

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

body{
  font-family:'Montserrat',sans-serif;
  background:var(--bg);color:var(--text);
  overflow-x:hidden;transition:background .35s,color .35s;
}

::-webkit-scrollbar{width:6px;}
::-webkit-scrollbar-track{background:var(--bg2);}
::-webkit-scrollbar-thumb{background:var(--orange);border-radius:3px;}

/* ── logo image behaviour ── */
.logo-img,
.hero-logo{
  transition:filter .35s ease;
}

.logo-img {
  height:60px;
  width:auto;
  display:block;
}

[data-theme="dark"] .logo-img,
[data-theme="dark"] .hero-logo{
  filter: brightness(0) invert(1);
}

[data-theme="light"] .logo-img,
[data-theme="light"] .hero-logo{
  filter: none;
}

/* ── NAV ── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:999;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  padding:.9rem 5vw;
  background:rgba(15,17,23,.9);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--border);
  transition:background .35s,border-color .35s;
}

[data-theme="light"] nav{
  background:rgba(244,246,251,.92);
}

.nav-logo{
  grid-column:2;
  justify-self:center;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.75rem;
  text-decoration:none;
  min-width:0;
}

.nav-logo-text{
  display:flex;
  flex-direction:column;
  align-items:center;
  line-height:1.05;
  text-align:center;
}

.nav-logo-text strong{
  font-size:1rem;
  font-weight:900;
  letter-spacing:2.5px;
  background:linear-gradient(90deg,var(--orange),var(--orange2));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.nav-logo-text span{
  font-size:.52rem;
  letter-spacing:2px;
  color:var(--text-muted);
  text-transform:uppercase;
}

nav ul{
  grid-column:1;
  justify-self:start;
  list-style:none;
  display:flex;
  gap:2rem;
}

nav ul a{
  color:var(--text-muted);text-decoration:none;
  font-size:.73rem;font-weight:600;letter-spacing:1.8px;text-transform:uppercase;
  transition:color .25s;
}

nav ul a:hover{color:var(--orange);}

.nav-right{
  grid-column:3;
  justify-self:end;
  display:flex;align-items:center;gap:1rem;
}

.theme-btn{
  background:none;border:1px solid var(--border);color:var(--text-muted);cursor:pointer;
  width:36px;height:36px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;font-size:1rem;
  transition:border-color .25s,color .25s,background .25s;
  flex-shrink:0;
}

.theme-btn:hover{border-color:var(--orange);color:var(--orange);background:var(--accent-glow);}

.nav-cta{
  background:linear-gradient(135deg,var(--orange),var(--orange2));
  color:#fff!important;font-weight:700!important;
  padding:.48rem 1.3rem;border-radius:4px;
  font-size:.72rem!important;letter-spacing:1.5px!important;
  text-decoration:none;
  white-space:nowrap;
}

.nav-cta:hover{opacity:.88;}

/* ── HERO ── */
#hero{
  min-height:100vh;display:flex;flex-direction:column;
  align-items:center;justify-content:center;text-align:center;
  padding:7rem 5vw 4rem;position:relative;overflow:hidden;
}

.hero-bg{
  position:absolute;inset:0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 38%,rgba(244,124,32,.09) 0%,transparent 65%),
    radial-gradient(ellipse 35% 40% at 15% 60%,rgba(30,45,78,.5) 0%,transparent 70%),
    radial-gradient(ellipse 30% 30% at 85% 30%,rgba(107,63,160,.12) 0%,transparent 60%),
    var(--bg);
}

.hero-rings{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;pointer-events:none;}
.ring{position:absolute;border-radius:50%;border:1px solid;animation:spinRing linear infinite;}
.ring-1{width:420px;height:420px;border-color:rgba(244,124,32,.06);animation-duration:40s;}
.ring-2{width:620px;height:620px;border-color:rgba(25,118,210,.05);animation-duration:60s;animation-direction:reverse;}
.ring-3{width:820px;height:820px;border-color:rgba(107,63,160,.04);animation-duration:80s;}

@keyframes spinRing{to{transform:rotate(360deg);}}

.hero-content{
  position:relative;
  z-index:2;
  max-width:800px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  transform:translateY(-72px);
  padding:0 clamp(16px,4vw,24px);
}

.hero-badge{
  display:inline-flex;align-items:center;gap:.5rem;
  font-size:.63rem;letter-spacing:3.5px;text-transform:uppercase;
  color:var(--orange);border:1px solid rgba(244,124,32,.3);
  padding:.35rem 1rem;border-radius:2px;margin:0 auto 2rem;
  animation:fadeUp .7s ease both;
}

.hero-badge::before,.hero-badge::after{content:'✦';font-size:.5rem;}

/* hero logo */
.hero-logo{
  width:min(510px,90vw);
  height:auto;
  display:block;
  margin:0 auto -5.5rem;
  position:static;
  left:auto;
  right:auto;
  transform:none;
  animation:fadeUp .8s .05s ease both;
}

.hero-title{
  font-family:'Merriweather',serif;
  font-size:clamp(2.6rem,6.5vw,5.2rem);
  font-weight:700;
  line-height:1.1;
  margin-bottom:1.5rem;
  animation:fadeUp .85s .1s ease both;
  opacity:0;
}

.hero-title em{
  font-style:italic;
  background:linear-gradient(90deg,var(--orange),var(--orange2),#f8c44a);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  display:inline-block;
  padding-right:.22em;
  padding-bottom:.08em;
  overflow:visible;
}

.hero-sub{
  font-size:1rem;color:var(--text-muted);line-height:1.85;
  max-width:560px;margin:0 auto 3rem;
  animation:fadeUp .85s .2s ease both;opacity:0;
}

.hero-btns{
  display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;
  animation:fadeUp .85s .3s ease both;opacity:0;
}

.btn-primary{
  background:linear-gradient(135deg,var(--orange),var(--orange2));color:#fff;
  padding:.85rem 2.2rem;font-family:'Montserrat',sans-serif;font-size:.78rem;
  font-weight:700;letter-spacing:2px;text-transform:uppercase;
  border:none;cursor:pointer;text-decoration:none;border-radius:4px;display:inline-block;
  box-shadow:0 4px 22px rgba(244,124,32,.35);transition:transform .2s,box-shadow .2s;
}

.btn-primary:hover{transform:translateY(-2px);box-shadow:0 8px 30px rgba(244,124,32,.45);}

.btn-outline{
  border:1.5px solid rgba(244,124,32,.5);color:var(--orange);
  padding:.85rem 2.2rem;font-family:'Montserrat',sans-serif;font-size:.78rem;
  font-weight:700;letter-spacing:2px;text-transform:uppercase;
  cursor:pointer;text-decoration:none;border-radius:4px;display:inline-block;
  transition:background .2s,transform .2s;
}

.btn-outline:hover{background:rgba(244,124,32,.1);transform:translateY(-2px);}

.scroll-down{
  position:absolute;
  bottom:2.2rem;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:.4rem;
  width:max-content;
  text-align:center;
  animation:fadeUp 1s .5s ease both;
  opacity:0;
}

.scroll-down span{
  display:block;
  margin:0 auto;
  font-size:.6rem;
  letter-spacing:3px;
  color:var(--text-muted);
  text-transform:uppercase;
  text-align:center;
}

.scroll-line{
  width:1px;
  height:46px;
  margin:0 auto;
  background:linear-gradient(var(--orange),transparent);
  animation:pulse 2s infinite;
}

@keyframes pulse{0%,100%{opacity:1;}50%{opacity:.25;}}

/* ── SECTIONS ── */
section{padding:clamp(4.5rem,8vw,6.5rem) 5vw;}
.sec-label{font-size:.62rem;letter-spacing:4px;text-transform:uppercase;color:var(--orange);margin-bottom:.9rem;}
.sec-title{font-family:'Merriweather',serif;font-size:clamp(1.8rem,3.5vw,2.9rem);font-weight:700;line-height:1.22;margin-bottom:1.3rem;}
.sec-title em{font-style:italic;color:var(--orange);}
.accent-bar{width:52px;height:3px;background:linear-gradient(90deg,var(--orange),var(--orange2));border-radius:2px;margin-bottom:2.2rem;}
.reveal{opacity:0;transform:translateY(28px);transition:opacity .7s ease,transform .7s ease;}
.reveal.vis{opacity:1;transform:none;}

/* ── QUEM SOMOS ── */
/* ─────────────────────────────────────
   QUEM SOMOS
───────────────────────────────────── */

#quem-somos{
  background:var(--bg2);
}

.qs-wrap{
  display:grid;
  grid-template-columns:minmax(0, .9fr) minmax(600px, 1.1fr);
  gap:clamp(3rem, 6vw, 6rem);
  align-items:center;
}

/* Coluna esquerda */

.qs-text p{
  margin-bottom:1.1rem;
  color:var(--text-muted);
  font-size:.95rem;
  line-height:1.95;
}

.qs-text strong{
  color:var(--orange);
  font-weight:700;
}

/* Card da inspiração */

.qs-card{
  position:relative;
  width:100%;
  padding:2.2rem;
  overflow:hidden;
  background:var(--bg3);
  border:1px solid var(--border);
  border-radius:14px;
  box-shadow:0 18px 45px rgba(15,20,35,.1);
}

.qs-card::before{
  content:'';
  position:absolute;
  top:0;
  right:0;
  left:0;
  height:4px;
  background:linear-gradient(
    90deg,
    var(--red),
    var(--orange),
    var(--orange2),
    var(--green),
    var(--blue),
    var(--purple)
  );
}

/* Título, texto e logos */

.qs-inspiration-top{
  display:grid;
  grid-template-columns:minmax(230px, 1fr) minmax(300px, 1fr);
  gap:2rem;
  align-items:center;
}

.qs-inspiration-heading{
  min-width:0;
}

.qs-inspiration-label{
  display:block;
  margin-bottom:.45rem;
  color:var(--orange);
  font-size:.6rem;
  font-weight:700;
  letter-spacing:2.5px;
  text-transform:uppercase;
}

.qs-inspiration-heading h3{
  margin:0;
  color:var(--text);
  font-family:'Merriweather',serif;
  font-size:clamp(1.7rem, 2.4vw, 2.15rem);
  line-height:1.2;
}

.qs-inspiration-text{
  max-width:420px;
  margin-top:1rem;
  color:var(--text-muted);
  font-size:.82rem;
  line-height:1.7;
}

/* Logos maiores */

.qs-organizations{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:1rem;
  width:100%;
}

.qs-organization{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:112px;
  padding:0;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(244,124,32,.25);
  border-radius:12px;
}

.qs-organization-logo{
  display:block;
  width:100%;
  height:100%;
  max-width:none;
  max-height:none;
  object-fit:contain;
}

/*
  As escalas compensam espaços vazios
  existentes dentro de alguns arquivos PNG.
*/

.qs-organization-logo--alef{
  transform:scale(4.8);
  transform-origin:center;
}

.qs-organization-logo--movement{
  transform:scale(5.2);
  transform-origin:center;
}

/* Indicadores */

.qs-stats{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:1rem;
  width:100%;
  margin-top:1.6rem;
  padding-top:1.6rem;
  border-top:1px solid var(--border);
}

.qs-stat-item{
  display:flex;
  min-width:0;
  min-height:180px;
  padding:1.15rem .7rem;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:12px;
  text-align:center;
  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.qs-stat-item:hover{
  transform:translateY(-4px);
  border-color:rgba(244,124,32,.5);
  box-shadow:0 10px 24px rgba(244,124,32,.1);
}

.qs-stat-icon{
  display:grid;
  width:50px;
  height:50px;
  margin-bottom:.8rem;
  flex-shrink:0;
  place-items:center;
  background:rgba(244,124,32,.1);
  border:1px solid rgba(244,124,32,.25);
  border-radius:50%;
  font-size:1.3rem;
}

.qs-stat-num{
  display:flex;
  min-height:42px;
  align-items:center;
  justify-content:center;
  gap:.1rem;
  font-family:'Merriweather',serif;
  font-size:clamp(1.7rem, 2.2vw, 2.25rem);
  font-weight:700;
  line-height:1;
  white-space:nowrap;
  background:linear-gradient(135deg,var(--orange),var(--orange2));
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.qs-stat-num small{
  font-family:'Montserrat',sans-serif;
  font-size:.5em;
  font-weight:900;
}

.qs-stat-lbl{
  margin-top:.6rem;
  color:var(--text-muted);
  font-size:.66rem;
  line-height:1.55;
  letter-spacing:.3px;
  text-align:center;
}

/* ── LOGOS NO MODO CLARO ── */

[data-theme="light"] .qs-organization{
  background:#fff;
  border-color:rgba(244,124,32,.22);
  box-shadow:0 4px 14px rgba(20,30,50,.05);
}

/* ── LOGOS NO MODO ESCURO ── */

[data-theme="dark"] .qs-organization{
  background:rgba(255,255,255,.055);
  border-color:rgba(255,255,255,.1);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 8px 22px rgba(0,0,0,.15);
}

[data-theme="dark"] .qs-organization:hover{
  background:rgba(255,255,255,.085);
  border-color:rgba(244,124,32,.38);
}

/*
  Impede que os filtros gerais das logos do site
  sejam aplicados às logos das organizações.
*/

[data-theme="dark"] .qs-organization-logo,
[data-theme="light"] .qs-organization-logo{
  filter:none;
}

/* Modo claro */

/* ─────────────────────────────────────
   ALTERNÂNCIA CORRETA DAS LOGOS
───────────────────────────────────── */

/* Versões exibidas por padrão */

.qs-organization .qs-logo-light{
  display:block !important;
}

.qs-organization .qs-logo-dark{
  display:none !important;
}

/* Modo claro */

[data-theme="light"] .qs-organization .qs-logo-light{
  display:block !important;
}

[data-theme="light"] .qs-organization .qs-logo-dark{
  display:none !important;
}

/* Modo escuro */

[data-theme="dark"] .qs-organization .qs-logo-light{
  display:none !important;
}

[data-theme="dark"] .qs-organization .qs-logo-dark{
  display:block !important;
}


/* Notebook e tablet */

@media (max-width:1150px){
  .qs-wrap{
    grid-template-columns:1fr;
    gap:2.5rem;
  }

  .qs-card{
    max-width:800px;
    margin:0 auto;
  }
}

/* Tablet */

@media (max-width:760px){
  .qs-inspiration-top{
    grid-template-columns:1fr;
  }

  .qs-inspiration-heading{
    text-align:center;
  }

  .qs-inspiration-text{
    margin-right:auto;
    margin-left:auto;
  }

  .qs-organizations{
    max-width:480px;
    margin:0 auto;
  }
}

/* Celular */

@media (max-width:580px){
  .qs-card{
    padding:1.3rem;
  }

  .qs-organizations{
    grid-template-columns:1fr;
    max-width:330px;
  }

  .qs-organization{
    height:95px;
  }

  .qs-organization-logo{
    height:72px;
  }

  .qs-stats{
    grid-template-columns:1fr;
  }

  .qs-stat-item{
    display:grid;
    grid-template-columns:52px 1fr;
    column-gap:1rem;
    min-height:auto;
    padding:1rem;
    text-align:left;
  }

  .qs-stat-icon{
    grid-row:1 / 3;
    margin:0;
  }

  .qs-stat-num{
    justify-content:flex-start;
  }

  .qs-stat-lbl{
    margin-top:.35rem;
    text-align:left;
  }



}

/* ── PROPOSTA ── */
#proposta{background:var(--bg);text-align:center;}
#proposta .sec-title{max-width:680px;margin:0 auto .9rem;}
#proposta .accent-bar{margin:0 auto 2.2rem;}
.proposta-intro{color:var(--text-muted);max-width:560px;margin:0 auto;line-height:1.85;font-size:.95rem;}
.prop-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5px;margin-top:3.5rem;background:var(--border);border-radius:8px;overflow:hidden;}
.prop-card{background:var(--bg2);padding:2.6rem 2rem;text-align:left;position:relative;overflow:hidden;transition:background .3s;}
.prop-card:hover{background:var(--bg3);}
.prop-card::after{content:'';position:absolute;bottom:0;left:0;right:0;height:2.5px;background:linear-gradient(90deg,var(--orange),transparent);transform:scaleX(0);transform-origin:left;transition:transform .4s;}
.prop-card:hover::after{transform:scaleX(1);}
.prop-num{
  font-family:'Merriweather',serif;
  font-size:3.5rem;
  font-weight:700;
  line-height:1;
  margin-bottom:1.2rem;
}
[data-theme="dark"] .prop-card:nth-child(1) .prop-num{ color:#7a2b23; }
[data-theme="dark"] .prop-card:nth-child(2) .prop-num{ color:#8a4b1f; }
[data-theme="dark"] .prop-card:nth-child(3) .prop-num{ color:#9a6a22; }
[data-theme="dark"] .prop-card:nth-child(4) .prop-num{ color:#2f6b35; }
[data-theme="dark"] .prop-card:nth-child(5) .prop-num{ color:#1f4f8a; }
[data-theme="dark"] .prop-card:nth-child(6) .prop-num{ color:#5a2f7a; }

/* modo claro */
[data-theme="light"] .prop-card:nth-child(1) .prop-num{ color:#c85a4f; }
[data-theme="light"] .prop-card:nth-child(2) .prop-num{ color:#d97a3a; }
[data-theme="light"] .prop-card:nth-child(3) .prop-num{ color:#d9a43a; }
[data-theme="light"] .prop-card:nth-child(4) .prop-num{ color:#5aa662; }
[data-theme="light"] .prop-card:nth-child(5) .prop-num{ color:#4a8fd1; }
[data-theme="light"] .prop-card:nth-child(6) .prop-num{ color:#8a5ac8; }

.prop-icon{font-size:1.8rem;margin-bottom:1rem;display:block;}
.prop-card-title{font-size:1rem;font-weight:700;letter-spacing:.5px;margin-bottom:.6rem;color:var(--text);}
.prop-card-text{color:var(--text-muted);font-size:.86rem;line-height:1.8;}
.prop-card:nth-child(1){border-top:3px solid var(--red);}
.prop-card:nth-child(2){border-top:3px solid var(--orange);}
.prop-card:nth-child(3){border-top:3px solid var(--orange2);}
.prop-card:nth-child(4){border-top:3px solid var(--green);}
.prop-card:nth-child(5){border-top:3px solid var(--blue);}
.prop-card:nth-child(6){border-top:3px solid var(--purple);}

/* ── BENEFÍCIOS ── */
#beneficios{background:var(--bg2);}
.benef-header{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:end;margin-bottom:3.5rem;}
.benef-sub{color:var(--text-muted);line-height:1.85;font-size:.95rem;margin-top:.8rem;}
.benef-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.2rem;}
.benef-item{background:var(--bg3);border:1px solid var(--border);border-radius:8px;padding:1.8rem;display:flex;gap:1.3rem;align-items:flex-start;transition:border-color .3s,transform .3s,box-shadow .3s;}
.benef-item:hover{border-color:rgba(244,124,32,.45);transform:translateY(-3px);box-shadow:0 8px 28px rgba(244,124,32,.1);}
.benef-icon{width:46px;height:46px;flex-shrink:0;border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:1.3rem;}
.bi-1{background:rgba(224,59,46,.12);} .bi-2{background:rgba(244,124,32,.12);} .bi-3{background:rgba(245,166,35,.12);}
.bi-4{background:rgba(76,175,80,.12);} .bi-5{background:rgba(25,118,210,.12);} .bi-6{background:rgba(107,63,160,.12);}
.benef-item-title{font-size:.95rem;font-weight:700;margin-bottom:.4rem;}
.benef-item-text{color:var(--text-muted);font-size:.85rem;line-height:1.75;}

/* ── CTA BAND ── */
#cta-band{
  background:linear-gradient(135deg,var(--navy) 0%,#0f1a35 50%,#1a0d2e 100%);
  padding:5rem 5vw;display:flex;align-items:center;justify-content:space-between;
  gap:2rem;flex-wrap:wrap;position:relative;overflow:hidden;
}

#cta-band::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 60% 80% at 20% 50%,rgba(244,124,32,.08) 0%,transparent 70%);}
.cta-band-content{position:relative;z-index:2;}
.cta-band-title{font-family:'Merriweather',serif;font-size:clamp(1.6rem,3vw,2.5rem);font-weight:700;color:#fff;max-width:580px;line-height:1.25;}
.cta-band-title em{font-style:italic;color:var(--orange2);}
.cta-band-sub{color:rgba(255,255,255,.55);margin-top:.8rem;font-size:.9rem;}
.btn-white{background:#fff;color:var(--navy);padding:.9rem 2.2rem;font-family:'Montserrat',sans-serif;font-size:.78rem;font-weight:700;letter-spacing:2px;text-transform:uppercase;border:none;cursor:pointer;text-decoration:none;border-radius:4px;display:inline-block;flex-shrink:0;position:relative;z-index:2;transition:background .2s,color .2s,transform .2s;}
.btn-white:hover{background:var(--orange);color:#fff;transform:translateY(-2px);}

/* ── CONTATO ── */
/* =========================================================
   INSTAGRAM — REDE REVIVAL
   ========================================================= */

#contatos{
  background:var(--bg);
}

#contatos .instagram-section{
  display:flex;
  width:min(100%, 850px);
  margin:0 auto;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

#contatos .instagram-section .sec-title{
  max-width:720px;
}

#contatos .instagram-section .accent-bar{
  margin-right:auto;
  margin-left:auto;
}

.instagram-intro{
  max-width:650px;
  margin:0 auto 2rem;
  color:var(--text-muted);
  font-size:.95rem;
  line-height:1.8;
}

.instagram-card{
  display:grid;
  grid-template-columns:68px minmax(0, 1fr) 42px;
  gap:1.2rem;
  width:min(100%, 600px);
  padding:1.3rem;
  align-items:center;
  color:var(--text);
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow:0 15px 35px rgba(20,30,50,.1);
  text-align:left;
  text-decoration:none;
  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.instagram-card:hover{
  transform:translateY(-5px);
  border-color:rgba(244,124,32,.55);
  box-shadow:0 20px 45px rgba(244,124,32,.16);
}

.instagram-icon{
  display:grid;
  width:68px;
  height:68px;
  place-items:center;
  color:#fff;
  background:linear-gradient(
    135deg,
    #833ab4,
    #e1306c,
    #f77737,
    #fcaf45
  );
  border-radius:18px;
  box-shadow:0 8px 22px rgba(225,48,108,.25);
}

.instagram-icon svg{
  width:34px;
  height:34px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
}

.instagram-card-content{
  display:flex;
  min-width:0;
  flex-direction:column;
}

.instagram-card-content span{
  margin-bottom:.25rem;
  color:var(--orange);
  font-size:.58rem;
  font-weight:700;
  letter-spacing:1.8px;
  text-transform:uppercase;
}

.instagram-card-content strong{
  overflow:hidden;
  color:var(--text);
  font-size:1.15rem;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.instagram-card-content small{
  margin-top:.3rem;
  color:var(--text-muted);
  font-size:.72rem;
}

.instagram-arrow{
  display:grid;
  width:40px;
  height:40px;
  place-items:center;
  color:var(--orange);
  background:var(--accent-glow);
  border-radius:50%;
  font-size:1.3rem;
  transition:transform .25s ease;
}

.instagram-card:hover .instagram-arrow{
  transform:translateX(4px);
}

/* Modo escuro */

[data-theme="dark"] .instagram-card{
  background:var(--bg3);
  box-shadow:0 15px 35px rgba(0,0,0,.2);
}

/* Celular */

@media (max-width:520px){
  .instagram-card{
    grid-template-columns:54px minmax(0, 1fr);
    gap:.9rem;
    padding:1rem;
  }

  .instagram-icon{
    width:54px;
    height:54px;
    border-radius:14px;
  }

  .instagram-icon svg{
    width:28px;
    height:28px;
  }

  .instagram-card-content strong{
    font-size:.9rem;
  }

  .instagram-arrow{
    display:none;
  }
}

/* ── FOOTER ── */
footer{background:var(--bg2);border-top:1px solid var(--border);padding:2.5rem 5vw;}
.footer-inner{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1.5rem;}
.footer-logo-wrap{display:flex;align-items:center;gap:.65rem;}
.footer-brand{font-size:.85rem;font-weight:900;letter-spacing:2px;color:var(--orange);}
.footer-links{display:flex;gap:2rem;flex-wrap:wrap;}
.footer-links a{color:var(--text-muted);text-decoration:none;font-size:.75rem;letter-spacing:.5px;transition:color .2s;}
.footer-links a:hover{color:var(--orange);}
.footer-copy{color:var(--text-muted);font-size:.72rem;}

@keyframes fadeUp{
  from{opacity:0;transform:translateY(22px);}
  to{opacity:1;transform:translateY(0);}
}

/* ── RESPONSIVO ── */
@media (max-width:1200px){
  nav ul{
    gap:1.2rem;
  }

  nav ul a{
    font-size:.68rem;
    letter-spacing:1.4px;
  }

  .hero-content{
    transform:translateY(-48px);
  }

  .hero-logo{
    width:min(460px,86vw);
    margin:0 auto -4.5rem;
  }

  .benef-header{
    grid-template-columns:1fr;
    gap:2rem;
    align-items:start;
  }
}

@media (max-width:992px){
  .qs-wrap,
  .cont-wrap{
    grid-template-columns:1fr;
    gap:2.5rem;
  }

  .prop-grid{
    grid-template-columns:repeat(2,1fr);
  }

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

  .hero-content{
    transform:translateY(-24px);
  }

  .hero-logo{
    width:min(400px,84vw);
    margin:0 auto -3.2rem;
  }

  .hero-title{
    font-size:clamp(2.3rem,7vw,4.4rem);
  }
}

@media (max-width:768px){
  nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:.75rem;
    padding:.85rem 4vw;
  }

  nav ul{
    display:none;
  }

  .nav-logo{
    gap:.55rem;
    flex:1;
    justify-content:flex-start;
  }

  .logo-img{
    height:48px;
  }

  .nav-logo-text strong{
    font-size:.88rem;
    letter-spacing:1.8px;
  }

  .nav-logo-text span{
    font-size:.45rem;
    letter-spacing:1.2px;
  }

  .nav-right{
    gap:.6rem;
  }

  .nav-cta{
    padding:.42rem .9rem;
    font-size:.62rem!important;
    letter-spacing:1px!important;
  }

  #hero{
    min-height:auto;
    padding:8rem 5vw 4rem;
  }

  .hero-content{
    transform:none;
    max-width:100%;
    padding:0 8px;
  }

  .hero-logo{
    width:min(320px,86vw);
    margin:0 auto -2rem;
  }

  .hero-badge{
    font-size:.54rem;
    letter-spacing:2px;
    padding:.32rem .8rem;
    margin:0 auto 1.4rem;
  }

  .hero-title{
    font-size:clamp(2rem,9vw,3.2rem);
    margin-bottom:1rem;
  }

  .hero-sub{
    font-size:.95rem;
    line-height:1.7;
    margin:0 auto 2rem;
  }

  .hero-btns{
    width:100%;
    flex-direction:column;
    align-items:center;
  }

  .btn-primary,
  .btn-outline{
    width:min(100%,320px);
    text-align:center;
  }

  .prop-grid,
  .benef-grid,
  .form-row{
    grid-template-columns:1fr;
  }

  #cta-band{
    flex-direction:column;
    text-align:center;
    align-items:center;
  }

  .footer-inner{
    flex-direction:column;
    text-align:center;
  }

  .footer-links{
    justify-content:center;
  }

  .scroll-down{
    display:none;
  }
}

@media (max-width:560px){
  section{
    padding:4rem 5vw;
  }

  .hero-logo{
    width:min(260px,88vw);
    margin:0 auto -1rem;
  }

  .hero-title{
    font-size:clamp(1.75rem,10vw,2.7rem);
  }

  .hero-sub{
    font-size:.9rem;
  }

  .qs-card,
  .prop-card,
  .benef-item{
    padding:1.4rem;
  }

  .qs-stats{
    gap:1.2rem;
    justify-content:center;
  }

  .cont-wrap{
    gap:2rem;
  }

  .cont-form input,
  .cont-form textarea,
  .cont-form select{
    padding:.8rem .95rem;
  }
}

@media (max-width:420px){
  nav{
    padding:.75rem 4vw;
  }

  .logo-img{
    height:40px;
  }

  .nav-logo-text strong{
    font-size:.78rem;
    letter-spacing:1.4px;
  }

  .nav-logo-text span{
    font-size:.4rem;
    letter-spacing:1px;
  }

  .theme-btn{
    width:32px;
    height:32px;
    font-size:.9rem;
  }

  .nav-cta{
    padding:.38rem .75rem;
    font-size:.56rem!important;
  }

  .hero-badge{
    font-size:.48rem;
    letter-spacing:1.4px;
    padding:.28rem .65rem;
  }

  .hero-logo{
    width:min(220px,90vw);
    margin:0 auto -.4rem;
  }

  .btn-primary,
  .btn-outline,
  .btn-white{
    width:100%;
    max-width:none;
  }

  .prop-num{
    font-size:2.8rem;
  }

  .sec-title{
    font-size:clamp(1.45rem,8vw,2.2rem);
  }
}
/* ─────────────────────────────────────────────
   AJUSTES DAS NOVAS SEÇÕES DO MOVIMENTO
───────────────────────────────────────────── */
nav{
  display:flex;
  grid-template-columns:none;
  justify-content:space-between;
  gap:1.2rem;
}

.nav-logo,
nav ul,
.nav-right{
  grid-column:auto;
  justify-self:auto;
}

.nav-logo{
  flex:0 0 auto;
}

nav ul{
  flex:1 1 auto;
  justify-content:center;
  align-items:center;
  gap:clamp(.55rem,1.15vw,1.35rem);
}

nav ul a{
  font-size:clamp(.56rem,.62vw,.68rem);
  letter-spacing:1.1px;
  line-height:1.25;
  text-align:center;
}

nav ul a.active{
  color:var(--orange);
}

#propositos{
  background:var(--bg);
  text-align:center;
}

#propositos .sec-title{
  max-width:760px;
  margin:0 auto .9rem;
}

#propositos .accent-bar{
  margin:0 auto 2.2rem;
}

#propositos .prop-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:1px;
  max-width:1200px;
  margin:3.5rem auto 0;
  overflow:hidden;
  background:var(--border);
  border-radius:10px;
}

#propositos .prop-card{
  width:100%;
  min-width:0;
  min-height:260px;
  padding:2.4rem 2rem;
}

#instituicoes,
#como-participar{
  background:var(--bg2);
}

/* =========================================================
   COMO PARTICIPAR
   ========================================================= */

#como-participar .benef-header{
  display:grid;
  grid-template-columns:minmax(0, .9fr) minmax(0, 1.1fr);
  gap:clamp(2rem, 6vw, 7rem);
  width:100%;
  max-width:1450px;
  margin:0 auto 3.5rem;
  align-items:center;
}

#como-participar .benef-header > div{
  min-width:0;
}

#como-participar .benef-header .sec-title{
  max-width:620px;
  margin-bottom:1.3rem;
}

#como-participar .benef-header .benef-sub{
  width:100%;
  max-width:720px;
  margin:0;
  justify-self:end;
  font-size:.95rem;
  line-height:1.85;
}

#como-participar .steps-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:1.2rem;
  width:100%;
  max-width:1450px;
  margin:0 auto;
}

#como-participar .step-card{
  width:100%;
  min-width:0;
  min-height:230px;
  padding:1.7rem;
}

@media (max-width:1000px){
  #como-participar .benef-header{
    grid-template-columns:1fr;
    gap:1rem;
  }

  #como-participar .benef-header .benef-sub{
    max-width:760px;
    justify-self:start;
  }

  #como-participar .steps-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:600px){
  #como-participar .benef-header{
    margin-bottom:2rem;
  }

  #como-participar .steps-grid{
    grid-template-columns:1fr;
  }

  #como-participar .step-card{
    min-height:0;
    padding:1.4rem;
  }
}

#dia-movimento,
#acoes-projetos{
  background:var(--bg);
}

.assoc-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.2rem;
}

.assoc-card{
  background:var(--bg3);
  border:1px solid var(--border);
  border-radius:10px;
  padding:2rem;
  min-height:260px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transition:transform .25s,border-color .25s,box-shadow .25s;
}

.assoc-card:hover{
  transform:translateY(-4px);
  border-color:rgba(244,124,32,.45);
  box-shadow:0 8px 28px rgba(244,124,32,.1);
}

.assoc-icon{
  width:52px;
  height:52px;
  border-radius:10px;
  background:rgba(244,124,32,.1);
  border:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.45rem;
  margin-bottom:1.2rem;
}

.assoc-card h3,
.project-card h3,
.step-card h3,
.movement-item h3{
  font-size:1rem;
  font-weight:700;
  margin-bottom:.6rem;
  color:var(--text);
}

.assoc-card p,
.project-card p,
.step-card p,
.movement-card p,
.movement-item p{
  color:var(--text-muted);
  line-height:1.8;
  font-size:.88rem;
}

.assoc-card span{
  margin-top:1.5rem;
  display:inline-flex;
  width:max-content;
  max-width:100%;
  color:var(--orange);
  font-size:.65rem;
  text-transform:uppercase;
  letter-spacing:1.8px;
  border-top:1px solid var(--border);
  padding-top:.9rem;
}

.movement-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4rem;
  align-items:center;
}

.movement-card{
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:12px;
  padding:2.8rem;
  position:relative;
  overflow:hidden;
}

.movement-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background:linear-gradient(90deg,var(--red),var(--orange),var(--orange2),var(--green),var(--blue),var(--purple));
}

.movement-card p + p{
  margin-top:1rem;
}

.movement-list{
  display:flex;
  flex-direction:column;
  gap:1rem;
}

.movement-item{
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:10px;
  padding:1.4rem;
  display:flex;
  gap:1.2rem;
  align-items:flex-start;
}

.movement-item strong{
  font-family:'Merriweather',serif;
  color:var(--orange);
  font-size:1.6rem;
  line-height:1;
  min-width:42px;
}

.project-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.2rem;
  margin-top:3.5rem;
}

.project-card{
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:10px;
  padding:1.8rem;
  transition:transform .25s,border-color .25s,box-shadow .25s;
}

.project-card:hover{
  transform:translateY(-4px);
  border-color:rgba(244,124,32,.45);
  box-shadow:0 8px 28px rgba(244,124,32,.1);
}

.project-tag{
  display:inline-flex;
  align-items:center;
  color:var(--orange);
  border:1px solid var(--border);
  border-radius:999px;
  padding:.28rem .7rem;
  font-size:.58rem;
  text-transform:uppercase;
  letter-spacing:1.5px;
  margin-bottom:1.1rem;
}

.steps-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.2rem;
}

.step-card{
  background:var(--bg3);
  border:1px solid var(--border);
  border-radius:10px;
  padding:1.8rem;
  position:relative;
  overflow:hidden;
}

.step-card::after{
  content:'';
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:3px;
  background:linear-gradient(90deg,var(--orange),transparent);
}

.step-card span{
  display:block;
  font-family:'Merriweather',serif;
  font-size:2.4rem;
  font-weight:700;
  color:var(--orange);
  opacity:.9;
  margin-bottom:1rem;
}

@media (max-width:1280px){
  nav{
    padding:.8rem 3vw;
  }

  .nav-logo-text span{
    display:none;
  }
}

@media (max-width:1120px){
  nav ul{
    display:none;
  }

  nav{
    justify-content:space-between;
  }
}

@media (max-width:992px){
  .assoc-grid,
  .project-grid,
  .steps-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .movement-wrap{
    grid-template-columns:1fr;
    gap:2rem;
  }
}

@media (max-width:768px){
  .nav-logo{
    flex:1;
  }

  .assoc-grid,
  .project-grid,
  .steps-grid{
    grid-template-columns:1fr;
  }

  .assoc-card{
    min-height:auto;
  }

  .movement-card{
    padding:1.6rem;
  }

  .movement-item{
    flex-direction:column;
  }
}

/* ── CARD NOSSA INSPIRAÇÃO ── */

.qs-card{
  position:relative;
  overflow:hidden;
  padding:2.2rem;
  background:var(--bg3);
  border:1px solid var(--border);
  border-radius:14px;
  box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.qs-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  background:linear-gradient(
    90deg,
    var(--red),
    var(--orange),
    var(--orange2),
    var(--green),
    var(--blue),
    var(--purple)
  );
}

.qs-inspiration-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:1.5rem;
}

.qs-inspiration-label{
  display:block;
  margin-bottom:.45rem;
  color:var(--orange);
  font-size:.6rem;
  font-weight:700;
  letter-spacing:2.5px;
  text-transform:uppercase;
}

.qs-inspiration-header h3{
  color:var(--text);
  font-family:'Merriweather',serif;
  font-size:clamp(1.45rem,2.5vw,2rem);
  line-height:1.2;
}

.qs-organizations{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:1rem;
  flex-wrap:wrap;
}

.qs-organization{
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:140px;
  height:72px;
  padding:.65rem 1rem;
  background:#fff;
  border:1px solid var(--border);
  border-radius:10px;
  overflow:hidden;
}

.qs-organization-logo{
  display:block;
  width:auto;
  max-width:100%;
  height:auto;
  max-height:52px;
  object-fit:contain;
}

.qs-organization-logo--movement{
  max-width:190px;
}

.qs-organization-logo--alef{
  max-width:130px;
}


.qs-inspiration-text{
  max-width:530px;
  margin-top:1.2rem;
  color:var(--text-muted);
  font-size:.86rem;
  line-height:1.75;
}

/* Sobrescreve o antigo qs-stats */
.qs-inspiration .qs-stats{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1rem;
  margin-top:1.8rem;
  padding-top:1.8rem;
  border-top:1px solid var(--border);
}

.qs-stat-item{
  position:relative;
  min-width:0;
  padding:1.25rem .8rem;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:12px;
  text-align:center;
  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.qs-stat-item:hover{
  transform:translateY(-4px);
  border-color:rgba(244,124,32,.5);
  box-shadow:0 10px 25px rgba(244,124,32,.1);
}

.qs-stat-icon{
  display:grid;
  width:52px;
  height:52px;
  margin:0 auto 1rem;
  place-items:center;
  border:1px solid rgba(244,124,32,.25);
  border-radius:50%;
  background:rgba(244,124,32,.12);
  font-size:1.4rem;
}

.qs-stat-num{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.2rem;
  min-height:44px;
  font-family:'Merriweather',serif;
  font-size:clamp(1.65rem,2.4vw,2.35rem);
  font-weight:700;
  line-height:1;
  white-space:nowrap;
  background:linear-gradient(135deg,var(--orange),var(--orange2));
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}

.qs-stat-num small{
  font-family:'Montserrat',sans-serif;
  font-size:.55em;
  font-weight:900;
}

.qs-stat-lbl{
  margin-top:.7rem;
  color:var(--text-muted);
  font-size:.68rem;
  line-height:1.55;
  letter-spacing:.4px;
}

.qs-inspiration-note{
  margin-top:1.2rem;
  color:var(--text-muted);
  font-size:.6rem;
  line-height:1.5;
  text-align:center;
  opacity:.72;
}

/* ─────────────────────────────────────
   GALERIA — AÇÕES DA REDE REVIVAL
───────────────────────────────────── */

.assoc-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:1.5rem;
}

/* Card da imagem */

.assoc-photo-card{
  position:relative;
  min-width:0;
  overflow:hidden;
  background:var(--bg3);
  border:1px solid var(--border);
  border-radius:14px;
  transition:
    transform .3s ease,
    border-color .3s ease,
    box-shadow .3s ease;
}

/* Bordas coloridas */

.assoc-photo-card::before{
  content:'';
  position:absolute;
  z-index:3;
  top:0;
  right:0;
  left:0;
  height:4px;
}

.assoc-photo-card:nth-child(1)::before{
  background:var(--red);
}

.assoc-photo-card:nth-child(2)::before{
  background:var(--orange);
}

.assoc-photo-card:nth-child(3)::before{
  background:var(--green);
}

.assoc-photo-card:nth-child(4)::before{
  background:var(--blue);
}

.assoc-photo-card:nth-child(5)::before{
  background:var(--purple);
}

.assoc-photo-card:nth-child(6)::before{
  background:var(--orange2);
}

.assoc-photo-card:hover{
  transform:translateY(-6px);
  border-color:rgba(244,124,32,.45);
  box-shadow:0 16px 35px rgba(20,30,50,.12);
}

/* Área da fotografia */

.assoc-photo-wrap{
  position:relative;
  height:260px;
  overflow:hidden;
  background:var(--surface);
}

.assoc-photo{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}

.assoc-photo-card:hover .assoc-photo{
  transform:scale(1.05);
}

/* Etiqueta sobre a imagem */

.assoc-photo-tag{
  position:absolute;
  right:1rem;
  bottom:1rem;
  padding:.4rem .8rem;
  color:#fff;
  background:rgba(15,17,23,.78);
  border:1px solid rgba(255,255,255,.2);
  border-radius:999px;
  backdrop-filter:blur(8px);
  font-size:.58rem;
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
}

/* Título e descrição */

.assoc-photo-content{
  padding:1.5rem;
}

.assoc-photo-content h3{
  margin-bottom:.65rem;
  color:var(--text);
  font-family:'Merriweather',serif;
  font-size:1.15rem;
  line-height:1.35;
}

.assoc-photo-content p{
  color:var(--text-muted);
  font-size:.84rem;
  line-height:1.75;
}

/* Modo claro */

[data-theme="light"] .assoc-photo-card{
  background:#fff;
  box-shadow:0 8px 24px rgba(20,30,50,.05);
}

/* Modo escuro */

[data-theme="dark"] .assoc-photo-card{
  background:var(--bg3);
  box-shadow:0 8px 24px rgba(0,0,0,.16);
}

#instituicoes .assoc-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:1.2rem;
  width:100%;
  max-width:1600px;
  margin:0 auto;
}

#instituicoes .assoc-photo-wrap{
  position:relative;
  width:100%;
  height:auto;
  aspect-ratio:4 / 3;
  overflow:hidden;
  background:var(--surface);
}

#instituicoes .assoc-photo{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 25%;
}

#instituicoes .assoc-photo-content{
  padding:1.2rem;
}

#instituicoes .assoc-photo-content h3{
  margin-bottom:.55rem;
  font-size:1rem;
  line-height:1.35;
}

#instituicoes .assoc-photo-content p{
  font-size:.78rem;
  line-height:1.65;
}
/* Texto abaixo do título somente em Ações da Rede Revival */

#instituicoes .benef-header{
  display:grid;
  grid-template-columns:1fr;
  gap:0;
  align-items:start;
  margin-bottom:3.5rem;
}

#instituicoes .benef-header > div{
  width:100%;
}

#instituicoes .benef-header .sec-title{
  max-width:950px;
}

#instituicoes .benef-header .benef-sub{
  width:100%;
  max-width:850px;
  margin:0;
  color:var(--text-muted);
  font-size:.95rem;
  line-height:1.85;
}

/* Notebook: três fotos */

@media (max-width:1300px){
  #instituicoes .assoc-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}

/* Tablet: duas fotos */

@media (max-width:900px){
  #instituicoes .assoc-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

/* Celular: uma foto */

@media (max-width:580px){
  #instituicoes .assoc-grid{
    grid-template-columns:1fr;
  }

  #instituicoes .assoc-photo-wrap{
    aspect-ratio:16 / 10;
  }
}

/* Tablet */

@media (max-width:850px){
  .assoc-photo-wrap{
    height:220px;
  }
}

/* Celular */

@media (max-width:650px){
  .assoc-grid{
    grid-template-columns:1fr;
  }

  .assoc-photo-wrap{
    height:230px;
  }
}

/* Monitor ultrawide */

@media (min-width:1800px){
  #instituicoes .assoc-grid{
    max-width:1500px;
  }

  #instituicoes .assoc-photo-card:only-child{
    max-width:1300px;
  }
}

/* Notebook e tablet */

@media (max-width:900px){
  #instituicoes .assoc-grid{
    grid-template-columns:1fr;
    max-width:760px;
  }

  #instituicoes .assoc-photo-wrap,
  #instituicoes .assoc-photo-card:only-child .assoc-photo-wrap{
    aspect-ratio:16 / 9;
  }
}

/* Celular */

@media (max-width:560px){
  #instituicoes .assoc-photo-wrap,
  #instituicoes .assoc-photo-card:only-child .assoc-photo-wrap{
    aspect-ratio:4 / 3;
  }

  #instituicoes .assoc-photo{
    object-position:center top;
  }

  #instituicoes .assoc-photo-content{
    padding:1.2rem;
  }
}

/* ─────────────────────────────────────
   NOVE TÓPICOS DO MOVEMENT DAY
───────────────────────────────────── */

/* ─────────────────────────────────────
   TÓPICOS COMPACTOS
───────────────────────────────────── */

#dia-movimento .movement-topics{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:.8rem;
  width:100%;
  max-width:1400px;
  margin:3rem auto 0;
}

/* Título ocupa as duas colunas */

#dia-movimento .movement-topics-title{
  grid-column:1 / -1;
  max-width:850px;
  margin:0 0 1.2rem;
}

/* Cards compactos */

#dia-movimento .movement-topic{
  display:grid;
  grid-template-columns:48px minmax(0, 1fr);
  gap:.9rem;
  min-width:0;
  min-height:0;
  padding:1rem 1.3rem;
  align-items:center;
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:10px;
  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

#dia-movimento .movement-topic:hover{
  transform:translateY(-2px);
  border-color:rgba(244,124,32,.48);
  box-shadow:0 8px 20px rgba(244,124,32,.08);
}

#dia-movimento .movement-topic-num{
  color:var(--orange);
  font-family:'Merriweather',serif;
  font-size:1.5rem;
  font-weight:700;
  line-height:1;
}

#dia-movimento .movement-topic-content{
  min-width:0;
}

#dia-movimento .movement-topic-content h3{
  margin:0;
  color:var(--text);
  font-family:'Montserrat',sans-serif;
  font-size:.95rem;
  font-weight:700;
  line-height:1.35;
}

/* Tópico 09 ocupa a linha inteira */

#dia-movimento .movement-topic--last{
  grid-column:1 / -1;
  min-height:0;
  padding:1.2rem 1.5rem;
  background:var(--bg3);
  border-color:rgba(244,124,32,.35);
}

#dia-movimento .movement-topic--last h3{
  font-size:1.05rem;
}

/* Celular */

@media (max-width:700px){
  #dia-movimento .movement-topics{
    grid-template-columns:1fr;
  }

  #dia-movimento .movement-topics-title,
  #dia-movimento .movement-topic--last{
    grid-column:auto;
  }
}

#dia-movimento .movement-topic-content p{
  margin:0;
  color:var(--text-muted);
  font-size:.82rem;
  line-height:1.7;
}

/* Tópico 09 grande */

#dia-movimento .movement-topic--featured{
  grid-column:1 / -1;
  grid-template-columns:70px minmax(0, 1fr);
  min-height:190px;
  padding:2rem;
  align-items:center;
  overflow:hidden;
  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(244,124,32,.14),
      transparent 35%
    ),
    var(--bg3);
  border-color:rgba(244,124,32,.35);
}

#dia-movimento .movement-topic--featured .movement-topic-num{
  font-size:2.4rem;
}

#dia-movimento .movement-topic--featured h3{
  max-width:850px;
  margin-bottom:.7rem;
  font-family:'Merriweather',serif;
  font-size:clamp(1.35rem, 2.5vw, 2rem);
}

#dia-movimento .movement-topic--featured p{
  max-width:900px;
}

#dia-movimento .movement-topic-label{
  display:block;
  margin-bottom:.45rem;
  color:var(--orange);
  font-size:.58rem;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
}

/* Tablet */

@media (max-width:850px){
  #dia-movimento .movement-topics{
    grid-template-columns:1fr;
  }

  #dia-movimento .movement-topic--featured{
    grid-column:auto;
  }
}

/* Celular */

@media (max-width:520px){
  #dia-movimento .movement-topic,
  #dia-movimento .movement-topic--featured{
    grid-template-columns:1fr;
    min-height:auto;
    padding:1.3rem;
  }

  #dia-movimento .movement-topic-num{
    font-size:1.5rem;
  }

  #dia-movimento .movement-topic--featured .movement-topic-num{
    font-size:1.8rem;
  }
}

/* ─────────────────────────────────────
   ARTE E INSCRIÇÃO DO EVENTO
───────────────────────────────────── */

#dia-movimento .event-banner{
  display:flex;
  width:100%;
  max-width:1400px;
  margin:3rem auto 0;
  flex-direction:column;
  align-items:center;
  gap:1.4rem;
}

#dia-movimento .event-banner-image{
  display:block;
  width:100%;
  height:auto;
  max-height:750px;
  object-fit:contain;
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow:0 16px 40px rgba(20,30,50,.12);
}

#dia-movimento .event-banner-button{
  min-width:280px;
  text-align:center;
}

/* Modo escuro */

[data-theme="dark"] #dia-movimento .event-banner-image{
  box-shadow:0 16px 40px rgba(0,0,0,.25);
}

/* Celular */

@media (max-width:560px){
  #dia-movimento .event-banner{
    margin-top:2rem;
    gap:1rem;
  }

  #dia-movimento .event-banner-image{
    border-radius:10px;
  }

  #dia-movimento .event-banner-button{
    width:100%;
    min-width:0;
  }
}

/* ─────────────────────────────────────
   CARD DE DIVULGAÇÃO DO EVENTO
───────────────────────────────────── */

#dia-movimento .event-banner{
  position:relative;
  display:flex;
  width:100%;
  max-width:1168px;
  margin:3rem auto 0;
  padding:0 0 1.2rem;
  flex-direction:column;
  align-items:center;
  gap:0;
  overflow:hidden;
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:0 18px 45px rgba(20,30,50,.13);
}

/* Borda colorida superior */

#dia-movimento .event-banner::before{
  content:'';
  position:absolute;
  z-index:2;
  top:0;
  right:0;
  left:0;
  height:4px;
  background:linear-gradient(
    90deg,
    var(--red),
    var(--orange),
    var(--orange2),
    var(--green),
    var(--blue),
    var(--purple)
  );
}

/* Imagem agora faz parte do card */

#dia-movimento .event-banner-image{
  display:block;
  width:100%;
  height:auto;
  max-height:none;
  object-fit:contain;
  background:var(--bg2);
  border:0;
  border-radius:0;
  box-shadow:none;
}

/* Área visual do botão */

#dia-movimento .event-banner-button{
  width:calc(100% - 2.4rem);
  max-width:420px;
  margin-top:1.2rem;
  padding:1rem 2rem;
  border-radius:8px;
  text-align:center;
  box-shadow:0 8px 24px rgba(244,124,32,.3);
}

/* Efeito ao passar o mouse */

#dia-movimento .event-banner:hover{
  border-color:rgba(244,124,32,.42);
  box-shadow:0 22px 55px rgba(20,30,50,.17);
}

#dia-movimento .event-banner-button:hover{
  transform:translateY(-2px);
  box-shadow:0 11px 30px rgba(244,124,32,.42);
}

/* Modo escuro */

[data-theme="dark"] #dia-movimento .event-banner{
  background:var(--bg3);
  box-shadow:0 18px 45px rgba(0,0,0,.25);
}

[data-theme="dark"] #dia-movimento .event-banner-image{
  background:var(--bg3);
}

/* Celular */

@media (max-width:680px){
  #dia-movimento .event-banner{
    margin-top:2rem;
    padding-bottom:1rem;
    border-radius:12px;
  }

  #dia-movimento .event-banner-button{
    width:calc(100% - 2rem);
    margin-top:1rem;
  }
}

/* =========================================================
   QR CODES HORIZONTAIS
   ========================================================= */

#cta-band{
  padding:clamp(2rem, 5vw, 4rem) var(--page-gutter);
  background:linear-gradient(
    135deg,
    var(--navy) 0%,
    #0f1a35 50%,
    #1a0d2e 100%
  );
}

.qr-actions{
  display:flex;
  width:min(100%, 1350px);
  margin:0 auto;
  flex-direction:column;
  gap:1rem;
}

.qr-action-card{
  display:grid;
  grid-template-columns:150px minmax(0, 1fr) minmax(190px, 240px);
  gap:clamp(1.2rem, 3vw, 2.5rem);
  width:100%;
  padding:1.3rem;
  align-items:center;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.13);
  border-radius:16px;
  box-shadow:0 14px 35px rgba(0,0,0,.18);
  transition:
    transform .25s ease,
    border-color .25s ease,
    background .25s ease;
}

.qr-action-card:hover{
  transform:translateY(-3px);
  background:rgba(255,255,255,.085);
  border-color:rgba(244,124,32,.5);
}

/* QR Code */

.qr-action-code{
  position:relative;
  z-index:2;
  display:flex;
  width:170px;
  height:170px;
  min-width:170px;
  padding:12px;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(255,255,255,.35);
  border-radius:14px;
  box-shadow:0 8px 22px rgba(0,0,0,.15);
  box-sizing:border-box;
  cursor:pointer;
}

.qr-action-code img{
  display:block;
  width:100%;
  height:100%;
  max-width:100%;
  max-height:100%;
  margin:0;
  padding:0;
  object-fit:contain;
  object-position:center;
  background:#fff;

  /* Remove efeitos antigos que podem deformar o QR Code */
  transform:none !important;
  filter:none !important;
  mix-blend-mode:normal !important;
}

.qr-action-button{
  position:relative;
  z-index:10;
  pointer-events:auto;
  cursor:pointer;
}

/* Texto */

.qr-action-content{
  min-width:0;
}

.qr-action-content span{
  display:block;
  margin-bottom:.45rem;
  color:var(--orange2);
  font-size:.6rem;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
}

.qr-action-content h2{
  margin:0 0 .6rem;
  color:#fff;
  font-family:'Merriweather',serif;
  font-size:clamp(1.25rem, 2.2vw, 2rem);
  line-height:1.25;
}

.qr-action-content p{
  margin:0;
  color:rgba(255,255,255,.65);
  font-size:.85rem;
  line-height:1.7;
}

/* Botão */

.qr-action-button{
  display:flex;
  min-height:52px;
  padding:.85rem 1.2rem;
  align-items:center;
  justify-content:center;
  color:#fff;
  background:linear-gradient(
    135deg,
    var(--orange),
    var(--orange2)
  );
  border-radius:8px;
  box-shadow:0 8px 22px rgba(244,124,32,.3);
  font-size:.7rem;
  font-weight:700;
  letter-spacing:1.4px;
  text-align:center;
  text-decoration:none;
  text-transform:uppercase;
  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.qr-action-button:hover{
  transform:translateY(-2px);
  box-shadow:0 11px 28px rgba(244,124,32,.45);
}

@media (max-width:850px){
  .qr-action-card{
    grid-template-columns:120px minmax(0, 1fr);
  }

  .qr-action-code{
    width:130px;
    height:130px;
    min-width:130px;
    padding:9px;
  }

  .qr-action-button{
    grid-column:2;
    width:100%;
  }
}

@media (max-width:560px){
  .qr-action-card{
    grid-template-columns:90px minmax(0, 1fr);
    gap:1rem;
    padding:1rem;
  }

  .qr-action-code{
  position:relative;
  z-index:2;
  display:flex;
  width:170px;
  height:170px;
  min-width:170px;
  padding:12px;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(255,255,255,.35);
  border-radius:14px;
  box-shadow:0 8px 22px rgba(0,0,0,.15);
  box-sizing:border-box;
  cursor:pointer;
}

  .qr-action-content h2{
    font-size:1rem;
  }

  .qr-action-content p{
    display:none;
  }

  .qr-action-button{
    grid-column:1 / -1;
  }
}


/* =========================================================
   DIA DO MOVIMENTO
   LAYOUT COMPLETO
   ========================================================= */


/* =========================================================
   ESTRUTURA PRINCIPAL
   ========================================================= */

#dia-movimento .movement-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  width: 100%;

  gap: clamp(2rem, 3vw, 3rem);

  align-items: stretch;
}


/* =========================================================
   COLUNA ESQUERDA
   ========================================================= */

#dia-movimento .movement-left-column {
  display: flex;

  width: 100%;
  min-width: 0;

  flex-direction: column;

  gap: 1.3rem;
}


/* =========================================================
   CARD PRINCIPAL DE TEXTO
   ========================================================= */

#dia-movimento .movement-card {
  position: relative;

  display: block;

  width: 100%;
  height: auto !important;

  margin: 0;
  padding: clamp(2rem, 3vw, 3rem);

  background: var(--bg2);

  border: 1px solid var(--border);
  border-radius: 14px;

  box-sizing: border-box;

  overflow: hidden;

  box-shadow:
    0 12px 30px rgba(20, 30, 50, 0.06);
}


/* LINHA COLORIDA SUPERIOR */

#dia-movimento .movement-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;
  right: 0;

  height: 3px;

  background: linear-gradient(
    90deg,
    var(--red),
    var(--orange),
    var(--green),
    var(--blue),
    var(--purple)
  );
}


/* =========================================================
   LABEL SUPERIOR
   ========================================================= */

#dia-movimento .movement-card .sec-label {
  display: block;

  margin-bottom: 0.8rem;

  color: var(--orange);

  font-family: 'Montserrat', sans-serif;

  font-size: 0.65rem;
  font-weight: 600;

  letter-spacing: 0.3em;

  text-transform: uppercase;
}


/* =========================================================
   TÍTULO PRINCIPAL
   ========================================================= */

#dia-movimento .movement-card .sec-title {
  max-width: 620px;

  margin: 0;

  color: var(--text);

  font-family: 'Playfair Display', serif;

  font-size: clamp(
    2.2rem,
    3.5vw,
    3.5rem
  );

  font-weight: 700;

  line-height: 1.08;

  letter-spacing: -0.025em;
}


/* PARTE LARANJA */

#dia-movimento .movement-card .sec-title em {
  display: inline;

  color: var(--orange);

  font-family: 'Playfair Display', serif;

  font-style: italic;
  font-weight: 700;
}


/* =========================================================
   BARRA LARANJA
   ========================================================= */

#dia-movimento .movement-card .accent-bar {
  width: 42px;
  height: 2px;

  margin: 1.5rem 0 1.8rem;

  background: var(--orange);
}


/* =========================================================
   PARÁGRAFOS
   ========================================================= */

#dia-movimento .movement-card p {
  margin: 0 0 1rem;

  color: var(--text-muted);

  font-family: 'Montserrat', sans-serif;

  font-size: 0.88rem;
  font-weight: 400;

  line-height: 1.8;
}


#dia-movimento .movement-card p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   CARD DA IMAGEM
   ========================================================= */

#dia-movimento .movement-image-card {
  position: relative;

  width: 100%;
  min-width: 0;
  min-height: 280px;

  flex: 1;

  overflow: hidden;

  background: var(--bg2);

  border: 1px solid var(--border);
  border-radius: 14px;

  box-sizing: border-box;

  box-shadow:
    0 12px 30px rgba(20, 30, 50, 0.08);
}


/* LINHA SUPERIOR */

#dia-movimento .movement-image-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;
  right: 0;

  height: 3px;

  z-index: 3;

  background: linear-gradient(
    90deg,
    var(--red),
    var(--orange),
    var(--green),
    var(--blue),
    var(--purple)
  );
}


/* IMAGEM */

#dia-movimento .movement-image-card img {
  display: block;

  width: 100%;
  height: 100%;

  min-height: 280px;

  object-fit: cover;
  object-position: center;

  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}


/* HOVER */

#dia-movimento .movement-image-card:hover img {
  transform: scale(1.03);
}


/* DEGRADÊ */

#dia-movimento .movement-image-card::after {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 1;

  background: linear-gradient(
    to bottom,
    rgba(10, 15, 30, 0) 25%,
    rgba(10, 15, 30, 0.12) 50%,
    rgba(10, 15, 30, 0.9) 100%
  );

  pointer-events: none;
}


/* =========================================================
   TEXTO SOBRE A IMAGEM
   ========================================================= */

#dia-movimento .movement-image-overlay {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  z-index: 2;

  padding: clamp(
    1.2rem,
    2vw,
    1.8rem
  );
}


/* TEXTO PEQUENO */

#dia-movimento .movement-image-overlay span {
  display: block;

  margin-bottom: 0.45rem;

  color: #ff7a1a;

  font-family: 'Montserrat', sans-serif;

  font-size: 0.63rem;
  font-weight: 800;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}


/* TÍTULO */

#dia-movimento .movement-image-overlay h3 {
  max-width: 450px;

  margin: 0;

  color: #fff;

  font-family: 'Montserrat', sans-serif;

  font-size: clamp(
    1.3rem,
    2vw,
    1.75rem
  );

  font-weight: 700;

  line-height: 1.2;
}


/* =========================================================
   COLUNA DIREITA
   ========================================================= */

#dia-movimento .movement-right-column {
  display: flex;

  width: 100%;
  min-width: 0;

  align-items: stretch;
}


/* =========================================================
   CARD DAS REDES
   ========================================================= */

#dia-movimento .movement-social {
  position: relative;

  display: flex;

  width: 100%;
  height: 100%;

  margin: 0;

  padding: clamp(
    1.8rem,
    2.5vw,
    2.4rem
  );

  flex-direction: column;

  background: var(--bg2);

  border: 1px solid var(--border);
  border-radius: 14px;

  box-sizing: border-box;

  overflow: hidden;

  box-shadow:
    0 14px 35px rgba(20, 30, 50, 0.07);
}


/* LINHA COLORIDA */

#dia-movimento .movement-social::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;
  right: 0;

  height: 3px;

  background: linear-gradient(
    90deg,
    var(--red),
    var(--orange),
    var(--green),
    var(--blue),
    var(--purple)
  );
}


/* =========================================================
   CABEÇALHO DAS REDES
   ========================================================= */

#dia-movimento .movement-social-header {
  width: 100%;

  margin: 0 0 1.6rem;
  padding: 0 0 1.4rem;

  border-bottom: 1px solid var(--border);
}


/* LABEL */

#dia-movimento .movement-social-header .sec-label {
  display: inline-flex;

  margin: 0 0 0.65rem;

  align-items: center;

  color: var(--orange);

  font-family: 'Montserrat', sans-serif;

  font-size: 0.65rem;
  font-weight: 800;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}


/* BOLINHA */

#dia-movimento
.movement-social-header
.sec-label::before {
  content: "";

  width: 6px;
  height: 6px;

  margin-right: 0.5rem;

  background: var(--orange);

  border-radius: 50%;
}


/* TÍTULO */

#dia-movimento .movement-social-header h3 {
  margin: 0 0 0.65rem;

  color: var(--text);

  font-family: 'Montserrat', sans-serif;

  font-size: clamp(
    1.6rem,
    2.2vw,
    2.05rem
  );

  font-weight: 700;

  line-height: 1.15;
}


/* PARTE LARANJA */

#dia-movimento .movement-social-header h3 em {
  color: var(--orange);

  font-family: inherit;

  font-style: normal;
  font-weight: 700;
}


/* DESCRIÇÃO */

#dia-movimento .movement-social-header p {
  max-width: 650px;

  margin: 0;

  color: var(--text-muted);

  font-family: 'Montserrat', sans-serif;

  font-size: 0.85rem;
  font-weight: 400;

  line-height: 1.65;
}


/* =========================================================
   GRID POST + REELS
   ========================================================= */

#dia-movimento .movement-social-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  width: 100%;

  gap: 1.2rem;

  align-items: stretch;

  flex: 1;
}


/* =========================================================
   ITEM DO INSTAGRAM
   ========================================================= */

#dia-movimento .movement-instagram-item {
  display: flex;

  width: 100%;
  min-width: 0;

  flex-direction: column;
}


/* =========================================================
   SELO POST / REELS
   ========================================================= */

#dia-movimento .movement-social-label {
  display: inline-flex;

  width: max-content;
  min-width: 80px;
  height: 32px;

  margin: 0 0 0.7rem;

  padding: 0 0.8rem;

  align-items: center;
  justify-content: center;

  gap: 0.4rem;

  color: #fff;

  background: linear-gradient(
    135deg,
    #ff831d,
    #ef5c23
  );

  border-radius: 999px;

  box-sizing: border-box;

  box-shadow:
    0 6px 15px rgba(244, 105, 31, 0.22);

  font-family: 'Montserrat', sans-serif;

  font-size: 0.63rem;
  font-weight: 800;

  letter-spacing: 0.06em;

  text-transform: uppercase;
}


/* BOLINHA */

#dia-movimento .movement-social-label::before {
  content: "";

  width: 6px;
  height: 6px;

  flex-shrink: 0;

  background: #fff;

  border-radius: 50%;
}


/* REELS */

#dia-movimento
.movement-instagram-item:nth-child(2)
.movement-social-label {
  background: linear-gradient(
    135deg,
    #ff831d,
    #f35f20
  );

  box-shadow:
    0 6px 15px rgba(91, 92, 225, 0.22);
}


/* =========================================================
   BOTÕES DO INSTAGRAM
   ========================================================= */

#dia-movimento .movement-instagram-button {
  display: flex;

  width: 100%;
  min-height: 44px;

  margin: 0 0 0.75rem;

  padding: 0.7rem 0.85rem;

  align-items: center;
  justify-content: space-between;

  gap: 0.7rem;

  color: #fff;

  background: linear-gradient(
    135deg,
    #ff831d,
    #f35f20
  );

  border-radius: 9px;

  box-sizing: border-box;

  box-shadow:
    0 7px 18px rgba(244, 105, 31, 0.18);

  font-family: 'Montserrat', sans-serif;

  font-size: 0.69rem;
  font-weight: 700;

  text-decoration: none;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}


/* REELS */

#dia-movimento .movement-instagram-button--reels {
  background: linear-gradient(
    135deg,
    #ff831d,
    #f35f20
  );

  box-shadow:
    0 7px 18px rgba(91, 92, 225, 0.18);
}


/* ÍCONE */

#dia-movimento .movement-instagram-button-icon {
  display: flex;

  width: 25px;
  height: 25px;

  flex-shrink: 0;

  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.16);

  border-radius: 50%;

  font-size: 0.7rem;

  transition: transform 0.25s ease;
}


/* HOVER */

#dia-movimento .movement-instagram-button:hover {
  color: #fff;

  transform: translateY(-2px);

  filter: brightness(1.05);

  box-shadow:
    0 10px 24px rgba(244, 105, 31, 0.28);
}


#dia-movimento
.movement-instagram-button--reels:hover {
  box-shadow:
    0 10px 24px rgba(91, 92, 225, 0.28);
}


#dia-movimento
.movement-instagram-button:hover
.movement-instagram-button-icon {
  transform: translateX(2px);
}


/* =========================================================
   CARD DO EMBED
   ========================================================= */

#dia-movimento .movement-instagram-card {
  position: relative;

  display: flex;

  width: 100%;
  min-width: 0;

  flex: 1;

  padding: 0.45rem;

  align-items: flex-start;
  justify-content: center;

  background: var(--bg);

  border: 1px solid var(--border);
  border-radius: 10px;

  box-sizing: border-box;

  overflow: hidden;

  box-shadow:
    0 9px 25px rgba(20, 30, 50, 0.06);
}


/* LINHA */

#dia-movimento .movement-instagram-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;
  right: 0;

  height: 3px;

  z-index: 2;

  background: linear-gradient(
    90deg,
    var(--orange),
    var(--purple),
    var(--blue)
  );
}


/* =========================================================
   EMBED
   ========================================================= */

#dia-movimento .movement-instagram-embed {
  display: flex;

  width: 100%;
  min-width: 0;

  align-items: flex-start;
  justify-content: center;
}


/* INSTAGRAM */

#dia-movimento
.movement-instagram-embed
.instagram-media {
  width: 100% !important;

  min-width: 0 !important;
  max-width: 540px !important;

  margin: 0 auto !important;
}


/* IFRAME */

#dia-movimento
.movement-instagram-embed
iframe {
  display: block !important;

  width: 100% !important;
  max-width: 540px !important;

  margin: 0 auto !important;

  border: 0 !important;
}


/* =========================================================
   TEMAS DE ABORDAGEM
   ========================================================= */

#dia-movimento .movement-topics {
  width: 100%;

  margin-top: 3.5rem;
}


#dia-movimento .movement-topics-title {
  margin-bottom: 2rem;

  font-family: 'Playfair Display', serif;
}


#dia-movimento .movement-topics-title em {
  color: var(--orange);

  font-family: 'Playfair Display', serif;

  font-style: italic;
}


/* ITEM */

#dia-movimento .movement-topic {
  display: flex;

  width: 100%;

  gap: 1.2rem;

  padding: 1.2rem 0;

  align-items: center;

  border-bottom: 1px solid var(--border);
}


/* NÚMERO */

#dia-movimento .movement-topic-num {
  min-width: 42px;

  color: var(--orange);

  font-family: 'Montserrat', sans-serif;

  font-size: 0.75rem;
  font-weight: 800;

  letter-spacing: 0.08em;
}


/* TÍTULO */

#dia-movimento .movement-topic-content h3 {
  margin: 0;

  color: var(--text);

  font-family: 'Montserrat', sans-serif;

  font-size: 1rem;
  font-weight: 600;
}


/* =========================================================
   MODO ESCURO
   ========================================================= */

[data-theme="dark"]
#dia-movimento .movement-card,
[data-theme="dark"]
#dia-movimento .movement-social,
[data-theme="dark"]
#dia-movimento .movement-image-card {
  background: var(--bg2);
}


[data-theme="dark"]
#dia-movimento .movement-instagram-card {
  background: var(--bg3);
}


/* =========================================================
   NOTEBOOK / TABLET
   ========================================================= */

@media (max-width: 1100px) {

  #dia-movimento .movement-wrap {
    grid-template-columns: 1fr;

    gap: 1.7rem;
  }


  #dia-movimento .movement-social {
    height: auto;
  }


  #dia-movimento .movement-image-card {
    flex: none;

    min-height: 350px;
  }


  #dia-movimento .movement-image-card img {
    height: 350px;
    min-height: 0;
  }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 800px) {

  #dia-movimento .movement-card {
    padding: 2rem;
  }


  #dia-movimento .movement-social {
    padding: 1.5rem;
  }


  #dia-movimento .movement-social-grid {
    gap: 1rem;
  }


  #dia-movimento .movement-image-card {
    min-height: 300px;
  }


  #dia-movimento .movement-image-card img {
    height: 300px;
  }

}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 700px) {

  #dia-movimento .movement-wrap {
    gap: 1.5rem;
  }


  #dia-movimento .movement-left-column {
    gap: 1.2rem;
  }


  #dia-movimento .movement-card {
    padding: 1.5rem;
  }


  #dia-movimento .movement-card .sec-title {
    font-size: clamp(
      2rem,
      9vw,
      2.7rem
    );
  }


  #dia-movimento .movement-card p {
    font-size: 0.82rem;
  }


  #dia-movimento .movement-social {
    padding: 1.25rem;
  }


  #dia-movimento .movement-social-header {
    margin-bottom: 1.4rem;
    padding-bottom: 1.2rem;
  }


  #dia-movimento .movement-social-header h3 {
    font-size: 1.45rem;
  }


  /* POST E REELS UM ABAIXO DO OUTRO */

  #dia-movimento .movement-social-grid {
    grid-template-columns: 1fr;

    gap: 1.8rem;
  }


  #dia-movimento .movement-image-card {
    min-height: 260px;
  }


  #dia-movimento .movement-image-card img {
    height: 260px;
  }


  #dia-movimento .movement-topics {
    margin-top: 2.5rem;
  }

}


/* =========================================================
   CELULAR PEQUENO
   ========================================================= */

@media (max-width: 480px) {

  #dia-movimento .movement-card {
    padding: 1.25rem;
  }


  #dia-movimento .movement-card .sec-label {
    font-size: 0.56rem;

    letter-spacing: 0.22em;
  }


  #dia-movimento .movement-card .sec-title {
    font-size: clamp(
      1.8rem,
      9vw,
      2.35rem
    );
  }


  #dia-movimento .movement-social {
    padding: 1rem;
  }


  #dia-movimento .movement-social-header h3 {
    font-size: 1.3rem;
  }


  #dia-movimento .movement-social-header p {
    font-size: 0.79rem;
  }


  #dia-movimento .movement-instagram-button {
    font-size: 0.65rem;

    padding: 0.65rem 0.7rem;
  }


  #dia-movimento .movement-image-card {
    min-height: 230px;
  }


  #dia-movimento .movement-image-card img {
    height: 230px;
  }


  #dia-movimento .movement-image-overlay h3 {
    font-size: 1.15rem;
  }

}