/* ============================================================
   PLATAFORMA LIVRE NAÇÃO YUXIBU 
   ============================================================ */

:root {
  --cor-fundo-escuro: #1a1412;
  --cor-texto-claro: #f4ecd8;
  --cor-destaque: #d35400;
  --cor-urucum: #af1404;
  --cor-marrom-medio: #2d1e1a;
  --cor-verde-floresta: #2d3c1a;
  --cor-fundo-card: #251d1a;
  --cor-fundo-secundario: #2a211d;
  --sombra-suave: 0 2px 8px rgba(0, 0, 0, 0.15);
  --transicao-padrao: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--cor-texto-claro);
  color: var(--cor-fundo-escuro);
  padding-top: 72px;
  overflow-x: hidden;
}

/* ============================================================
   CABEÇALHO E NAVEGAÇÃO
   ============================================================ */

.header {
  padding-top: constant(safe-area-inset-top);
  /* iOS < 11.2 */
  padding-top: env(safe-area-inset-top);
  /* iOS ≥ 11.2 */
}

.footer {
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}

.cabecalho {
  position: fixed;
  top: 0;
  width: 100%;
  height: 72px;
  background: var(--cor-marrom-medio);
  z-index: 1000;
}

.navegacao {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  padding: 0 28px 0 160px;
  gap: 40px;
}

