/* ============================================================
   HOME — estilos específicos
   ============================================================ */

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--verde-escuro);
  color: var(--pergaminho);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero__bg svg { width: 100%; height: 100%; display: block; }

.hero__bg-path {
  fill: none;
  stroke: var(--dourado);
  stroke-width: 3;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(193,162,101,0.45));
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  animation: drawPath 2.6s var(--ease) 0.4s forwards;
}

.hero__bg-dot {
  fill: var(--dourado-claro);
  opacity: 0;
  animation: dotIn 0.6s var(--ease) forwards;
}
.hero__bg-dot--end {
  animation: dotIn 0.6s var(--ease) 2.6s forwards, pulse 3.5s ease-in-out 3.2s infinite;
}

@keyframes drawPath {
  to { stroke-dashoffset: 0; }
}
@keyframes dotIn {
  to { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { r: 5; opacity: 1; }
  50% { r: 9; opacity: 0.5; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg-path { stroke-dashoffset: 0; animation: none; }
  .hero__bg-dot { opacity: 1; animation: none; }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 9rem 0 6rem;
}

.hero .eyebrow { color: var(--dourado); }

.hero h1 {
  color: var(--pergaminho);
  margin-bottom: 1.4rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--dourado-claro);
}

.hero p.lead {
  color: rgba(246,241,230,0.85);
  margin-bottom: 2.4rem;
}

.hero__scroll-cue {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(246,241,230,0.55);
  z-index: 2;
}
.hero__scroll-cue svg {
  width: 16px; height: 24px;
  animation: scrollCue 2s ease-in-out infinite;
}
@keyframes scrollCue {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(6px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll-cue svg { animation: none; }
}
@media (max-width: 640px) {
  .hero__scroll-cue { display: none; }
}

/* ---------- INTRO + PIRÂMIDE ---------- */
.intro {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 900px) {
  .intro {
    grid-template-columns: 1fr;
  }
  .intro .piramide-home--enhanced {
    order: -1; /* pirâmide vai acima do texto no mobile */
    margin: 0 auto;
  }
}

.intro__text .lead { margin: 1.2rem 0 1.8rem; }

.piramide {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
.piramide svg { width: 100%; height: auto; }

.piramide__pilares {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  text-align: center;
}
.piramide__pilar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.piramide__pilar svg {
  width: 36px;
  height: 36px;
  color: var(--dourado-escuro);
}
.piramide__pilar span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--verde-floresta);
  line-height: 1.3;
}

/* ---------- SERVIÇOS ---------- */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 980px) {
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .servicos-grid { grid-template-columns: 1fr; }
}

.servico-card {
  padding: 2.4rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 3px solid var(--dourado);
}
.servico-card__icon {
  height: 64px;
  display: flex;
  align-items: center;
}
.servico-card__icon img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.servico-card h3 { font-size: 1.35rem; }
.servico-card p {
  font-size: 0.95rem;
  color: rgba(26,38,32,0.78);
  flex-grow: 1;
}
.servico-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--verde-floresta);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--t-fast), color var(--t-fast);
}
.servico-card__link svg { width: 16px; height: 16px; transition: transform var(--t-fast); }
.servico-card:hover .servico-card__link { gap: 0.7rem; color: var(--dourado-escuro); }
.servico-card:hover .servico-card__link svg { transform: translateX(3px); }

/* ---------- MISSÃO / VISÃO / VALORES ---------- */
.mvv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(246,241,230,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 780px) {
  .mvv { grid-template-columns: 1fr; }
}
.mvv__item {
  background: var(--verde-floresta);
  padding: clamp(2.2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mvv__item svg {
  width: 40px;
  height: 40px;
  color: var(--dourado);
}
.mvv__item h3 { color: var(--pergaminho); }
.mvv__item p { color: rgba(246,241,230,0.78); font-size: 0.96rem; }

/* ---------- EQUIPE ---------- */
.equipe-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: 3rem;
}
@media (max-width: 860px) {
  .equipe-intro { grid-template-columns: 1fr; }
}

.equipe-destaque {
  text-align: center;
}
.equipe-destaque__photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid var(--dourado);
  padding: 5px;
}
.equipe-destaque__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.equipe-destaque h3 { margin-bottom: 0.2rem; }
.equipe-destaque__role {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dourado-escuro);
  font-weight: 600;
}

.equipe-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}
@media (max-width: 860px) {
  .equipe-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .equipe-grid { grid-template-columns: repeat(2, 1fr); }
}

.equipe-card {
  text-align: center;
}
.equipe-card__photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 0.8rem;
  filter: grayscale(15%);
  transition: filter var(--t-fast), transform var(--t-fast);
}
.equipe-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.equipe-card:hover .equipe-card__photo {
  filter: grayscale(0%);
  transform: scale(1.03);
}
.equipe-card span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--verde-floresta);
  line-height: 1.3;
}

