/* ============================================================
   PAI DO GAREL — Hero cinematográfica (tema claro, verde PSB)
   Paleta puxada do logo:
   --verde-noite  #0B3D1F  (texto de impacto)
   --verde-mata   #1E7A34  (gradiente do símbolo)
   --verde-neon   #37C956  (acento / "CRIA")
   --amarelo      #F2C230  (filete da bandeira)
   --creme        #F4F6F1  (fundo do vídeo)
   ============================================================ */

:root{
  --verde-noite: #0B3D1F;
  --verde-mata:  #1E7A34;
  --verde-neon:  #37C956;
  --amarelo:     #F2C230;
  --creme:       #F4F6F1;
  --tinta:       #10160f;

  --pad-x: clamp(1.25rem, 5vw, 4.5rem);
}

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

html{ scroll-behavior:auto; }

body{
  font-family:'Inter', system-ui, sans-serif;
  background: var(--creme);
  color: var(--tinta);
  overflow-x: hidden;
}

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

/* ===== NAVBAR ===== */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(0.75rem, 2vh, 1.25rem) var(--pad-x);
  /* vidro claro: o logo é verde-escuro, precisa de base clara pra respirar */
  background: rgba(244, 246, 241, 0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 -1px 0 rgba(11, 61, 31, 0.08);
}

/* o logo com o 4001 é bem mais largo que o antigo: entra mais contido */
.nav__logo img{
  height: clamp(1.7rem, 4vw, 2.2rem);
  width: auto;
}

.nav__cta{
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: clamp(0.8rem, 1.1vw, 0.95rem);
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--creme);
  background: var(--verde-noite);
  border-radius: 999px;
  padding: 0.72em 1.5em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 10px 28px rgba(11,61,31,0.28);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav__cta:hover{
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 16px 38px rgba(11,61,31,0.38);
}
.nav__cta-dot{
  width: 0.5em; height: 0.5em;
  border-radius: 50%;
  background: var(--verde-neon);
  box-shadow: 0 0 12px var(--verde-neon);
}

/* ===== HERO ===== */
.hero{
  position: relative;
  height: 100svh;
  min-height: 34rem;
  overflow: hidden;
  /* em retrato a peça vira card e este é o papel atrás dela */
  background: #FFFFFF;
}

.hero__media{
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Still nítida da peça: sustenta o LCP e cobre quem não roda vídeo */
.hero__still,
.hero__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__still{ z-index: 0; }

.hero__video{
  z-index: 1;
  transform-origin: center;
}
/* JS marca quando o vídeo não pode assumir (erro / autoplay barrado) */
.hero.is-still .hero__video{ opacity: 0; }

/* Leitura: sombra verde na base pro badge e o indicador respirarem */
.hero__wash{
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to top,
      rgba(6, 38, 20, 0.78) 0%,
      rgba(6, 38, 20, 0.42) 14%,
      rgba(6, 38, 20, 0.08) 28%,
      rgba(6, 38, 20, 0)    44%),
    linear-gradient(to bottom,
      rgba(6, 38, 20, 0.35) 0%,
      rgba(6, 38, 20, 0)   14%);
}

/* Grain 35mm — quebra a frieza do render */
.film-grain{
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.3' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-animation 0.4s steps(10) infinite;
}
@keyframes grain-animation{
  0%{transform:translate(0,0)} 10%{transform:translate(-3%,-2%)} 20%{transform:translate(2%,3%)}
  30%{transform:translate(-2%,2%)} 40%{transform:translate(3%,-3%)} 50%{transform:translate(-3%,2%)}
  60%{transform:translate(2%,-2%)} 70%{transform:translate(-2%,3%)} 80%{transform:translate(3%,2%)}
  90%{transform:translate(-3%,-3%)} 100%{transform:translate(0,0)}
}

/* ===== Conteúdo — ancorado na base, nunca centralizado ===== */
.hero__content{
  position: absolute;
  z-index: 3;
  left: 0; right: 0;
  bottom: clamp(1.25rem, 4vh, 3rem);
  padding: 0 var(--pad-x);
}