.container-marca {
  position: absolute;
  left: 0;
  top: 90%;
  transform: translateY(-50%);
  width: 140px;
  height: 140px;
  background: var(--cor-marrom-medio);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.logo-cabecalho {
  height: 110px;
  object-fit: contain;
}

.links-navegacao {
  list-style: none;
  display: flex;
  gap: 25px;
}

.links-navegacao a {
  text-decoration: none;
  color: var(--cor-texto-claro);
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.links-navegacao a:hover {
  color: var(--cor-destaque);
}

.link-apoio {
  background: var(--cor-urucum);
  padding: 10px 25px;
  border-radius: 12px;
  font-weight: 700;
}

.link-apoio:hover {
  background: #e62222;
  transform: scale(1.05);
}

/* Menu hamburguer */
.botao-menu {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--cor-urucum);
  cursor: pointer;
  z-index: 1001;
}

/* Responsivo */
@media (max-width: 1024px) {
  .links-navegacao {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(26, 20, 18, 0.95);
    backdrop-filter: blur(12px);
    transition: right 0.4s ease;
    padding: 0;
    gap: 30px;
  }

  .links-navegacao.ativo {
    right: 0;
  }

  .botao-menu {
    display: block;
  }

  .navegacao {
    padding-left: 0;
    justify-content: flex-end;
  }
}


@media (max-width: 768px) {
  .container-marca {
    width: 140px;
    height: 140px;
    transform: translateY(-50%);
  }

  .logo-cabecalho {
    height: 100px;
    object-fit: contain;
  }

  .navegacao {
    padding: 0 28px 0 120px;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .container-marca {
    width: 130px;
    height: 130px;
    transform: translateY(-50%);
  }

  .logo-cabecalho {
    height: 100px;
    object-fit: contain;
  }

  .navegacao {
    padding: 0 20px 0 0;
    gap: 10px;
  }

  .botao-menu {
    position: fixed;
    top: 18px;
    right: 20px;
    z-index: 1002;
    color: white;
  }

  .links-navegacao {
    width: 100%;
  }

  .link-apoio {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}

/* ============================================================
   HERO
   ============================================================ */

.secao-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('./Fotos/Rio5.png') center/cover;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.fundo-hero {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.conteudo-hero {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  max-width: 1200px;
  padding: 20px;
}

.linha-hero-1 {
  display: block;
  font-size: 4.2rem;
  font-weight: 660;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px var(--cor-marrom-medio);
  text-transform: uppercase;
}

.linha-hero-2 {
  display: block;
  font-size: 5.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px var(--cor-marrom-medio);
  text-transform: uppercase;
}

.subtitulo-hero {
  font-size: 2rem;
  margin: 1.2rem 0 2rem;
}

.botao-chamada {
  display: inline-block;
  background: var(--cor-destaque);
  color: white;
  padding: 15px 40px;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.botao-chamada:hover {
  background: #e67e22;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .linha-hero-1 {
    font-size: 2.8rem !important;
  }

  .linha-hero-2 {
    font-size: 3.4rem !important;
  }

  .subtitulo-hero {
    font-size: 1.5rem !important;
  }
}

@media (max-width: 480px) {
  .linha-hero-1 {
    font-size: 2.2rem !important;
  }

  .linha-hero-2 {
    font-size: 2.6rem !important;
  }

  .subtitulo-hero {
    font-size: 1.2rem !important;
  }

  .botao-chamada {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}

@media (max-width: 360px) {
  .linha-hero-1 {
    font-size: 1.8rem !important;
  }

  .linha-hero-2 {
    font-size: 2.2rem !important;
  }

  .subtitulo-hero {
    font-size: 1rem !important;
  }
}

/* ============================================================
   MANIFESTO
   ============================================================ */

.secao-manifesto {
  background: var(--cor-marrom-medio);
  padding: 60px 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5vw;
  text-align: center;
}

.grade-manifesto {
  text-align: left;
}

.titulo-manifesto {
  font-size: 2.6rem;
  color: var(--cor-texto-claro);
  margin-bottom: 30px;
  font-weight: 800;
  text-transform: uppercase;
}

.paragrafo-manifesto {
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--cor-texto-claro);
  margin-bottom: 1.2rem;
  text-align: justify;
}

@media (max-width: 768px) {
  .titulo-manifesto {
    font-size: 2rem;
  }

  .paragrafo-manifesto {
    font-size: 1.1rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .titulo-manifesto {
    font-size: 1.8rem;
  }

  .paragrafo-manifesto {
    font-size: 1rem;
  }
}

/* ============================================================
   POVO HUNI KUĪ (carrossel de vídeos)
   ============================================================ */

.secao-povo {
  padding: 60px 0;
  background: var(--cor-texto-claro);
}

.titulo-povo {
  color: var(--cor-marrom-medio);
  font-size: 2.6rem;
  margin-bottom: 30px;
  font-weight: 800;
  text-transform: uppercase;
}

.player-video {
  width: 100%;
  border-radius: 18px;
}

.carrossel-povo {
  max-width: 960px;
  margin: 0 auto;
  padding-bottom: 50px;
}

@media (max-width: 768px) {
  .titulo-povo {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .titulo-povo {
    font-size: 1.8rem;
  }

  .carrossel-povo {
    padding-bottom: 30px;
  }
}

/* ============================================================
   COLETIVO (capa)
   ============================================================ */

.secao-coletivo {
  background: url('./Fotos/Imagem-Fundo-Sessão.jpg') center/cover fixed;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-blend-mode: lighten;
  background-color: rgba(240, 40, 40, 0.25);
}

.titulo-movimento {
  font-size: 4.2rem;
  color: var(--cor-texto-claro);
  text-shadow: 0 3px 8px var(--cor-marrom-medio);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .titulo-movimento {
    font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  .titulo-movimento {
    font-size: 2rem;
  }
}

/* ============================================================
   CARDS DO MOVIMENTO (ícone à esquerda, empilhados)
   ============================================================ */

.secao-cards-movimento {
  background: var(--cor-verde-floresta);
  padding: 40px 0 60px;
}

/* Imagem dos pilares centralizada */
.pilares-nacao-yuxibu {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.pilares-nacao-yuxibu img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Parágrafo introdutório */
.paragrafo-movimento {
  font-size: 2rem;
  color: var(--cor-texto-claro);
  margin-bottom: 40px;
  line-height: 1.7;
  text-align: center;
}

/* Grade: empilha os cards verticalmente */
.grade-cards-movimento {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Card individual */
.card-movimento {
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: flex-start;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-movimento:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

/* Ícone à esquerda */
.card-icone {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icone img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Conteúdo textual (título + caixa de texto) */
.card-conteudo {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Título – acima da caixa de texto e fora dela visualmente */
.card-titulo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  text-align: left;
}

/* Caixa de texto descritiva (com fundo levemente destacado, opcional) */
.card-texto {
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
  border-radius: 12px;
  color: var(--cor-texto-claro);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card-texto p+p {
  margin-top: 10px;
}

/* ==============================
   RESPONSIVIDADE – CARDS DO MOVIMENTO
   ============================== */

/* Tablets (até 768px) */
@media (max-width: 768px) {
  .paragrafo-movimento {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }

  .pilares-nacao-yuxibu {
    margin-bottom: 30px;
  }

  .card-icone {
    width: 120px;
    height: 120px;
    margin-right: 16px;
  }

  .card-titulo {
    font-size: 1.25rem;
  }

  .card-texto {
    font-size: 0.9rem;
    padding: 14px;
  }
}

/* Celulares (até 600px) – empilha verticalmente */
@media (max-width: 600px) {
  .card-movimento {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
  }

  .card-icone {
    width: 100px;
    height: 100px;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .card-titulo {
    text-align: center;
    font-size: 1.2rem;
  }

  .card-texto {
    text-align: center;
    padding: 12px;
    font-size: 0.9rem;
  }

  .paragrafo-movimento {
    font-size: 1.2rem;
    margin-bottom: 25px;
  }
}

/* Telas muito pequenas (até 400px) */
@media (max-width: 400px) {
  .card-icone {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
  }

  .card-titulo {
    font-size: 1.1rem;
  }

  .card-texto {
    font-size: 0.85rem;
    padding: 10px;
  }

  .paragrafo-movimento {
    font-size: 1.1rem;
  }

  .pilares-nacao-yuxibu {
    margin-bottom: 25px;
  }
}

/* ============================================================
   REDES SOCIAIS (texto + ícones lado a lado)
   ============================================================ */
.redes-sociais-coletivo {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.linha-redes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--cor-texto-claro);
}

.chamada-redes {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin: 0;
}

.linha-redes a {
  display: inline-flex;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.linha-redes a:hover {
  transform: scale(1.15);
  opacity: 0.9;
}

.linha-redes img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
  vertical-align: middle;
}

/* Responsividade */
@media (max-width: 600px) {
  .chamada-redes {
    font-size: 1rem;
  }

  .linha-redes img {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 400px) {
  .linha-redes {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* ============================================================
   PLATAFORMA (capa e pilares)
   ============================================================ */

.secao-plataforma-capa {
  background: url('./Fotos/Imagem-Fundo-Sessão.jpg') center/cover fixed;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-blend-mode: lighten;
  background-color: rgba(240, 40, 40, 0.2);
}

.titulo-plataforma {
  font-size: 4.2rem;
  color: var(--cor-texto-claro);
  text-shadow: 0 3px 8px var(--cor-marrom-medio);
  text-transform: uppercase;
}

.secao-pilares {
  background: var(--cor-texto-claro);
  padding: 60px 0;
}

.paragrafo-plataforma {
  font-size: 1.4rem;
  margin-bottom: 40px;
}

.grade-pilares {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pilar {
  perspective: 1200px;
}

.pilar-interno {
  height: 360px;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

.pilar.virado .pilar-interno {
  transform: rotateY(180deg);
}

.pilar-frente,
.pilar-verso {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.pilar-frente {
  background: var(--cor-texto-claro);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.pilar-verso {
  transform: rotateY(180deg);
  background: #fff7ec;
  text-align: left;
  overflow-y: auto;
}

.imagem-pilar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin-bottom: 18px;
}

.botao-alternar-pilar {
  width: 100%;
  margin-top: 14px;
  padding: 12px;
  border: none;
  border-radius: 999px;
  background: var(--cor-destaque);
  color: white;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .titulo-plataforma {
    font-size: 3rem;
  }

  .paragrafo-plataforma {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .grade-pilares {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .titulo-plataforma {
    font-size: 2.4rem;
  }

  .paragrafo-plataforma {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .grade-pilares {
    grid-template-columns: 1fr;
  }

  .titulo-plataforma {
    font-size: 1.8rem;
  }

  .paragrafo-plataforma {
    font-size: 1rem;
  }

  .pilar-interno {
    height: 300px;
  }

  .imagem-pilar {
    width: 90px;
    height: 90px;
  }
}

/* ============================================================
   SOFTWARE LIVRE
   ============================================================ */

.secao-software-livre {
  background: var(--cor-texto-claro);
  padding: 60px 0;
}

.titulo-software-livre,
.titulo-pesquisa {
  font-size: 2.6rem;
  color: var(--cor-fundo-escuro);
  margin-bottom: 30px;
  font-weight: 800;
  text-transform: uppercase;
}

.texto-software-livre {
  font-size: 1.3rem;
  line-height: 1.9;
  text-align: justify;
  margin-bottom: 20px;
}

.sumario {
  color: var(--cor-urucum);
  cursor: pointer;
  font-weight: bold;
}

.referencia {
  font-size: 0.9rem;
  margin-top: 10px;
}

a {
  color: var(--cor-urucum);
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
}

a::before {
  color: var(--cor-fundo-escuro);
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
}

@media (max-width: 768px) {

  .titulo-software-livre,
  .titulo-pesquisa {
    font-size: 2rem;
  }

  .texto-software-livre {
    font-size: 1.1rem;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {

  .titulo-software-livre,
  .titulo-pesquisa {
    font-size: 1.6rem;
  }

  .texto-software-livre {
    font-size: 1rem;
  }

  a {
    font-size: 16px;
  }
}

/* ============================================================
   EQUIPE – GRADE DE MEMBROS
   ============================================================ */

.equipe-section {
  background: linear-gradient(180deg, #f7f0e4, #efe3d0);
  padding: 60px 0;
}

.sobre-header {
  text-align: center;
  margin-bottom: 50px;
}

.equipe-title {
  font-size: 2.6rem;
  color: var(--cor-fundo-escuro);
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.descricao-equipe {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--cor-marrom-medio);
  line-height: 1.6;
}

.equipe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 20px;
}

.membro-card {
  background: #fffef9;
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  padding: 28px 18px 22px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.membro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.membro-foto {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 18px;
  background: #d9c5ad;
  flex-shrink: 0;
}

.membro-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.membro-card h3 {
  font-size: 1.25rem;
  margin: 0 0 5px;
  color: var(--cor-fundo-escuro);
  font-weight: 700;
}

.cargo {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cor-destaque);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.membro-card p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #3e3a36;
  margin: 0;
  flex: 1;
}

/* Responsivo */
@media (max-width: 1024px) {
  .equipe-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .equipe-title {
    font-size: 2rem;
  }

  .descricao-equipe {
    font-size: 1.1rem;
  }

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

@media (max-width: 480px) {
  .equipe-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .membro-foto {
    width: 110px;
    height: 110px;
  }

  .equipe-title {
    font-size: 1.8rem;
  }
}

/* ============================================================
   APOIO
   ============================================================ */

.secao-apoio {
  background: var(--cor-urucum);
  padding: 30px 0 50px !important;
  position: relative;
  text-align: center;
  color: #f4ecd8 !important;
}

.divisor-pincelada {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: translateY(-100%);
}

.divisor-pincelada img {
  width: 100%;
  height: 12%;
  display: block;
}

.container-apoio {
  max-width: 80vw;
  margin: 0 auto;
  padding: 0 20px;
}

.titulo-apoio {
  font-size: 2.8rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: var(--cor-texto-claro);
  margin: 0 0 50px 0;
  text-transform: uppercase;
}

.opcoes-apoio {
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
}

.caixa-apoio {
  background: var(--cor-urucum);
  border: 1px solid var(--cor-texto-claro);
  padding: 20px 10px;
  text-align: center;
  max-width: 400px;
}

.imagem-apoio {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-size: cover;
  margin: 0 auto 10px;
  filter: invert(1)
}

@media (max-width: 768px) {
  .titulo-apoio {
    font-size: 2.2rem;
  }

  .opcoes-apoio {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .titulo-apoio {
    font-size: 1.8rem;
  }

  .opcoes-apoio {
    gap: 20px;
  }

  .caixa-apoio {
    max-width: 100%;
    padding: 15px;
  }
}

/* ============================================================
   RODAPÉ
   ============================================================ */

.rodape {
  background: var(--cor-verde-floresta);
  padding: 20px;
  color: var(--cor-texto-claro);
  text-align: center;
}

.marca-rodape h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 50px 0px 10px;
}

.logos-colaboradores {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.logo-colaborador {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-colaborador img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.base-rodape {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.texto-legal {
  font-size: 0.85rem;
  opacity: 0.7;
}

@media (max-width: 480px) {
  .logo-colaborador {
    width: 90px;
    height: 90px;
  }
}

/* ============================================================
   ANIMAÇÕES DE REVELAÇÃO
   ============================================================ */

.revelar {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.revelar.revelado {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVIDADE GLOBAL (exemplos de ajustes)
   ============================================================ */

@media (max-width: 768px) {
  .linha-hero-1 {
    font-size: 2.2rem !important;
  }

  .linha-hero-2 {
    font-size: 2.8rem !important;
  }

  .subtitulo-hero {
    font-size: 1.1rem !important;
  }

  .grade-pilares {
    grid-template-columns: 1fr;
  }

  .opcoes-apoio {
    gap: 30px;
  }
}