/* =============================================================================
   ESCUTA - Projetos CSS
   Menu dropdown + mobile, paginas de projetos, fotos verticais, CTA
   ============================================================================= */

/* ============================================================================
   1. NAV - MENU DROPDOWN + MOBILE
   ============================================================================ */

.nav__menu-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin: 0 auto;
}

.nav__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav__menu li {
  position: relative;
}

.nav__menu > li > a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-cream);
  text-decoration: none;
  padding: 0.5rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.25s var(--ease-out);
  position: relative;
}

.nav__menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-yellow);
  transition: width 0.3s var(--ease-out);
}

.nav__menu > li > a:hover,
.nav__menu > li.current-menu-item > a,
.nav__menu > li.current-menu-parent > a,
.nav__menu > li.current-menu-ancestor > a {
  color: var(--color-yellow);
}

.nav__menu > li > a:hover::after,
.nav__menu > li.current-menu-item > a::after {
  width: 100%;
}

/* Seta do dropdown */
.nav__menu > li.menu-item-has-children > a::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 0.4rem;
  order: 2;
  transition: transform 0.25s var(--ease-out);
}

.nav__menu > li.menu-item-has-children:hover > a::before,
.nav__menu > li.menu-item-has-children.is-open > a::before {
  transform: rotate(-135deg) translateY(0);
}

/* Submenu (dropdown desktop) */
.nav__menu .sub-menu {
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 200px;
  background: var(--color-navy-deep);
  border: 1px solid rgba(248, 240, 220, 0.12);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out), visibility 0s linear 0.28s;
}

.nav__menu .sub-menu a {
  display: block;
  padding: 0.7rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--color-cream);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}

.nav__menu .sub-menu a:hover,
.nav__menu .sub-menu li.current-menu-item a {
  background: rgba(244, 161, 28, 0.12);
  color: var(--color-yellow);
}

/* Dropdown activação: só em desktop (min-width: 901px) */
@media (min-width: 901px) {
  .nav__menu li.menu-item-has-children:hover > .sub-menu,
  .nav__menu li.menu-item-has-children.is-open > .sub-menu,
  .nav__menu li.menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out), visibility 0s linear 0s;
  }
}

/* --- Toggle mobile --- */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--color-cream);
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}

.nav__toggle.is-open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* --- MOBILE MENU --- */
@media (max-width: 900px) {
  .nav__toggle { display: flex; }

  .nav__menu-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-navy-deep);
    padding: 6rem 2rem 3rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s var(--ease-out), visibility 0s linear 0.35s;
    z-index: 5;
    overflow-y: auto;
  }

  .nav.is-menu-open .nav__menu-wrap {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.35s var(--ease-out), visibility 0s linear 0s;
  }

  .nav__menu {
    flex-direction: column;
    gap: 0;
    width: 100%;
    align-items: flex-start;
  }

  .nav__menu > li {
    width: 100%;
    border-bottom: 1px solid rgba(248, 240, 220, 0.08);
  }

  .nav__menu > li > a {
    padding: 1.2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    width: 100%;
  }

  .nav__menu > li.menu-item-has-children > a::before {
    margin-left: 0;
    width: 8px;
    height: 8px;
  }

  /* SUBMENU EM MOBILE — reescrito */
  .nav__menu .sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    background: transparent;
    border: none;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    position: static;
    transform: none;
    transition: max-height 0.35s var(--ease-out), opacity 0.25s var(--ease-out), margin 0.35s var(--ease-out);
    margin-bottom: 0;
  }

  .nav__menu li.menu-item-has-children.is-open > .sub-menu {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    margin-bottom: 0.5rem;
    transition: max-height 0.35s var(--ease-out), opacity 0.35s var(--ease-out) 0.05s, margin 0.35s var(--ease-out);
  }

  .nav__menu .sub-menu li {
    display: block;
    width: 100%;
    border-bottom: none;
    position: relative;
  }

  .nav__menu .sub-menu a {
    display: flex !important;
    align-items: center;
    justify-content: flex-start !important;
    padding: 0.85rem 0 0.85rem 1.5rem !important;
    color: rgba(248, 240, 220, 0.85) !important;
    font-family: var(--font-body);
    font-size: 0.95rem !important;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    text-decoration: none;
    white-space: normal;
    background: transparent;
    width: 100%;
  }

  .nav__menu .sub-menu a::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 1px;
    background: var(--color-yellow);
    margin-right: 0.75rem;
    opacity: 0.6;
    flex-shrink: 0;
  }

  .nav__menu .sub-menu a:hover,
  .nav__menu .sub-menu li.current-menu-item a {
    color: var(--color-yellow) !important;
    background: transparent !important;
  }

  .nav__menu .sub-menu a:hover::before {
    opacity: 1;
    width: 20px;
    transition: width 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
  }
}