/* ---------- ARTIGOS (home) ---------- */
.artigos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
@media (max-width: 900px) {
  .artigos-grid { grid-template-columns: 1fr; }
}

.artigo-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.artigo-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.artigo-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.artigo-card:hover .artigo-card__img img { transform: scale(1.06); }
.artigo-card__body {
  padding: 1.5rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex-grow: 1;
}
.artigo-card__date {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dourado-escuro);
  font-weight: 600;
}
.artigo-card__body h3 { font-size: 1.2rem; line-height: 1.35; }
.artigo-card__link {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--verde-floresta);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.artigo-card__link svg { width: 14px; height: 14px; transition: transform var(--t-fast); }
.artigo-card:hover .artigo-card__link svg { transform: translateX(3px); }

/* ---------- CTA FINAL ---------- */
.cta-final {
  text-align: center;
  position: relative;
}
.cta-final h2 { max-width: 18ch; margin: 0 auto 1.2rem; }
.cta-final .lead { margin: 0 auto 2.2rem; }
.cta-final .btn-row { justify-content: center; }

/* ============================================================
   PIRÂMIDE SIMPLIFICADA (sem texto ao lado)
   ============================================================ */
.section--piramide-simples { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.piramide-simples__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.piramide-simples__inner .piramide {
  max-width: 340px;
  width: 100%;
}

/* ============================================================
   TÉCNICAS DA TRINDADE — seção home
   ============================================================ */
.section--trindade { background: var(--pergaminho-escuro); }

.trindade-logo-central {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}
.trindade-logo-central img {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(193,162,101,0.3));
}

.trindade-tecnicas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 700px) {
  .trindade-tecnicas { grid-template-columns: 1fr; gap: 1.5rem; }
}

.trindade-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--branco);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform var(--t-med), box-shadow var(--t-med);
  gap: 1rem;
}
.trindade-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.trindade-item img {
  width: 100px;
  height: auto;
  object-fit: contain;
}
.trindade-item h3 { font-size: 1.35rem; }
.trindade-item p { color: var(--carvao); font-size: 0.95rem; line-height: 1.6; }
.trindade-item .servico-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dourado-escuro);
  transition: gap var(--t-fast);
  margin-top: auto;
  padding-top: 0.5rem;
}
.trindade-item .servico-card__link:hover { gap: 0.7rem; }
.trindade-item .servico-card__link svg { width: 1em; height: 1em; }

/* ============================================================
   HERO HOME — fundo ondulado (Fundo-Site.jpeg)
   ============================================================ */
.hero__fundo-site {
  position: absolute;
  inset: 0;
  background-image: url(../img/fundo-site.jpeg);
  background-size: cover;
  background-position: center;
  opacity: 0.09;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }
.hero__scroll-cue { position: relative; z-index: 1; }

/* ============================================================
   PIRÂMIDE SITE na HOME — versão verde/sage
   ============================================================ */
#pyramid-container-home img {
  /* A piramide-site.png tem fundo transparente — deixar natural */
  filter: drop-shadow(0 12px 32px rgba(16,56,44,0.18));
  max-width: 100%;
  height: auto;
}
#pyramid-container-home:hover img {
  filter: drop-shadow(0 18px 44px rgba(16,56,44,0.28));
}

/* Word reveal animation — garante que o texto nunca fique junto */
.word-anim {
  display: inline-block;
  white-space: nowrap;
}

/* ============================================================
   JOGO DA JORNADA — Card destaque (serviço principal)
   ============================================================ */
.servicos-grid--single {
  grid-template-columns: 1fr;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.servico-card--featured {
  position: relative;
  padding: 3rem 2.6rem 2.6rem;
  border-top: 3px solid var(--dourado);
  text-align: center;
  animation: featuredGlow 3.2s ease-in-out infinite;
}

.servico-card--featured .servico-card__icon {
  justify-content: center;
  height: 80px;
  margin-bottom: 0.4rem;
}

.servico-card--featured .servico-card__icon img {
  height: 80px;
}

.servico-card--featured h3 {
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  color: var(--verde-floresta);
}

.servico-card--featured p {
  font-size: 1rem;
  max-width: 42ch;
  margin: 0 auto;
}

.servico-card--featured .servico-card__link {
  justify-content: center;
  font-size: 0.9rem;
}

.servico-card__featured-badge {
  position: absolute;
  top: -0.9rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dourado);
  color: var(--verde-escuro);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.28rem 1.1rem;
  border-radius: 20px;
  white-space: nowrap;
}