/* Chip claro: a peça é verde saturada, texto solto não teria leitura */
.hero__badge{
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--verde-noite);
  background: rgba(244, 246, 241, 0.88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 0.62em 1.15em 0.62em 0.85em;
  box-shadow: 0 10px 30px rgba(6, 38, 20, 0.28);
  margin-bottom: clamp(0.5rem, 1.5vh, 1rem);
}
.hero__badge-stripe{
  display: inline-block;
  width: 2.4rem; height: 0.35rem;
  border-radius: 2px;
  background: linear-gradient(to bottom, var(--amarelo) 0 50%, var(--verde-mata) 50% 100%);
  flex: 0 0 auto;
}

/* Título gigante — corta a tela de borda a borda */
.hero__title{
  font-family:'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--verde-noite);
  margin-left: -0.04em; /* correção óptica da borda esquerda */
}
.hero__title-line{
  display: flex;
  align-items: baseline;
  gap: 0.22em;
  font-size: clamp(3.4rem, 12.5vw, 13rem);
  white-space: nowrap;
}
.hero__word{ display: inline-block; }
.hero__word--thin{
  font-weight: 600;
  font-size: 0.42em;
  letter-spacing: 0.02em;
  color: var(--verde-mata);
  transform: translateY(-0.18em);
}
.hero__word--neon{
  color: var(--verde-neon);
  text-shadow: 0 0 34px rgba(55, 201, 86, 0.35);
}

/* CTA mobile — no desktop quem chama é a navbar */
.hero__cta{
  display: none;
  margin-top: clamp(1rem, 2.5vh, 1.5rem);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.95rem, 4vw, 1.05rem);
  color: var(--creme);
  background: var(--verde-noite);
  border-radius: 999px;
  padding: 1em 1.6em;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 14px 34px rgba(11,61,31,0.32);
}

/* Indicador de scroll — canto direito, fora do eixo do título */
.hero__scroll{
  position: absolute;
  z-index: 3;
  right: var(--pad-x);
  bottom: clamp(1.25rem, 4vh, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244, 246, 241, 0.9);
  text-shadow: 0 2px 12px rgba(6, 38, 20, 0.5);
  writing-mode: vertical-rl;
}
.hero__scroll-line{
  width: 1px;
  height: clamp(2.5rem, 7vh, 4.5rem);
  background: linear-gradient(to bottom, rgba(244,246,241,0.75), transparent);
  overflow: hidden;
  position: relative;
}
.hero__scroll-line::after{
  content:'';
  position: absolute;
  top: -50%; left: 0;
  width: 100%; height: 50%;
  background: var(--verde-neon);
  animation: scroll-drip 2.2s cubic-bezier(0.16,1,0.3,1) infinite;
}
@keyframes scroll-drip{
  0%{ top: -50%; } 100%{ top: 110%; }
}

/* ===== MOBILE ===== */

/* ============================================================
   SEÇÃO QUEM É — verde noite, manifesto palavra por palavra
   ============================================================ */
.quem{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% 100%, rgba(30,122,52,0.07) 0%, rgba(30,122,52,0) 55%),
    #FFFFFF;
  color: var(--tinta);
  padding: clamp(5rem, 14vh, 9rem) 0 clamp(4rem, 10vh, 7rem);
}

/* Palavra-fantasma gigante atravessando o fundo */
.quem__watermark{
  position: absolute;
  top: clamp(1rem, 4vh, 3rem);
  right: -0.06em;
  z-index: 0;
  font-family:'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(8rem, 24vw, 22rem);
  line-height: 0.8;
  letter-spacing: -0.01em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(11,61,31,0.11);
  pointer-events: none;
  white-space: nowrap;
}

.quem__grid{
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  gap: clamp(2rem, 5vw, 5rem);
  padding: 0 var(--pad-x);
}

.quem__texto{
  flex: 1 1 100%;
}

.quem__kicker{
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--verde-mata);
  margin-bottom: clamp(1.5rem, 4vh, 2.5rem);
}
.quem__kicker-stripe{
  display: inline-block;
  width: 2.4rem; height: 0.35rem;
  border-radius: 2px;
  background: linear-gradient(to bottom, var(--amarelo) 0 50%, var(--verde-mata) 50% 100%);
  flex: 0 0 auto;
}

/* Manifesto — serifada editorial; cada palavra vira um span (js) que acende no scroll */
.quem__manifesto{
  font-family:'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.7rem, 3.6vw, 3.4rem);
  line-height: 1.3;
  letter-spacing: 0;
  max-width: 26ch;
  margin-bottom: clamp(1.5rem, 4vh, 2.5rem);
}
.quem__manifesto .w{
  display: inline-block;
  opacity: 0.2;              /* layer ghost — o GSAP acende pra 1 */
  will-change: opacity;
}