/* ============================================================================
   2. NAV - SEMPRE AZUL EXCEPTO NA LANDING
   ============================================================================ */

body:not(.is-front-page) .nav,
body:not(.is-front-page) .nav.is-scrolled {
  background: #1E3A5F !important;
  box-shadow: 0 2px 20px rgba(20, 42, 71, 0.15) !important;
}

body:not(.is-front-page) main {
  padding-top: 7rem;
}

@media (max-width: 700px) {
  body:not(.is-front-page) main {
    padding-top: 6rem;
  }
}

/* ============================================================================
   3. PROJETOS LISTA (Em circulacao / Arquivo)
   ============================================================================ */

.projetos-lista {
  padding-bottom: 6rem;
}

.projetos-lista__intro {
  text-align: center;
  padding-bottom: 3rem;
}

.projetos-lista__intro .lead {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-muted);
}

.projetos-lista__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
}

@media (min-width: 700px) {
  .projetos-lista__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1100px) {
  .projetos-lista__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.projeto-card {
  display: flex;
  flex-direction: column;
  background: var(--color-cream);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--color-ink);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  box-shadow: 0 4px 20px -8px rgba(20, 42, 71, 0.15);
  position: relative;
}

.projeto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(20, 42, 71, 0.35);
}

.projeto-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-navy-deep);
}

.projeto-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}

.projeto-card:hover .projeto-card__image img {
  transform: scale(1.06);
}

.projeto-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,42,71,0.05) 0%, rgba(20,42,71,0.5) 100%);
  transition: opacity 0.4s var(--ease-out);
}

.projeto-card:hover .projeto-card__overlay {
  opacity: 0.7;
}

.projeto-card__body {
  padding: 1.75rem 1.75rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.projeto-card__eyebrow {
  font-family: var(--font-hand);
  font-size: 1.15rem;
  color: var(--color-terracotta);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.projeto-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: 'opsz' 96, 'SOFT' 60;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  line-height: 1.15;
  color: var(--color-navy);
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}

.projeto-card__title-hashtag {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-yellow-deep);
  font-size: 0.85em;
  letter-spacing: 0.05em;
  display: block;
}

.projeto-card__meta {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  line-height: 1.4;
}

.projeto-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--color-navy);
  transition: gap 0.3s var(--ease-out), color 0.3s var(--ease-out);
}

.projeto-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease-out);
}

.projeto-card:hover .projeto-card__link {
  gap: 0.85rem;
  color: var(--color-terracotta);
}

.projeto-card:hover .projeto-card__link svg {
  transform: translateX(3px);
}

/* Arquivo vazio */
.projetos-lista__empty {
  padding: 3rem 0 5rem;
}

.projetos-lista__empty-inner {
  text-align: center;
  color: var(--text-muted);
  max-width: 32rem;
  margin: 0 auto;
}

.projetos-lista__empty-icon {
  width: 64px;
  height: 64px;
  color: var(--color-terracotta);
  opacity: 0.45;
  margin: 0 auto 1.5rem;
  display: block;
}

/* ============================================================================
   4. PROJETO - PAGINA COMPLETA
   ============================================================================ */

.projeto-page {
  background: var(--color-cream);
  overflow-x: hidden;
}

.projeto-hero {
  position: relative;
  padding: 3rem 0 3rem;
}

.projeto-hero__eyebrow {
  display: block;
  text-align: center;
  margin-bottom: 1rem;
}

.projeto-hero__title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: 'opsz' 144, 'SOFT' 80;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.05;
  color: var(--color-navy);
  letter-spacing: -0.02em;
  margin: 0 auto 1.5rem;
  max-width: 20ch;
}

.projeto-hero__title-main {
  display: block;
}

.projeto-hero__title-hashtag {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: var(--font-hand);
  font-weight: 500;
  font-size: 0.7em;
  color: var(--color-terracotta);
  letter-spacing: 0.02em;
  transform: rotate(-1.5deg);
  background: var(--color-yellow);
  padding: 0.2em 0.6em;
  border-radius: 4px;
}