@keyframes featuredGlow {
  0%, 100% {
    box-shadow: 0 4px 24px rgba(26,38,32,0.08), 0 0 0 0 rgba(193,162,101,0.15);
  }
  50% {
    box-shadow: 0 8px 48px rgba(26,38,32,0.12), 0 0 28px 4px rgba(193,162,101,0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .servico-card--featured { animation: none; }
}

/* ============================================================
   MOBILE — Correções gerais
   ============================================================ */

/* Hero: padding menor em telas pequenas */
@media (max-width: 640px) {
  .hero__content {
    padding: 7rem 0 4rem;
  }
  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

/* Botões: empilhar em telas muito pequenas */
@media (max-width: 480px) {
  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-row .btn {
    text-align: center;
    justify-content: center;
  }
}

/* Pilares: empilhar em 2 colunas em telas pequenas */
@media (max-width: 400px) {
  .piramide__pilares {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Intro: ajustes quando pirâmide vai pra baixo */
@media (max-width: 900px) {
  .intro {
    gap: 2rem;
  }
  .piramide-home {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* Seção intro: padding vertical menor no mobile */
@media (max-width: 640px) {
  .intro__text {
    text-align: center;
  }
  .piramide__pilares {
    text-align: center;
  }
  .piramide__pilar {
    align-items: center !important;
  }
}

/* MVV: cards com mais respiro no mobile */
@media (max-width: 560px) {
  .mvv__item {
    padding: 2rem 1.5rem;
  }
}

/* Equipe: foto menor em telas muito pequenas */
@media (max-width: 480px) {
  .equipe-destaque__photo {
    width: 120px;
    height: 120px;
  }
  .equipe-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Trindade: logos menores no mobile */
@media (max-width: 560px) {
  .trindade-logo-central img {
    max-width: 180px;
  }
  .trindade-tecnicas {
    gap: 1.5rem;
  }
}

/* ============================================================
   HERO CLARO — Novo tema
   ============================================================ */
.hero--light {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #F0FAF5;
}

.hero__light-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/fundo-claro.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero__container--light {
  position: relative;
  z-index: 2;
}

.hero__content--light {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 9rem 0 6rem;
  opacity: 0;
  animation: heroFadeIn 1s var(--ease) 0.1s forwards;
}

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

.hero__logo-grande {
  height: clamp(64px, 9vw, 110px);
  width: auto;
  display: block;
  margin-bottom: 2rem;
  opacity: 0;
  animation: logoSlideIn 1.1s var(--ease) 0.05s forwards;
  filter: drop-shadow(0 4px 18px rgba(193,162,101,0.35));
}

@keyframes logoSlideIn {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow--light {
  color: var(--dourado-escuro) !important;
  opacity: 0;
  animation: heroFadeIn 0.8s var(--ease) 0.3s forwards;
}

.hero__h1--light {
  color: var(--verde-floresta) !important;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: heroFadeIn 0.9s var(--ease) 0.45s forwards;
}

.hero__h1--light em {
  color: var(--dourado-escuro) !important;
  font-style: italic;
}

.hero__lead--light {
  color: rgba(16, 56, 44, 0.78) !important;
  margin-bottom: 2.4rem;
  opacity: 0;
  animation: heroFadeIn 0.9s var(--ease) 0.6s forwards;
}

.hero__lead--light strong { color: var(--verde-floresta); }

.hero__content--light .btn-row {
  opacity: 0;
  animation: heroFadeIn 0.9s var(--ease) 0.75s forwards;
}

.hero__scroll-cue--light {
  color: rgba(16, 56, 44, 0.5);
}

@media (prefers-reduced-motion: reduce) {
  .hero__content--light,
  .hero__logo-grande,
  .hero__eyebrow--light,
  .hero__h1--light,
  .hero__lead--light,
  .hero__content--light .btn-row {
    animation: none;
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .hero__content--light {
    padding: 7rem 0 4rem;
    text-align: center;
  }
  .hero__logo-grande {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__content--light .btn-row {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__content--light .btn {
    justify-content: center;
  }
}

/* ============================================================
   MVV — Seção com imagem
   ============================================================ */
.section--mvv-img {
  padding: 0 !important;
  background: transparent;
}
.mvv-img-wrap {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mvv-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Pirâmide: maior e mais impactante */
.piramide-home {
  width: 100%;
}
.pyramid-scene {
  width: 100%;
}
#pyramid-img-home {
  width: 100%;
  height: auto;
}

/* Intro text: espaço para o novo texto */
.intro__text h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
}
.intro__text p {
  margin-bottom: 0.75rem;
  color: var(--carvao);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ============================================================
   PIRÂMIDE — Enhanced: maior, órbita, glow, partículas
   ============================================================ */
.piramide-home--enhanced {
  width: 100%;
  min-width: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Glow dourado atrás da pirâmide */
.pyramid-glow {
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(193, 162, 101, 0.28) 0%,
    rgba(193, 162, 101, 0.10) 40%,
    transparent 70%
  );
  animation: pyramidPulseGlow 4s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes pyramidPulseGlow {
  from { opacity: 0.6; transform: scale(0.94); }
  to   { opacity: 1;   transform: scale(1.06); }
}

/* Anel orbital */
.pyramid-orbit {
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  border: 1.5px solid rgba(193, 162, 101, 0.22);
  animation: orbitSpin 18s linear infinite;
  pointer-events: none;
  z-index: 3;
}

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

/* Pontos no anel orbital */
.pyramid-orbit__dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--dourado);
  box-shadow: 0 0 8px 2px rgba(193,162,101,0.6);
  transform: translate(-50%, -50%);
}
.pyramid-orbit__dot--1 { top: 0%;   left: 50%; }
.pyramid-orbit__dot--2 { top: 75%;  left: 96%; }
.pyramid-orbit__dot--3 { top: 75%;  left: 4%;  }

/* Imagem da pirâmide */
#pyramid-img-home {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 32px rgba(193,162,101,0.25))
          drop-shadow(0 2px 8px rgba(16,56,44,0.12));
  animation: pyramidFloat 6s ease-in-out infinite;
}

@keyframes pyramidFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

@media (prefers-reduced-motion: reduce) {
  .pyramid-glow { animation: none; }
  .pyramid-orbit { animation: none; }
  #pyramid-img-home { animation: none; }
}

@media (max-width: 900px) {
  .piramide-home--enhanced {
    max-width: 420px;
    margin: 0 auto;
  }
}

/* ============================================================
   JOGO DA JORNADA — Seção protagonista
   ============================================================ */
.section--jornada-prota {
  background: linear-gradient(160deg, #f5faf7 0%, #eef6f1 50%, #f8fdf9 100%);
  position: relative;
  overflow: hidden;
}

/* Partículas decorativas via CSS */
.jornada-prota__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.jornada-prota__particles::before,
.jornada-prota__particles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(193,162,101,0.15) 0%, transparent 70%);
}
.jornada-prota__particles::before {
  width: 600px; height: 600px;
  top: -200px; right: -150px;
  animation: floatBlob1 10s ease-in-out infinite alternate;
}
.jornada-prota__particles::after {
  width: 400px; height: 400px;
  bottom: -100px; left: -100px;
  background: radial-gradient(ellipse, rgba(16,56,44,0.06) 0%, transparent 70%);
  animation: floatBlob2 14s ease-in-out infinite alternate;
}
@keyframes floatBlob1 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(-30px,40px) scale(1.08); }
}
@keyframes floatBlob2 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(20px,-25px) scale(0.94); }
}

/* Card protagonista */
.jornada-prota {
  position: relative;
  z-index: 1;
  margin-top: 3rem;
  background: rgba(255,255,255,0.9);
  border-radius: 24px;
  padding: 3.5rem;
  box-shadow:
    0 4px 24px rgba(16,56,44,0.07),
    0 20px 60px rgba(16,56,44,0.05),
    inset 0 1px 0 rgba(255,255,255,0.8);
  border: 1px solid rgba(193,162,101,0.18);
  overflow: hidden;
  transition: box-shadow 0.4s var(--ease);
}
.jornada-prota:hover {
  box-shadow:
    0 8px 40px rgba(16,56,44,0.10),
    0 28px 70px rgba(193,162,101,0.12),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

/* Borda animada dourada no topo */
.jornada-prota__border-anim {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--dourado) 30%,
    #E0CDA3 50%,
    var(--dourado) 70%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmerBorder 3s linear infinite;
}
@keyframes shimmerBorder {
  0%   { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}

/* Topo com selo */
.jornada-prota__top {
  text-align: center;
  margin-bottom: 2rem;
}
.jornada-prota__selo {
  display: inline-block;
  background: linear-gradient(135deg, var(--dourado-escuro), #E0CDA3, var(--dourado-escuro));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: shimmerText 3s ease-in-out infinite;
}
@keyframes shimmerText {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

/* Layout interno: ícone + conteúdo */
.jornada-prota__inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: center;
}

/* Visual do ícone */
.jornada-prota__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jornada-prota__icon-ring {
  position: absolute;
  inset: -25%;
  border-radius: 50%;
  border: 2px solid rgba(193,162,101,0.25);
  animation: iconRingSpin 12s linear infinite;
}
.jornada-prota__icon-ring::before {
  content: '';
  position: absolute;
  width: 10px; height: 10px;
  background: var(--dourado);
  border-radius: 50%;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  box-shadow: 0 0 10px 3px rgba(193,162,101,0.5);
}
@keyframes iconRingSpin {
  to { transform: rotate(360deg); }
}
.jornada-prota__icon-img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 6px 20px rgba(193,162,101,0.35));
  animation: iconFloat 5s ease-in-out infinite;
}
@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Conteúdo */
.jornada-prota__title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--verde-floresta);
  margin-bottom: 0.4rem;
}
.jornada-prota__tagline {
  font-size: 1.05rem;
  color: var(--dourado-escuro);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 1rem;
}
.jornada-prota p {
  color: var(--carvao);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Pills */
.jornada-prota__pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  margin: 0 0 2rem;
  padding: 0;
}
.jornada-prota__pills li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--verde-floresta);
}
.jornada-prota__pills li svg {
  width: 16px; height: 16px;
  color: var(--dourado-escuro);
  flex-shrink: 0;
}

/* CTA */
.jornada-prota__cta {
  font-size: 0.9rem;
  padding: 1rem 2.2rem;
  box-shadow: 0 4px 20px rgba(193,162,101,0.35);
  animation: ctaPulse 3s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(193,162,101,0.30); }
  50%       { box-shadow: 0 6px 30px rgba(193,162,101,0.55); }
}

