﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #000;
  color: #fff;
}

.hero {
  display: flex;
  min-height: 100vh;
  overflow: hidden;
}

/* =====================
   LADO ESQUERDO
===================== */

.hero-left {
  flex: 1;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px;
}

.img {
  position: static;
  width: auto;
  height: 70vh;
  max-width: 320px;
  object-fit: cover;
  border: 2px solid #000000;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.img:hover {
  transform: scale(1.06);
}

.img-back {
  opacity: 0.85;
}

.img-front {
  z-index: 2;
}

/* =====================
   LADO DIREITO
===================== */

.hero-right {
  flex: 1;
  background: #000000;
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 60px;
  margin-bottom: 10px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.subtitle:hover {
  transform: scale(1.04);
}

.hero-right h1 {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.hero-right h1:hover {
  transform: scale(1.03);
}

.hero-right p {
  font-size: 19px;
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 20px;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.hero-right p:hover {
  transform: scale(1.01);
}

/* =====================
   FOOTER AREA
===================== */

.footer-area {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.credit {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
}

.next-btn {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  border: 1px solid #000000;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.next-btn:hover {
  background: #fff;
  color: #000;
}

/* =========================
   CONCEPT SECTION
========================= */

.concept {
  position: relative;
  padding: 120px 80px;
  background: linear-gradient(135deg, #050505, #121212) center/cover no-repeat;
  color: #fff;
}

.concept-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 1;
}

.concept-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: auto;
}

.concept-title {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-style: italic;
  margin-bottom: 24px;
}

/* GRID */

.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  grid-auto-rows: 320px;
  gap: 30px;
  align-items: center;
}

/* IMAGENS */

.concept-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 2px solid #000000;
  border-radius: 12px;
}

.concept-first-photo {
  height: 100%;
}

.large {
  grid-column: span 1;
  grid-row: span 2;
  height: 650px;
}

/* Posicionamento das imagens do meio e da direita */
.concept-item.middle {
  grid-column: 2;
  grid-row: 1;
}

.concept-item.bottom {
  grid-column: 2;
  grid-row: 2;
}

/* TEXTOS */

.concept-text {
  font-size: 18px;
  line-height: 1.8;
  max-width: 350px;
}

.concept-text p {
  margin: 0;
}

.concept-text p + p {
  margin-top: 14px;
}

.left-text {
  grid-column: 3;
  grid-row: 2;
  align-self: start;
}

.right-text {
  grid-column: 3;
  grid-row: 1;
  align-self: start;
}

/* FOOTER */

.concept-footer {
  margin-top: 80px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 24px;
}

.cenografia {
    background-color: #000000;
    padding: 80px 5%;
    font-family: 'Playfair Display', serif;
    color: #ffffff;
}

/* Topo */
.topo {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.topo h1 {
    font-size: 64px;
    font-weight: 500;
}

.projeto {
    font-size: 24px;
    font-style: italic;
}

.cenografia-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Texto */
.texto {
  max-width: 100%;
    line-height: 2;
    font-size: 20px;
    margin-top: 70px;
}

/* Imagens */
.galeria {
    display: grid;
  grid-template-columns: 1.3fr 1fr;
    gap: 30px;
  align-items: stretch;
  margin-top: -100px;
}

.galeria img {
    width: 100%;
  height: 560px;
    object-fit: cover;
    border: 2px solid #000000;
    border-radius: 12px;
}

@media (max-width: 980px) {
  .cenografia-content {
    grid-template-columns: 1fr;
  }

  .galeria {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .galeria img {
    height: 420px;
  }

  .texto {
    margin-top: 0;
  }
}

.narrativa {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
  height: 85vh;
    width: 100%;
}

/* LADO ESQUERDO */
.narrativa-left {
    display: flex;
    flex-direction: column;
  justify-content: center;
  gap: 16px;
  align-items: flex-end;
}

.narrativa-left img {
  width: 60%;
  height: 300px;
  margin-right: 100px;
    object-fit: cover;
  border: 2px solid #000000;
  border-radius: 12px;
}

/* LADO DIREITO */
.narrativa-right {
    background: #000000;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    font-family: 'Playfair Display', serif;
}

.projeto {
    position: absolute;
    top: 40px;
    right: 60px;
    font-style: italic;
    font-size: 22px;
}

.narrativa-right h2 {
    font-size: 64px;
    font-weight: 500;
    margin-bottom: 40px;
}

.narrativa-right p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 500px;
}

/* BotÃ£o */
.btn-next {
    position: absolute;
    bottom: 60px;
    right: 60px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid #111;
    background: transparent;
    font-size: 40px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-next:hover {
    background: #111;
    color: white;
}

.video-projeto-section {
  background: #000;
  padding: 170px 5% 20px;
}

.video-projeto-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.video-projeto-title {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 22px;
  text-align: center;
}

.video-projeto-text {
  max-width: 820px;
  margin: 0 auto;
  font-size: 22px;
  line-height: 1.7;
  text-align: center;
}

.video-section {
  background: #000;
  margin-top: 10px;
  padding: 40px 5%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-intro {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: 22px;
  line-height: 1.7;
  text-align: center;
}

.video-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 30px;
}

.video-container video {
  width: 80%;
  height: auto;
  max-height: 620px;
  display: block;
  margin: 0 auto;
  position: static;
  top: auto;
  left: auto;
  object-fit: contain;
  border: 2px solid #000000;
  border-radius: 12px;
  background: #000;
}

@media (max-width: 980px) {
  .video-projeto-section {
    padding: 110px 24px 16px;
  }

  .video-projeto-title {
    font-size: 42px;
  }

  .video-projeto-text {
    font-size: 18px;
  }

  .video-section {
    padding: 30px 5%;
  }

  .video-intro {
    font-size: 18px;
  }

  .video-container h2 {
    font-size: 42px;
  }
}

.js-photo-clickable {
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .js-hover-text {
    transition: transform 0.3s ease;
  }

  .js-hover-text:hover {
    transform: scale(1.03);
  }

  .js-hover-photo {
    transition: transform 0.3s ease;
  }

  .js-hover-photo:hover {
    transform: scale(1.06);
  }
}

@media (max-width: 1200px) {
  .hero-right {
    padding: 80px 50px;
  }

  .subtitle,
  .hero-right h1,
  .topo h1,
  .narrativa-right h2,
  .concept-title {
    font-size: 48px;
  }

  .concept {
    padding: 90px 40px;
  }

  .concept-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }

  .large,
  .concept-item.middle,
  .concept-item.bottom,
  .right-text,
  .left-text {
    grid-column: auto;
    grid-row: auto;
  }

  .large {
    height: 520px;
  }

  .concept-text {
    max-width: 100%;
  }
}

@media (max-width: 980px) {
  .hero {
    flex-direction: column;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .hero-left {
    padding: 20px;
    gap: 12px;
  }

  .img {
    height: 52vh;
    max-width: 46%;
  }

  .hero-right {
    padding: 40px 24px 60px;
  }

  .subtitle,
  .hero-right h1,
  .topo h1,
  .narrativa-right h2,
  .concept-title {
    font-size: 40px;
  }

  .hero-right p,
  .texto,
  .narrativa-right p,
  .video-intro {
    font-size: 18px;
  }

  .footer-area {
    margin-top: 30px;
  }

  .concept {
    padding: 70px 24px;
  }

  .concept-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .large,
  .concept-item.middle,
  .concept-item.bottom {
    width: 100%;
    height: 360px;
  }

  .cenografia {
    padding: 60px 24px;
  }

  .galeria {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .galeria img {
    height: 360px;
  }

  .narrativa {
    grid-template-columns: 1fr;
    height: auto;
  }

  .narrativa-left {
    align-items: center;
    padding: 30px 20px;
  }

  .narrativa-left img {
    width: 100%;
    max-width: 420px;
    margin-right: 0;
    height: 240px;
  }

  .narrativa-right {
    padding: 50px 24px;
  }

  .projeto {
    position: static;
    margin-bottom: 16px;
  }

  .video-section {
    min-height: auto;
    padding: 60px 24px;
  }

  .video-container {
    max-width: 100%;
  }

  .video-container video {
    width: 100%;
    max-height: none;
  }
}

@media (max-width: 600px) {
  .subtitle,
  .hero-right h1,
  .topo h1,
  .narrativa-right h2,
  .concept-title {
    font-size: 32px;
  }

  .hero-right p,
  .texto,
  .narrativa-right p,
  .video-projeto-text,
  .video-intro,
  .concept-text {
    font-size: 16px;
  }

  .video-projeto-title {
    font-size: 32px;
  }

  .img {
    height: 42vh;
    max-width: 48%;
  }

  .next-btn {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }

  .galeria img,
  .large,
  .concept-item.middle,
  .concept-item.bottom {
    height: 300px;
  }
}