.projeto-hero__subtitle {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0 auto;
  text-wrap: balance;
}

/* --- VIDEO TEASER --- */

.projeto-video {
  padding: 2.5rem 0 4rem;
}

.projeto-video__wrap {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  box-shadow: 0 30px 60px -25px rgba(20, 42, 71, 0.4);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.projeto-video__wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 80px -25px rgba(20, 42, 71, 0.55);
}

.projeto-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,42,71,0.15) 0%, rgba(20,42,71,0.55) 100%);
  transition: background 0.4s var(--ease-out);
}

.projeto-video__wrap:hover .projeto-video__overlay {
  background: linear-gradient(180deg, rgba(20,42,71,0.05) 0%, rgba(20,42,71,0.35) 100%);
}

.projeto-video__play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-cream);
}

.projeto-video__play-icon {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--color-yellow);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  box-shadow: 0 10px 40px rgba(244, 161, 28, 0.35);
}

.projeto-video__wrap:hover .projeto-video__play-icon {
  transform: scale(1.08);
}

.projeto-video__play-icon svg {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 2;
}

.projeto-video__play-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--color-yellow);
  opacity: 0;
  animation: playPulse 2.6s ease-out infinite;
  pointer-events: none;
}

.projeto-video__play-ring--2 { animation-delay: 1.3s; }

.projeto-video__play-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

/* --- TEXTO / SECCOES --- */

.projeto-texto {
  padding: 3rem 0;
}

.projeto-h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: 'opsz' 96, 'SOFT' 60;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  color: var(--color-navy);
  letter-spacing: -0.01em;
  margin: 0 0 1.5rem;
}

.projeto-body {
  font-size: 1.05rem;
  line-height: 1.72;
  color: var(--color-ink);
}

.projeto-body p {
  margin: 0 0 1rem;
}

.projeto-body strong {
  color: var(--color-navy);
  font-weight: 500;
}

.projeto-body em {
  color: var(--color-terracotta);
  font-style: italic;
}

.projeto-body__lead p:last-child {
  margin-bottom: 0;
}

.projeto-body__more {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.6s var(--ease-out), opacity 0.5s var(--ease-out), margin-top 0.4s var(--ease-out);
  margin-top: 0;
}

.projeto-body__more[hidden] {
  display: block !important;
}

.projeto-body.is-expanded .projeto-body__more {
  max-height: 2000px;
  opacity: 1;
  margin-top: 1rem;
}

.projeto-body__more p:last-child {
  margin-bottom: 0;
}

.projeto-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.55rem 1.2rem;
  background: transparent;
  border: 1px solid var(--color-terracotta);
  border-radius: 999px;
  color: var(--color-terracotta);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out);
}

.projeto-toggle::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s var(--ease-out);
}

.projeto-toggle:hover {
  background: var(--color-terracotta);
  color: var(--color-cream);
}

.projeto-body.is-expanded .projeto-toggle::after {
  transform: rotate(-135deg) translateY(0);
}

.projeto-toggle-more { display: inline; }
.projeto-toggle-less { display: none; }
.projeto-body.is-expanded .projeto-toggle-more { display: none; }
.projeto-body.is-expanded .projeto-toggle-less { display: inline; }

/* ============================================================================
   5. FOTOS - TODAS VERTICAIS (polaroid tilted, tamanhos moderados)
   ============================================================================ */

.projeto-photo {
  margin: 3.5rem 0;
  position: relative;
  display: flex;
}

.projeto-photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.5s var(--ease-out);
}

/* Link clicável dentro da polaroid */
.projeto-photo__link {
  display: block;
  cursor: zoom-in;
  line-height: 0;
  border-radius: 2px;
  overflow: hidden;
}

/* Polaroid moldura (sem legenda: padding-bottom pequeno como topo/lados) */
.projeto-photo--polaroid {
  background: #fff;
  padding: 12px 12px 40px;
  border-radius: 3px;
  max-width: 300px;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.08),
    0 15px 40px -10px rgba(20, 42, 71, 0.25);
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}

.projeto-photo--polaroid:hover {
  box-shadow:
    0 1px 2px rgba(0,0,0,0.08),
    0 30px 60px -15px rgba(20, 42, 71, 0.4);
}

/* Alinhamentos alternados */
.projeto-photo--tilt-left {
  transform: rotate(-3deg);
  margin-right: auto;
  margin-left: 0;
}