@media (max-width: 760px) {
  .jornada-prota {
    padding: 2.5rem 1.8rem;
  }
  .jornada-prota__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .jornada-prota__pills {
    justify-content: center;
  }
  .jornada-prota__cta {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .jornada-prota__border-anim { animation: none; }
  .jornada-prota__selo { animation: none; }
  .jornada-prota__icon-ring { animation: none; }
  .jornada-prota__icon-img { animation: none; }
  .jornada-prota__cta { animation: none; }
  .jornada-prota__particles::before,
  .jornada-prota__particles::after { animation: none; }
}

/* ============================================================
   ANIMAÇÕES GLOBAIS EXTRAS
   ============================================================ */

/* Tilt 3D nos cards ao hover */
.trindade-item,
.equipe-card,
.artigo-card,
.faq__item {
  transform-style: preserve-3d;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.trindade-item:hover,
.equipe-card:hover {
  transform: translateY(-6px) rotateX(2deg);
  box-shadow: 0 12px 40px rgba(16,56,44,0.12);
}

/* Shimmer nos eyebrows de seção */
.section-head .eyebrow {
  position: relative;
}
.section-head .eyebrow::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 1px;
  background: var(--dourado);
  opacity: 0.6;
}

/* Fade stagger melhorado para cards */
.reveal-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.26s; }

