@charset "UTF-8";
/* CSS Document */
body {
  background-color: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
}
.hero {
  min-height: 100vh;
  position: relative;
	  padding-top: 80px;
}
/* Vídeo ocupa tudo */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  filter: brightness(0.7) blur(2px);
  filter: contrast(1.1);
  filter: saturate(0.9);
  object-fit: cover;
  z-index: 1;
}
/* Camada escura */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 2;
}
/* Conteúdo acima de tudo */
.hero .coming-soon {
  z-index: 3;
}
.logo {
  max-width: 50vw;
  width: 100%;
  height: auto;
}
.coming-soon {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 20px;
}

.rotate-10 {
	transform: rotate(-10deg);
	
  display: inline-block;
}

/* Navbar inicial (sobre o vídeo) */
#mainNav {
  background: transparent;
  transition: all 0.3s ease;
}

/* Quando rolar */
#mainNav.scrolled {
  background: rgba(100, 31, 31, 0.55);
  backdrop-filter: blur(3.5px);
}

/* Links */
.navbar-nav .nav-link {
  color: #fff;
  letter-spacing: 1px;
}

.navbar-nav .nav-link:hover {
  color: #ccc;
}

/* Chapéu */
.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #999;
  display: inline-block;
}

/* Título */
.section-title {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.2;
}

/* Lead */
.section-lead {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 720px;
  color: #ddd;
}

/* Bloco editorial refinado */
.story-block {
  border-left: 3px solid rgba(255,255,255,0.2);
	max-width: 680px;
	opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.story-block.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Texto do corpo */
.story-block p {
  color: #bbb;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Destaque sutil */
.story-block strong {
  color: #fff;
}

/* Texto complementar */
.text-muted {
  color: #aaa !important;
  max-width: 700px;
}

.section-eyebrow {
  display: inline-block; /* garante que o tamanho siga o conteúdo */
  width: fit-content;    /* reforço moderno (opcional, mas elegante) */

  font-size: 0.75rem;
	font-weight: bold;
  letter-spacing: 5px;
  text-transform: uppercase;

  padding: 3px 8px;

  color: #d00000;
  border: 1px solid #d00000;
  background: transparent;
}


/* Foto */
.director-photo {
  max-width: 260px;
	margin-bottom: 10px;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}

.director-photo:hover {
  filter: grayscale(0%);
}

/* Bio */
.director-bio {
  color: #bbb;
  line-height: 1.7;
  max-width: 520px;
	margin-bottom: 1.5rem;
}

/* Quote */
.director-quote {
  border-left: 2px solid #d00000;
  padding-left: 18px;
  font-style: italic;
  color: #eee;
  line-height: 1.7;
  max-width: 520px;
}

/* Ajuste de leitura */
.director-quote::before {
  content: "“";
/*  font-size: 2rem;*/
  color: #d00000;
/*  margin-right: 5px;*/
}


/* Imagem */
.context-image {
  max-width: 100%;
  transform: rotate(-3deg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Lead */
.context-lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #ddd;
  max-width: 520px;
}

/* Corpo */
.context-body {
  color: #aaa;
  line-height: 1.7;
  max-width: 520px;
}

/* Fundo geral do FILM */
.film-section {
  background-color: #111; /* base consistente */
}

/* Blocos internos */
.film-block {
  padding: 80px 0;
}

/* Alternância sutil */
.film-block-alt {
  background-color: rgba(255,255,255,0.02);
}

.film-block + .film-block {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.film-section .section-eyebrow {
  border-color: #d00000;
  color: #d00000;
}

.director-quote {
  text-align: left;
  max-width: 95%;
  margin: 0 auto;
}

/* Container da imagem */
.gallery-item {
  overflow: hidden;
  position: relative;
}

/* Imagem */
.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Hover (cinematográfico) */
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.85);
}

.featured-still {
  max-height: 90vh;
  object-fit: cover;
}

.gallery-item img {
  aspect-ratio: 16/9;
  object-fit: cover;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
	pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 85%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/*EFEITO DO LIGHTNG BOX*/
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(12px); /* 🔥 efeito premium */

  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* IMAGEM */
.lightbox-content {
  max-width: 90%;
  max-height: 85%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* QUANDO CARREGADA */
.lightbox-content.loaded {
  opacity: 1;
}

/* LOADER (spinner minimalista) */
.lightbox-loader {
 border: none;
  width: auto;
  height: auto;
  color: white;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.lightbox-loader::after {
  content: "Loading...";
  animation: pulse 1.2s infinite;
}

/* ESCONDER LOADER */
.lightbox-loader.hidden {
  display: none;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  padding: 10px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 0.8rem;
  letter-spacing: 1px;
  opacity: 0.7;
}

/*ESTILO PARA FORMULÁRIO*/
.form-control {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
}

.form-control:focus {
  background: transparent;
  color: white;
  border-color: white;
  box-shadow: none;
}

label {
  font-size: 0.8rem;
  opacity: 0.7;
}


/*MENSAGEM DE AGRADECIMENTO DO FORMULÁRIO*/
.form-success-message {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: translateY(10px);
  text-align: center;
  margin-top: 2rem;
}

.form-success-message.visible {
  display: block;
  opacity: 1;
	transform: translateY(0);
}

.success-title {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.success-subtitle {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-top: 0.5rem;
}



@media (max-width: 37.5em) {
  .logo {
    max-width: 75vw;
    width: 100%;
    height: auto;
  }
	.border-start {
		text-align: start;
	}
}