.projeto-photo--tilt-right {
  transform: rotate(2.5deg);
  margin-left: auto;
  margin-right: 0;
}

.projeto-photo--tilt-center {
  transform: rotate(-1deg);
  margin-left: auto;
  margin-right: auto;
}

.projeto-photo--polaroid:hover.projeto-photo--tilt-left,
.projeto-photo--polaroid:hover.projeto-photo--tilt-right,
.projeto-photo--polaroid:hover.projeto-photo--tilt-center {
  transform: rotate(0deg) scale(1.02);
}

@media (max-width: 700px) {
  .projeto-photo--polaroid {
    max-width: 260px;
    padding: 10px 10px 32px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .projeto-photo--tilt-left { transform: rotate(-2deg); }
  .projeto-photo--tilt-right { transform: rotate(1.5deg); }
}

/* --- PAR DE FOTOS (duas polaroids sobrepostas) --- */

.projeto-photo-pair {
  padding: 2rem 0;
}

.projeto-photo-pair__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 700px) {
  .projeto-photo-pair__grid {
    gap: 3rem;
  }
}

.projeto-photo-pair .projeto-photo--polaroid {
  max-width: 260px;
  margin: 0;
}

.projeto-photo-pair__grid .projeto-photo--tilt-right {
  margin-top: -1.5rem;
}

@media (min-width: 900px) {
  .projeto-photo-pair .projeto-photo--polaroid {
    max-width: 300px;
  }
  .projeto-photo-pair__grid .projeto-photo--tilt-right {
    margin-top: -3rem;
  }
}

@media (max-width: 700px) {
  .projeto-photo-pair .projeto-photo--polaroid {
    max-width: 240px;
  }
}

/* ============================================================================
   6. MOMENTOS NUMERADOS
   ============================================================================ */

.projeto-momentos {
  padding: 4rem 0;
}

.projeto-momento {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.75rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(30, 58, 95, 0.12);
}

.projeto-momento:last-child {
  border-bottom: 1px solid rgba(30, 58, 95, 0.12);
}

.projeto-momento__num {
  font-family: var(--font-hand);
  font-size: clamp(3rem, 5vw, 4rem);
  color: var(--color-terracotta);
  line-height: 0.85;
  opacity: 0.85;
  padding-top: 0.25rem;
}

.projeto-momento__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: 'opsz' 60, 'SOFT' 40;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  color: var(--color-navy);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.projeto-momento__content p {
  margin: 0 0 0.4rem;
  color: var(--color-ink);
  line-height: 1.6;
}

.projeto-momento__duration {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 0.75rem !important;
}

.projeto-momento__duration strong {
  color: var(--color-navy);
}

/* ============================================================================
   7. FICHA ARTISTICA
   ============================================================================ */

.projeto-ficha {
  padding: 4rem 0;
}

.ficha-list {
  margin: 0;
  padding: 0;
}

.ficha-list__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(30, 58, 95, 0.1);
}

@media (min-width: 700px) {
  .ficha-list__row {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.5fr);
    gap: 2rem;
    align-items: baseline;
  }
}

.ficha-list__row:first-child {
  border-top: 1px solid rgba(30, 58, 95, 0.1);
}

.ficha-list dt {
  font-family: var(--font-hand);
  font-size: 1.2rem;
  color: var(--color-terracotta);
  line-height: 1;
}

.ficha-list dd {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: 'opsz' 48;
  font-size: 1.15rem;
  color: var(--color-navy);
  margin: 0;
  line-height: 1.35;
}

/* ============================================================================
   8. MURAL DE FOTOS (3 verticais alinhadas)
   ============================================================================ */

.projeto-mural {
  padding: 4rem 0 6rem;
}

.projeto-mural__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .projeto-mural__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.projeto-mural__item {
  overflow: hidden;
  border-radius: 6px;
  margin: 0;
  aspect-ratio: 3/4;
  box-shadow: 0 20px 40px -20px rgba(20,42,71,0.25);
  transition: transform 0.6s var(--ease-out);
}

.projeto-mural__link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
  line-height: 0;
}

.projeto-mural__item:nth-child(1) { transform: rotate(-1deg); }
.projeto-mural__item:nth-child(2) { transform: translateY(1rem) rotate(0.5deg); }
.projeto-mural__item:nth-child(3) { transform: rotate(-0.5deg); }

.projeto-mural__item:hover {
  transform: rotate(0deg) translateY(-4px) scale(1.02);
}

.projeto-mural__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease-out);
}