/* ============================================================
   HERO — Layout 2 colunas (conteúdo + visual 3D)
   ============================================================ */
.hero__container--light {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 100vh;
  padding-top: 90px;
  padding-bottom: 3rem;
}

@media (max-width: 860px) {
  .hero__container--light {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 4rem;
  }
  .hero__visual3d { display: none; }
  .hero__content--light { padding: 0; }
  .hero__logo-grande { margin: 0 auto 1.5rem; }
  .hero__content--light .btn-row {
    flex-direction: column;
    align-items: center;
  }
}

/* Remover padding do content antigo (agora no container) */
.hero__content--light {
  padding: 0 !important;
}

/* ============================================================
   HERO DECORAÇÕES — Orbs, triângulos, anéis
   ============================================================ */
.hero__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

/* Orbs de luz */
.hero__orb {
  position: absolute;
  border-radius: 50%;
}
.hero__orb--1 {
  width: 320px; height: 320px;
  top: -80px; right: 15%;
  background: radial-gradient(ellipse, rgba(193,162,101,0.12) 0%, transparent 70%);
  animation: orbFloat1 9s ease-in-out infinite alternate;
}
.hero__orb--2 {
  width: 220px; height: 220px;
  bottom: 10%; left: 5%;
  background: radial-gradient(ellipse, rgba(16,56,44,0.07) 0%, transparent 70%);
  animation: orbFloat2 12s ease-in-out infinite alternate;
}
.hero__orb--3 {
  width: 180px; height: 180px;
  top: 40%; right: 5%;
  background: radial-gradient(ellipse, rgba(193,162,101,0.09) 0%, transparent 65%);
  animation: orbFloat1 7s ease-in-out 2s infinite alternate;
}
@keyframes orbFloat1 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(15px,-20px) scale(1.08); }
}
@keyframes orbFloat2 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(-10px,15px) scale(0.93); }
}

/* Triângulos flutuantes */
.hero__tri {
  position: absolute;
}
.hero__tri--1 {
  width: 80px; top: 18%; left: 48%;
  opacity: 0.6;
  animation: triFloat 8s ease-in-out infinite alternate;
}
.hero__tri--2 {
  width: 48px; bottom: 25%; right: 52%;
  opacity: 0.45;
  animation: triFloat 11s ease-in-out 3s infinite alternate-reverse;
}
@keyframes triFloat {
  from { transform: translateY(0) rotate(0deg); }
  to   { transform: translateY(-16px) rotate(8deg); }
}