.quem__apoio{
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  color: rgba(16,22,15,0.7);
  max-width: 52ch;
  margin-bottom: clamp(2.5rem, 6vh, 4rem);
}

/* Linha do tempo — marcos secos, sem card branco genérico */
.quem__timeline{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 2.5vw, 2.5rem) clamp(1.5rem, 3vw, 3rem);
}
.quem__marco{
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-left: 0.9rem;
  border-left: 2px solid rgba(30,122,52,0.5);
}
.quem__marco strong{
  font-family:'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  color: var(--verde-noite);
}
.quem__marco span{
  font-size: clamp(0.75rem, 1vw, 0.85rem);
  letter-spacing: 0.04em;
  color: rgba(16,22,15,0.66);
}

/* ============================================================
   SEÇÃO CAPTAÇÃO — alto contraste, verde neon
   ============================================================ */
.capta{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(90% 110% at 15% 0%, rgba(30,122,52,0.06) 0%, rgba(30,122,52,0) 55%),
    #FFFFFF;
  color: var(--verde-noite);
  padding: 0 0 clamp(4.5rem, 11vh, 8rem);
}
.capta .film-grain{ opacity: 0.06; }

/* Letreiro contínuo no topo da seção */
.capta__marquee{
  overflow: hidden;
  border-bottom: 1px solid rgba(11,61,31,0.12);
  padding: clamp(0.8rem, 2vh, 1.2rem) 0;
  margin-bottom: clamp(3.5rem, 9vh, 6.5rem);
}
.capta__marquee-track{
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.capta__marquee-track span{
  font-family:'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(0.85rem, 1.3vw, 1.1rem);
  letter-spacing: 0.18em;
  white-space: nowrap;
  color: rgba(11,61,31,0.72);
}
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* Tudo centralizado; botão embaixo, no meio */
.capta__conteudo{
  position: relative;
  z-index: 3;
  padding: 0 var(--pad-x);
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.capta__titulo{
  font-family:'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.6rem, 6.2vw, 5.8rem);
  line-height: 1.03;
  letter-spacing: -0.005em;
  margin-bottom: clamp(1.75rem, 5vh, 3rem);
}

.capta__linha{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.capta__texto{
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.65;
  color: rgba(16,22,15,0.72);
  max-width: 52ch;
  margin-bottom: clamp(0.8rem, 2vh, 1.2rem);
}

.capta__chamada{
  font-family:'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  color: var(--verde-noite);
  margin-bottom: clamp(1.75rem, 4.5vh, 2.75rem);
}

.capta__acao{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}

.capta__btn{
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  text-decoration: none;
  color: var(--creme);
  background: var(--verde-noite);
  border-radius: 999px;
  padding: 1.05em 1.9em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 18px 44px rgba(7,35,15,0.35);
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.6s cubic-bezier(0.16,1,0.3,1);
}
.capta__btn:hover{
  transform: translateY(-3px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 26px 60px rgba(7,35,15,0.45);
}
.capta__btn-seta{
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.capta__btn:hover .capta__btn-seta{ transform: translateX(6px); }

.capta__legal{
  font-size: 0.78rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: rgba(16,22,15,0.66);
  max-width: 52ch;
}

/* ============================================================
   SEÇÃO BANDEIRAS — creme editorial, cards numerados
   ============================================================ */
.band{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(110% 80% at 15% 0%, rgba(30,122,52,0.34) 0%, rgba(30,122,52,0) 58%),
    linear-gradient(170deg, #0B3D1F 0%, #07230F 60%, #0A3019 100%);
  color: var(--creme);
  padding: clamp(5rem, 14vh, 9rem) 0 clamp(4.5rem, 11vh, 8rem);
}
.band .film-grain{ opacity: 0.06; }

.band__grid{
  position: relative;
  z-index: 3;
  display: flex;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding: 0 var(--pad-x);
  align-items: stretch;
}

/* Coluna esquerda — título fixo enquanto os cards rolam */
.band__intro{
  flex: 0 1 36%;
  display: flex;
  flex-direction: column;
}

.band__kicker{
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--verde-neon);
  margin-bottom: clamp(1.25rem, 3vh, 2rem);
}
.band__kicker-stripe{
  display: inline-block;
  width: 2.4rem; height: 0.35rem;
  border-radius: 2px;
  background: linear-gradient(to bottom, var(--amarelo) 0 50%, var(--verde-neon) 50% 100%);
  flex: 0 0 auto;
}

.band__titulo{
  position: sticky;
  top: clamp(5rem, 12vh, 7rem);
  font-family:'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.6rem, 5.4vw, 5rem);
  line-height: 1.03;
  letter-spacing: -0.005em;
  color: var(--creme);
}

.band__foto{
  position: relative;
  margin-top: auto;
  padding-top: clamp(2rem, 5vh, 3.5rem);
  display: flex;
  justify-content: center;
}
.band__foto img{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: clamp(15rem, 24vw, 22rem);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 1.25rem;
  box-shadow: 0 24px 56px rgba(0,0,0,0.42);
}

/* Cards — papel sobre papel, sem branco chapado genérico */
.band__cards{
  flex: 1 1 64%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.5vh, 1.5rem);
}

.band__card{
  position: relative;
  border: 1px solid rgba(244,246,241,0.16);
  border-radius: 1.25rem;
  background: rgba(255,255,255,0.05);
  padding: clamp(1.5rem, 3.5vh, 2.5rem) clamp(1.5rem, 3vw, 2.75rem);
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.7s cubic-bezier(0.16,1,0.3,1),
              border-color 0.7s cubic-bezier(0.16,1,0.3,1);
}
.band__card:hover{
  transform: translateY(-4px);
  border-color: rgba(55,201,86,0.6);
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
}

.band__num{
  position: absolute;
  top: clamp(1.2rem, 2.5vh, 1.8rem);
  right: clamp(1.2rem, 2.5vw, 2rem);
  font-family:'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  color: rgba(55,201,86,0.62);
  line-height: 1;
}

.band__card h3{
  font-family:'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  letter-spacing: 0;
  color: var(--creme);
  margin-bottom: 0.6rem;
  padding-right: 3.5rem;
}

.band__card p{
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.65;
  color: rgba(244,246,241,0.74);
  max-width: 56ch;
}

/* ============================================================
   SEÇÃO INSTAGRAM — verde noite, o feed acende como uma tela
   ============================================================ */
.insta{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(110% 90% at 80% 15%, rgba(30,122,52,0.08) 0%, rgba(30,122,52,0) 55%),
    var(--creme);
  color: var(--tinta);
  padding: clamp(5rem, 14vh, 9rem) 0;
}

.insta__grid{
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding: 0 var(--pad-x);
}

.insta__intro{ flex: 1 1 48%; }

.insta__kicker{
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--verde-mata);
  margin-bottom: clamp(1.25rem, 3vh, 2rem);
}
.insta__kicker-stripe{
  display: inline-block;
  width: 2.4rem; height: 0.35rem;
  border-radius: 2px;
  background: linear-gradient(to bottom, var(--amarelo) 0 50%, var(--verde-mata) 50% 100%);
  flex: 0 0 auto;
}

.insta__titulo{
  font-family:'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.6rem, 5.4vw, 5rem);
  line-height: 1.03;
  letter-spacing: -0.005em;
  color: var(--verde-noite);
  margin-bottom: clamp(1.25rem, 3vh, 2rem);
}

.insta__texto{
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  color: rgba(16,22,15,0.7);
  max-width: 40ch;
  margin-bottom: clamp(1.75rem, 4.5vh, 2.75rem);
}

.insta__btn{
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  text-decoration: none;
  color: var(--creme);
  background: var(--verde-noite);
  border-radius: 999px;
  padding: 0.95em 1.8em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 16px 40px rgba(11,61,31,0.25);
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.6s cubic-bezier(0.16,1,0.3,1);
}
.insta__btn:hover{
  transform: translateY(-3px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 24px 56px rgba(11,61,31,0.35);
}
.insta__btn-seta{
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.insta__btn:hover .insta__btn-seta{ transform: translateX(6px); }

/* O feed emoldurado como uma tela acesa no escuro */
.insta__frame{
  flex: 0 1 auto;
  margin-left: auto;
  width: min(100%, 26rem);
  border-radius: 1.5rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(11,61,31,0.12);
  box-shadow: 0 30px 70px rgba(11,61,31,0.16);
}
.insta__frame iframe{
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.02; /* fecha justo no cabeçalho + 2 fileiras do feed */
  height: auto;
  border: 0;
  background: #fff;
}

/* ============================================================
   RODAPÉ
   ============================================================ */
.rodape{
  background: var(--creme);
  color: var(--tinta);
  border-top: 1px solid rgba(11,61,31,0.12);
  padding: clamp(3rem, 8vh, 5rem) 0 clamp(2rem, 5vh, 3rem);
}

.rodape__conteudo{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.75rem, 4vh, 2.5rem);
  padding: 0 var(--pad-x);
  text-align: center;
}

.rodape__chip{
  display: inline-block;
  padding: 0.4rem;
}
.rodape__chip img{ height: clamp(2.2rem, 4vw, 3rem); width: auto; }

.rodape__links{
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.rodape__links a{
  color: var(--verde-noite);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.2em;
  transition: border-color 0.4s ease, color 0.4s ease;
}
.rodape__links a:hover{
  color: var(--verde-mata);
  border-color: var(--verde-mata);
}

.rodape__legal{
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(16,22,15,0.66);
  max-width: 60ch;
}

/* Identificação da campanha (CNPJ eleitoral) — exigência de prestação de contas */
.rodape__id{
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(11,61,31,0.12);
  font-size: 0.68rem;
  line-height: 1.55;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(16,22,15,0.66);
  max-width: 60ch;
}

/* ============================================================
   MOLDURA DE PERFIL — a pessoa põe a própria foto e baixa
   ============================================================ */
.mold{
  position: relative;
  background:
    radial-gradient(100% 70% at 80% 10%, rgba(30,122,52,0.32) 0%, rgba(30,122,52,0) 60%),
    linear-gradient(190deg, #07230F 0%, #0B3D1F 55%, #0A3019 100%);
  color: var(--creme);
  padding: clamp(4rem, 12vh, 7rem) var(--pad-x);
}

.mold__grid{
  display: flex;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: flex-start;
  max-width: 76rem;
  margin: 0 auto;
}
.mold__intro{ flex: 1 1 24rem; min-width: 0; }
.mold__oficina{ flex: 0 1 27rem; width: 100%; min-width: 0; }

.mold__kicker{
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--verde-neon);
  margin-bottom: 1.1rem;
}
.mold__kicker-stripe{
  display: inline-block;
  width: 2.4rem; height: 0.35rem;
  border-radius: 2px;
  background: linear-gradient(to bottom, var(--amarelo) 0 50%, var(--verde-neon) 50% 100%);
  flex: 0 0 auto;
}

.mold__titulo{
  font-family:'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--creme);
  margin-bottom: 1.2rem;
}
.mold__texto{
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.65;
  color: rgba(244,246,241,0.74);
  max-width: 40ch;
  margin-bottom: 2rem;
}

.mold__rotulo{
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244,246,241,0.66);
  margin-bottom: 0.9rem;
}

.mold__opcoes{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;   /* senão a miniatura estica junto com o rótulo de 2 linhas */
  gap: 0.7rem;
  max-width: 30rem;
}
.mold__opcao{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  text-align: center;
}
.mold__opcao img{
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  flex: 0 0 auto;
  border-radius: 12px;
  /* cinza no lugar da foto: sobre branco, a marca branca sumiria */
  background: #c7cfc6;
  box-shadow: 0 0 0 2px rgba(244,246,241,0.2);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.mold__opcao span{
  font-size: 0.68rem;
  line-height: 1.3;
  font-weight: 500;
  color: rgba(244,246,241,0.7);
}
.mold__opcao:hover img{ transform: translateY(-3px); }
.mold__opcao.is-ativa img{
  box-shadow: 0 0 0 3px var(--verde-neon), 0 12px 26px rgba(0,0,0,0.3);
}
.mold__opcao.is-ativa span{ color: var(--creme); font-weight: 600; }

/* ===== Palco ===== */
.mold__palco{
  position: relative;
  aspect-ratio: 1;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  box-shadow: inset 0 0 0 1px rgba(244,246,241,0.16);
}
.mold__canvas{
  display: block;
  width: 100%;
  height: 100%;
}
.mold.tem-foto .mold__canvas{ cursor: grab; touch-action: none; }
.mold.tem-foto .mold__canvas:active{ cursor: grabbing; }

/* fica no terço de cima: no meio bateria no candidato e na marca */
.mold__vazio{
  position: absolute;
  top: 30%; left: 0; right: 0;
  transform: translateY(-50%);
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 600;
  color: rgba(244, 246, 241, 0.88);
  text-shadow: 0 1px 10px rgba(6, 38, 20, 0.45);
  pointer-events: none;
}
.mold.tem-foto .mold__vazio{ display: none; }

/* ===== Controles ===== */
.mold__controles{ margin-top: 1.2rem; }

.mold__arquivo{ display: block; }
.mold__arquivo input{
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0;
  overflow: hidden;
}
.mold__arquivo span{
  display: block;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--verde-noite);
  background: #fff;
  border-radius: 999px;
  padding: 1em 1.6em;
  box-shadow: inset 0 0 0 1.5px rgba(11,61,31,0.16);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.mold__arquivo:hover span{ transform: translateY(-2px); box-shadow: inset 0 0 0 1.5px var(--verde-mata); }
.mold__arquivo input:focus-visible + span{ outline: 2px solid var(--verde-mata); outline-offset: 3px; }

.mold__ajuste{ margin-top: 1.1rem; }
.mold__zoom-rotulo{
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,246,241,0.66);
  margin-bottom: 0.5rem;
}
.mold__ajuste input[type="range"]{
  width: 100%;
  accent-color: var(--verde-mata);
}
.mold__dica{
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: rgba(244,246,241,0.66);
}

.mold__baixar{
  display: block;
  width: 100%;
  margin-top: 1.1rem;
  cursor: pointer;
  border: 0;
  font: inherit;
  font-weight: 600;
  font-size: 1rem;
  color: #062614;
  background: var(--verde-neon);
  border-radius: 999px;
  padding: 1.05em 1.6em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 14px 34px rgba(55,201,86,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.mold__baixar:hover:not(:disabled){ transform: translateY(-2px); }
.mold__baixar:disabled{ opacity: 0.35; cursor: default; box-shadow: none; }

.mold__ajuda{
  margin-top: 0.8rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--verde-neon);
  text-align: center;
}

/* ===== Acessibilidade ===== */
/* ============================================================
   NAVBAR — link de Propostas ao lado do CTA
   ============================================================ */
.nav__acoes{
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.75rem);
}

.nav__link{
  font-size: clamp(0.78rem, 1vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--verde-noite);
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(11,61,31,0.22);
  transition: color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}
.nav__link:hover{ color: var(--verde-mata); border-color: var(--verde-neon); }

/* ============================================================
   BANDEIRAS — botão para a página de propostas
   ============================================================ */
.band__mais{
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: clamp(0.25rem, 1vh, 0.75rem);
  padding: clamp(1.15rem, 2.5vh, 1.6rem) clamp(1.5rem, 3vw, 2.75rem);
  border: 1px solid rgba(244,246,241,0.2);
  border-radius: 1.25rem;
  background: rgba(255,255,255,0.07);
  color: var(--creme);
  font-family:'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.02rem, 1.5vw, 1.25rem);
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.5s cubic-bezier(0.16,1,0.3,1),
              background 0.4s ease;
}
.band__mais:hover{
  background: var(--verde-neon);
  border-color: var(--verde-neon);
  color: var(--verde-noite);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
}
.band__mais-seta{
  font-size: 1.15em;
  color: var(--verde-neon);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.band__mais:hover .band__mais-seta{ transform: translateX(0.35rem); color: var(--verde-noite); }

@media (prefers-reduced-motion: reduce){
  /* sem motion: fica a arte estática da peça, com o 4001 sempre visível */
  .hero__video{ display: none; }
  .film-grain{ animation: none; }
  .hero__scroll-line::after{ animation: none; }
  .reveal{ opacity: 1 !important; transform: none !important; }
  .quem__manifesto .w{ opacity: 1 !important; }
  .capta__marquee-track{ animation: none; }
}

@media (max-width: 760px){

  /* Navbar: logo + link de propostas — o CTA vira botão grande dentro da hero */
  .nav__cta{ display: none; }
  .nav__logo img{ height: 1.55rem; }
  .nav__link{
    font-size: 0.8rem;
    border-bottom-color: rgba(11,61,31,0.3);
  }

  /* Bandeiras — botão de propostas ocupa a largura toda */
  .band__mais{
    width: 100%;
    justify-content: center;
    gap: 0.8rem;
    text-align: center;
  }

  .hero__badge{
    font-size: 0.64rem;
    letter-spacing: 0.14em;
    gap: 0.55rem;
  }
  .hero__badge-stripe{ width: 1.6rem; }

  .hero__cta{ display: block; }
  .hero__scroll{ display: none; }

  /* Quem é */
  .quem__watermark{
    font-size: 34vw;
    top: 0.5rem;
    right: -0.04em;
  }
  .quem__manifesto{ max-width: 100%; }
  .quem__timeline{ gap: 1.1rem 1.6rem; }

  /* Captação — botão de largura total */
  .capta__acao{ align-self: stretch; align-items: stretch; }
  .capta__btn{
    display: flex;
    width: 100%;
    justify-content: center;
  }

  /* Bandeiras — empilha: intro, foto menor, cards */
  .band__grid{ flex-direction: column; }
  .band__titulo{ position: static; }
  .band__foto{ margin-top: 0; padding-top: 1.5rem; }
  .band__foto img{ width: min(52vw, 15rem); }
  .band__card h3{ padding-right: 2.75rem; }

  /* Instagram — empilha: intro, feed, botão embaixo */
  .insta__grid{ flex-direction: column; align-items: stretch; }
  .insta__frame{ margin: 0 auto; }
  .insta__btn{
    display: flex;
    width: 100%;
    justify-content: center;
  }

  /* Moldura de perfil — empilha e as miniaturas crescem pra dar pra ver */
  .mold__grid{ flex-direction: column; }
  .mold__oficina{ flex: 1 1 auto; }
  .mold__opcoes{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    gap: 0.8rem;
  }
  .mold__opcao span{ font-size: 0.72rem; }

  /* Rodapé */
  .rodape__links{ flex-wrap: wrap; justify-content: center; }
}

/* ============================================================
   HERO EM PÉ — a peça é 16:9 e carrega o número 4001.
   Cortar as laterais comeria o mapa e o próprio número, então em
   retrato ela vira um card inteiro sobre o verde da campanha.
   Fica DEPOIS do bloco de 760px de propósito: precisa vencer ele.
   ============================================================ */
@media (orientation: portrait) and (max-width: 1024px){
  .hero{
    /* halo claro atrás do card, pro branco não ficar chapado */
    background:
      radial-gradient(120% 55% at 50% 42%, rgba(30, 122, 52, 0.09) 0%, rgba(30, 122, 52, 0) 68%),
      #FFFFFF;
    height: auto;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(1.6rem, 5vh, 3rem);
    padding: calc(clamp(3.6rem, 10vh, 5rem) + 1.2rem)
             clamp(0.9rem, 3.5vw, 2.5rem)
             clamp(2.5rem, 7vh, 4rem);
    text-align: center;
  }

  .hero__media{
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: clamp(0.9rem, 3vw, 1.3rem);
    overflow: hidden;
    box-shadow:
      0 26px 60px rgba(0, 0, 0, 0.42),
      inset 0 0 0 1px rgba(244, 246, 241, 0.1);
  }

  .hero__wash{ display: none; }

  /* quem chama é o botão grande da hero — o da navbar sairia repetido */
  .nav__cta{ display: none; }

  /* badge sobe pro topo, peça no meio, CTA embaixo: o vazio se distribui */
  .hero__content{ display: contents; }
  .hero__badge{ order: 1; }
  .hero__media{ order: 2; }
  .hero__cta{  order: 3; }
  .hero__scroll{ order: 4; }

  /* sobre o verde escuro o chip vira texto solto claro */
  .hero__badge{
    background: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
    padding: 0;
    color: var(--verde-mata);
    margin-bottom: 0;
  }

  .hero__cta{
    display: block;
    width: 100%;
    max-width: 26rem;
    margin-top: 0;
    background: var(--verde-noite);
    color: var(--creme);
    box-shadow: 0 14px 34px rgba(11, 61, 31, 0.28);
  }

  /* o indicador volta, deitado, e fecha a base */
  .hero__scroll{
    display: flex;
    position: static;
    right: auto;
    bottom: auto;
    writing-mode: horizontal-tb;
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    color: rgba(16, 22, 15, 0.66);
    text-shadow: none;
    gap: 0.5rem;
    margin-top: clamp(0.2rem, 1.5vh, 1rem);
  }
  .hero__scroll-line{ height: 2.2rem; background: linear-gradient(to bottom, rgba(11,61,31,0.4), transparent); }
}