.projeto-mural__item:hover img {
  transform: scale(1.05);
}

/* ============================================================================
   9. CTA + FORMULARIO
   ============================================================================ */

.projeto-cta {
  position: relative;
  background: var(--color-navy);
  color: var(--color-cream);
  padding: 5rem 0 6rem;
  margin-top: 4rem;
  overflow: hidden;
}

.projeto-cta__inner {
  text-align: center;
}

.projeto-cta .eyebrow {
  color: var(--color-yellow);
}

/* Frase-titulo: Fraunces italic light, com "este projeto" a amarelo */
.projeto-cta .projeto-h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: 'opsz' 144, 'SOFT' 60;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--color-cream);
  max-width: 20ch;
  margin: 0 auto 1.5rem;
  text-wrap: balance;
}

.projeto-cta .projeto-h2 em,
.projeto-cta .projeto-h2 strong {
  font-style: italic;
  color: var(--color-yellow);
  font-weight: 400;
}

/* Linha amarela subtil sob o titulo */
.projeto-cta .projeto-h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-yellow);
  margin: 1.5rem auto 0;
  opacity: 0.7;
}

/* Paragrafo em Plex Sans, mais leve */
.projeto-cta .lead {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.7;
  color: rgba(248, 240, 220, 0.78);
  max-width: 42rem;
  margin: 1.5rem auto 3rem;
  letter-spacing: 0.01em;
}

/* Formulario */
.projeto-form {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.projeto-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .projeto-form__row {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.projeto-form__field {
  display: block;
  margin-bottom: 1.5rem;
}

.projeto-form__label {
  font-family: var(--font-hand);
  font-size: 1.2rem;
  color: var(--color-yellow);
  margin-bottom: 0.5rem;
  display: block;
}

.projeto-form__field input,
.projeto-form__field textarea {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.5;
  padding: 0.85rem 0;
  color: var(--color-cream);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(248, 240, 220, 0.4);
  width: 100%;
  transition: border-color 0.3s var(--ease-out);
}

.projeto-form__field textarea {
  border: 1.5px solid rgba(248, 240, 220, 0.3);
  border-radius: 8px;
  padding: 1rem;
  min-height: 140px;
  resize: vertical;
  font-size: 1.05rem;
  line-height: 1.6;
}

.projeto-form__field input:focus,
.projeto-form__field textarea:focus {
  outline: none;
  border-bottom-color: var(--color-yellow);
}

.projeto-form__field textarea:focus {
  border-color: var(--color-yellow);
}

.projeto-form__field input::placeholder,
.projeto-form__field textarea::placeholder {
  color: rgba(248, 240, 220, 0.35);
  font-size: 0.95rem;
}

.projeto-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  background: var(--color-yellow);
  color: var(--color-navy);
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.projeto-form__submit svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease-out);
}

.projeto-form__submit:hover {
  background: var(--color-cream);
  transform: translateY(-2px);
}

.projeto-form__submit:hover svg {
  transform: translateX(3px);
}

.projeto-cta__direct {
  margin-top: 2.5rem;
  color: rgba(248, 240, 220, 0.75);
  font-size: 0.95rem;
}

.projeto-cta__direct a {
  color: var(--color-yellow);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease-out);
}

.projeto-cta__direct a:hover {
  border-bottom-color: var(--color-yellow);
}

/* ============================================================================
   10. YOUTUBE MODAL
   ============================================================================ */

.youtube-modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 42, 71, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2.5rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease-out), visibility 0s linear 0.45s;
}

.youtube-modal.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s var(--ease-out), visibility 0s linear 0s;
}

.youtube-modal__inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.5s var(--ease-out);
}

.youtube-modal.is-open .youtube-modal__inner {
  transform: scale(1);
}

.youtube-modal__player {
  width: 100%;
  height: 100%;
}

.youtube-modal__player iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-modal__close {
  position: absolute;
  top: clamp(0.75rem, 2vw, 1.5rem);
  right: clamp(0.75rem, 2vw, 1.5rem);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(248, 240, 220, 0.12);
  border: 1px solid rgba(248, 240, 220, 0.3);
  color: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s var(--ease-out), transform 0.25s var(--ease-out);
  z-index: 2;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.youtube-modal__close:hover {
  background: rgba(244, 161, 28, 0.25);
  transform: rotate(90deg);
}

.youtube-modal__close svg {
  width: 22px;
  height: 22px;
}