/* Anéis */
.hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(193,162,101,0.18);
}
.hero__ring--1 {
  width: 400px; height: 400px;
  top: 50%; right: -100px;
  transform: translateY(-50%);
  animation: ringSpin 30s linear infinite;
}
.hero__ring--2 {
  width: 260px; height: 260px;
  top: 50%; right: -30px;
  transform: translateY(-50%);
  animation: ringSpin 20s linear infinite reverse;
  border-color: rgba(193,162,101,0.12);
}
@keyframes ringSpin {
  to { transform: translateY(-50%) rotate(360deg); }
}

/* ============================================================
   HERO VISUAL 3D — Esfera + órbitas + badges
   ============================================================ */
.hero__visual3d {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
}

.hero3d__scene {
  position: relative;
  width: 280px;
  height: 280px;
}

/* Esfera 3D central */
.hero3d__sphere {
  position: absolute;
  inset: 50px;
  border-radius: 50%;
  background: radial-gradient(
    135deg at 35% 35%,
    rgba(255,255,255,0.9) 0%,
    rgba(234,243,238,0.85) 30%,
    rgba(193,162,101,0.25) 65%,
    rgba(16,56,44,0.15) 100%
  );
  box-shadow:
    inset -20px -20px 40px rgba(16,56,44,0.12),
    inset 8px 8px 24px rgba(255,255,255,0.7),
    0 20px 60px rgba(16,56,44,0.12),
    0 0 0 1px rgba(193,162,101,0.2);
  animation: sphereFloat 6s ease-in-out infinite;
}
@keyframes sphereFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

.hero3d__sphere-inner {
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 40% 35%,
    rgba(255,255,255,0.8) 0%,
    rgba(193,162,101,0.15) 60%,
    transparent 100%
  );
}

/* Anéis em volta da esfera */
.hero3d__sphere-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1.5px solid rgba(193,162,101,0.35);
}
.hero3d__sphere-ring--h {
  transform: rotateX(75deg);
  animation: ringH 8s linear infinite;
}
.hero3d__sphere-ring--v {
  transform: rotateY(75deg);
  animation: ringV 12s linear infinite reverse;
}
.hero3d__sphere-ring--d {
  transform: rotateX(50deg) rotateY(30deg);
  border-color: rgba(193,162,101,0.2);
  animation: ringD 16s linear infinite;
}
@keyframes ringH { to { transform: rotateX(75deg) rotateZ(360deg); } }
@keyframes ringV { to { transform: rotateY(75deg) rotateZ(360deg); } }
@keyframes ringD { to { transform: rotateX(50deg) rotateY(30deg) rotateZ(360deg); } }

/* Órbitas externas com pontos */
.hero3d__orbit {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 1px dashed rgba(193,162,101,0.2);
  animation: orbitSpin 10s linear infinite;
}
.hero3d__orbit--2 {
  inset: -60px;
  border-color: rgba(193,162,101,0.12);
  animation-duration: 16s;
  animation-direction: reverse;
}
@keyframes orbitSpin { to { transform: rotate(360deg); } }

.hero3d__orbit-dot {
  position: absolute;
  top: 50%; left: -5px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--dourado);
  box-shadow: 0 0 10px 3px rgba(193,162,101,0.5);
  transform: translateY(-50%);
}

/* Badges flutuantes */
.hero3d__badge {
  position: absolute;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(193,162,101,0.25);
  border-radius: 50px;
  padding: 0.4rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--verde-floresta);
  letter-spacing: 0.05em;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(16,56,44,0.08);
}
.hero3d__badge--1 {
  top: 2%; left: -30px;
  animation: badgeFloat1 7s ease-in-out infinite;
  opacity: 0;
  animation-fill-mode: forwards;
  animation-delay: 1.2s;
}
.hero3d__badge--2 {
  bottom: 20%; right: -20px;
  animation: badgeFloat2 9s ease-in-out infinite;
  opacity: 0;
  animation-fill-mode: forwards;
  animation-delay: 1.6s;
}
.hero3d__badge--3 {
  bottom: 5%; left: 0;
  animation: badgeFloat1 11s ease-in-out 1s infinite;
  opacity: 0;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}
@keyframes badgeFloat1 {
  0%   { opacity:0; transform: translateY(10px); }
  10%  { opacity:1; transform: translateY(0); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(-8px); opacity:1; }
}
@keyframes badgeFloat2 {
  0%   { opacity:0; transform: translateY(-10px); }
  10%  { opacity:1; transform: translateY(0); }
  50%  { transform: translateY(8px); }
  100% { transform: translateY(8px); opacity:1; }
}

/* Botão hero com pulso */
.hero__btn-pulse {
  animation: heroBtnPulse 3.5s ease-in-out infinite;
}
@keyframes heroBtnPulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(193,162,101,0.30); }
  50%       { box-shadow: 0 6px 32px rgba(193,162,101,0.55), 0 0 0 4px rgba(193,162,101,0.10); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__orb, .hero__tri, .hero__ring,
  .hero3d__sphere, .hero3d__sphere-ring,
  .hero3d__orbit, .hero3d__badge, .hero__btn-pulse {
    animation: none;
    opacity: 1;
  }
}

/* ============================================================
   LOGO 3D NO HERO — Órbitas douradas
   ============================================================ */
.hero__logo3d {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 420px;
}

.hero__logo3d-scene {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  will-change: transform;
}

/* Glow central */
.hero__logo3d-glow {
  position: absolute;
  inset: -15%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(193,162,101,0.22) 0%,
    rgba(193,162,101,0.08) 45%,
    transparent 70%
  );
  animation: logoGlowPulse 4s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes logoGlowPulse {
  from { opacity: 0.7; transform: scale(0.95); }
  to   { opacity: 1;   transform: scale(1.08); }
}

/* Órbitas */
.hero__logo3d-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(193,162,101,0.38);
}
.hero__logo3d-orbit--1 {
  inset: -10px;
  animation: logoOrbit1 9s linear infinite;
}
.hero__logo3d-orbit--2 {
  inset: -38px;
  border-color: rgba(193,162,101,0.22);
  transform: rotateX(65deg);
  animation: logoOrbit2 14s linear infinite reverse;
}
.hero__logo3d-orbit--3 {
  inset: -66px;
  border-color: rgba(193,162,101,0.14);
  transform: rotateY(65deg);
  animation: logoOrbit3 20s linear infinite;
}
@keyframes logoOrbit1 { to { transform: rotate(360deg); } }
@keyframes logoOrbit2 { to { transform: rotateX(65deg) rotate(360deg); } }
@keyframes logoOrbit3 { to { transform: rotateY(65deg) rotate(360deg); } }

/* Ponto dourado em cada órbita */
.hero__logo3d-dot {
  position: absolute;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--dourado);
  top: 50%; right: -5px;
  transform: translateY(-50%);
  box-shadow: 0 0 12px 4px rgba(193,162,101,0.65);
}

/* Logo em si */
.hero__logo3d-img {
  width: 240px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 10px 40px rgba(193,162,101,0.35))
          drop-shadow(0 2px 10px rgba(16,56,44,0.12));
  transform-style: preserve-3d;
  will-change: transform;
  transition: filter 0.3s ease;
  animation: logoImgFloat 7s ease-in-out infinite;
}
@keyframes logoImgFloat {
  0%, 100% { filter: drop-shadow(0 10px 40px rgba(193,162,101,0.35)) drop-shadow(0 2px 10px rgba(16,56,44,0.12)); }
  50%       { filter: drop-shadow(0 18px 50px rgba(193,162,101,0.50)) drop-shadow(0 4px 16px rgba(16,56,44,0.15)); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__logo3d-glow,
  .hero__logo3d-orbit,
  .hero__logo3d-img { animation: none; }
  .hero__logo3d-img { transform: none !important; }
  .hero__logo3d-scene { transform: none !important; }
}

@media (max-width: 860px) {
  .hero__logo3d { min-height: 300px; }
  .hero__logo3d-scene { width: 240px; height: 240px; }
  .hero__logo3d-img { width: 170px; }
}

/* ============================================================
   PIRÂMIDE — FORÇAR DIREITA E MUITO MAIOR
   ============================================================ */

/* Grid da intro: forçar colunas e tamanhos */
.intro {
  display: grid !important;
  grid-template-columns: 1fr 1.5fr !important;
  gap: clamp(2rem, 4vw, 4rem) !important;
  align-items: center !important;
}

/* Forçar pirâmide na direita e ocupa 100% da coluna */
.piramide-home--enhanced {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
}

/* Cena da pirâmide: maior */
.pyramid-scene {
  width: 100% !important;
  max-width: 600px;
  position: relative;
}

/* Imagem da pirâmide: MUITO maior */
#pyramid-img-home {
  width: 100% !important;
  max-width: 600px !important;
  height: auto !important;
  display: block !important;
  position: relative !important;
  z-index: 2 !important;
}

/* Responsivo: pirâmide continua grande no mobile */
@media (max-width: 900px) {
  .intro {
    grid-template-columns: 1fr !important;
  }
  .piramide-home--enhanced {
    max-width: 480px !important;
    margin: 0 auto !important;
  }
  .pyramid-scene {
    max-width: 480px !important;
  }
}

/* ============================================================
   INTRO FLEXBOX — Mobile stack
   ============================================================ */
@media (max-width: 860px) {
  .container.intro {
    flex-direction: column !important;
  }
  .intro__text {
    flex: 1 1 100% !important;
    max-width: 100% !important;
  }
  .piramide-home--enhanced {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}

/* ============================================================
   LOGO 3D HERO — Ícone dourado maior e mais animado
   ============================================================ */

/* Aumentar o ícone no hero */
.hero__logo3d-img {
  width: 300px !important;
  height: auto !important;
  filter:
    drop-shadow(0 0 30px rgba(193,162,101,0.6))
    drop-shadow(0 0 60px rgba(193,162,101,0.3))
    drop-shadow(0 12px 40px rgba(16,56,44,0.15)) !important;
  animation: logoIconPulse 4s ease-in-out infinite !important;
}

@keyframes logoIconPulse {
  0%, 100% {
    filter:
      drop-shadow(0 0 20px rgba(193,162,101,0.4))
      drop-shadow(0 0 50px rgba(193,162,101,0.2))
      drop-shadow(0 10px 30px rgba(16,56,44,0.12));
    transform: translateY(0px) scale(1);
  }
  50% {
    filter:
      drop-shadow(0 0 40px rgba(193,162,101,0.7))
      drop-shadow(0 0 80px rgba(193,162,101,0.4))
      drop-shadow(0 16px 50px rgba(16,56,44,0.18));
    transform: translateY(-8px) scale(1.02);
  }
}

/* Cena maior para acomodar as órbitas */
.hero__logo3d-scene {
  width: 420px !important;
  height: 420px !important;
}

/* Glow mais intenso */
.hero__logo3d-glow {
  background: radial-gradient(ellipse at center,
    rgba(193,162,101,0.35) 0%,
    rgba(193,162,101,0.15) 40%,
    transparent 70%
  ) !important;
  inset: -25% !important;
}

/* Órbitas maiores */
.hero__logo3d-orbit--1 { inset: -20px !important; }
.hero__logo3d-orbit--2 { inset: -52px !important; }
.hero__logo3d-orbit--3 { inset: -84px !important; }

/* Segunda órbita: mais partículas */
.hero__logo3d-orbit--2::after {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(193,162,101,0.7);
  bottom: 10%; left: -4px;
  box-shadow: 0 0 10px 3px rgba(193,162,101,0.5);
}

@media (prefers-reduced-motion: reduce) {
  .hero__logo3d-img { animation: none !important; }
}

@media (max-width: 860px) {
  .hero__logo3d { min-height: 340px; }
  .hero__logo3d-scene { width: 280px !important; height: 280px !important; }
  .hero__logo3d-img  { width: 200px !important; }
}

/* ============================================================
   INTRO-LAYOUT — Classe nova sem conflito com .intro !important
   Texto à esquerda, pirâmide GRANDE à direita
   ============================================================ */
.intro-layout {
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 3rem;
  align-items: center;
}

.intro-layout .intro__text {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}

.intro-layout .piramide-home--enhanced {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Pirâmide: cena e imagem com tamanho máximo */
.intro-layout .pyramid-scene {
  width: 100% !important;
  max-width: 640px;
  perspective: 1000px;
  perspective-origin: 50% 40%;
  position: relative;
}

.intro-layout #pyramid-container-home {
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
}

.intro-layout #pyramid-img-home {
  width: 100% !important;
  max-width: 640px !important;
  height: auto !important;
  display: block !important;
}

/* Sombra da pirâmide na intro-layout */
.intro-layout #pyramid-shadow-home {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 28px;
  background: radial-gradient(ellipse at center, rgba(16,56,44,0.22) 0%, transparent 80%);
  border-radius: 50%;
  filter: blur(12px);
  z-index: -1;
  pointer-events: none;
}

/* Mobile: empilha pirâmide acima do texto */
@media (max-width: 860px) {
  .intro-layout {
    grid-template-columns: 1fr !important;
  }
  .intro-layout .intro__text {
    grid-column: 1;
    grid-row: 2;
  }
  .intro-layout .piramide-home--enhanced {
    grid-column: 1;
    grid-row: 1;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* Seção "O Instituto Graal" — texto + pirâmide lado a lado */
.mvv-split {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}
.mvv-split__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mvv-split__visual .piramide-float {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
}
@media (max-width: 860px) {
  .mvv-split {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1.5rem;
  }
}

/* Pirâmide simples com float suave */
.piramide-float {
  filter: drop-shadow(0 12px 40px rgba(16,56,44,0.18))
          drop-shadow(0 4px 16px rgba(193,162,101,0.15));
  animation: piramideFlutua 5s ease-in-out infinite;
}
@keyframes piramideFlutua {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-14px); }
}
@media (prefers-reduced-motion: reduce) {
  .piramide-float { animation: none; }
}
@media (max-width: 860px) {
  .piramide-float { max-width: 340px !important; margin: 0 auto; }
}
