/*MENU*/
* { box-sizing: border-box; 
    margin: 0; 
    padding: 0; }

body {
  font-family: 'Inter';
  color: #ffffff;
  background: #0b0b0b;
}

body.no-scroll {
  overflow: hidden;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  height: 80px;
}

.logo img { 
    height: 270px; 
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.menu > li { 
  position: relative; 
}

.menu > li > a { 
  font-size: 14px; 
  letter-spacing: -0.5px; 
  color: #333; 
  padding: 6px 2px; 
}

.menu a { 
    text-decoration: none; 
    color: #000; 
}

.menu > li > a:hover { 
    color: #c10c0c; 
}

/*SUBMENU USER */
#userIconContainer {
  width: 32px;
  height: 32px;
  visibility: hidden;
}

#userIconContainer img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
}

body.user-logged #userIconContainer {
  visibility: visible; 
}

body.user-logged .login {
  display: none; 
}

.user-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.user-dropdown {
  position: absolute;
  right: 0;
  top: 45px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  border-radius: 8px;
  display: none;
  flex-direction: column;
  min-width: 150px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.user-dropdown.visible {
  display: flex;
}

.user-dropdown a {
  padding: 10px 14px;
  font-size: 14px;
  color: #000;
  text-decoration: none;
}

.user-dropdown a:hover {
  background: rgba(0,0,0,0.06);
}

/*CELULAR PROFILE */
@media (max-width: 768px) {

  #userIconContainer {
    position: relative;
  }

  .user-dropdown {
    position: fixed;
    top: 150px !important;
    right: 12px !important;
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    max-width: 90vw;  
    padding: 18px 20px;
    border-radius: 10px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    text-align: center;
    width: 240px;
  }

  .user-dropdown a {
    font-size: 15px;
    padding: 10px 0;
    display: block;
  }
}

/*SUBMENU USER */

.has-sub > a::after { 
    content: " ▾"; 
    font-size: 12px; 
}

.submenu {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 200px;
  border-radius: 10px;
  padding: 8px 0;
  list-style: none;
  display: none;
  z-index: 999;
  background: rgba(255, 255, 255, 0.884);
  backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.submenu a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  letter-spacing: -0.3px;
  color: #000;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.submenu a:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #651aef;
}

.has-sub:hover > .submenu {
  display: block;
}

.navbar.scrolled .submenu {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .submenu a {
  color: #000;
  text-shadow: none;
}

.navbar.scrolled .submenu a:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #000;
}

/*MENU*/


/*VIDEO HERO + GRID + VIDEOS*/
:root{
  --page-max: 1540px;
  --page-gutter: clamp(16px, 3vw, 40px);
  --hero-height: clamp(360px, 62vh, 520px);
  --card-height: clamp(240px, 38vw, 520px);
}

.directors-hero,
.directors-grid {
  width: min(100%, var(--page-max));
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

.directors-hero {
  position: relative;
  height: clamp(635px, 64vh, 560px);
  margin-top: 0;
  margin-bottom: 18px;
  background: #0b0b0b;
  overflow: hidden;
}

.directors-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.72);
}

.directors-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.18) 0%,
    rgba(0,0,0,0.28) 45%,
    rgba(0,0,0,0.42) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.directors-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(20px, 3vw, 40px);
  text-align: center;
}

.directors-year {
  margin: 0 0 10px;
  font-size: clamp(18px, 2.2vw, 34px);
  line-height: .8;
  font-weight: 500;
  color: #fff;
  letter-spacing: -1.5px;
}

.directors-title {
  margin: 0;
  max-width: min(1100px, 92%);
  font-size: clamp(28px, 5.4vw, 76px);
  line-height: 0.82;
  font-weight: 800;
  color: #fff;
  letter-spacing: -2.5px;
  text-transform: uppercase;
  text-wrap: balance;
}

.directors-subtitle {
  margin: 10px 0 0;
  max-width: min(980px, 90%);
  font-size: clamp(18px, 3vw, 42px);
  line-height: 0.98;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1.2px;
  text-transform: uppercase;
  text-wrap: balance;
}

.directors-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-areas:
    "main side1"
    "main side2";
  gap: 18px;
  margin-bottom: 80px;
}

.directors-grid > :nth-child(1) { grid-area: main; }
.directors-grid > :nth-child(2) { grid-area: side1; }
.directors-grid > :nth-child(3) { grid-area: side2; }

.video-thumb {
  position: relative;
  cursor: pointer;
  display: block;
  overflow: hidden;
  width: 100%;
  min-height: var(--card-height);
  background: #000;
}

.video-thumb img {
  display: block;
  width: 100%;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.video-thumb:hover img {
  transform: scale(1.02);
  filter: brightness(0.72);
}

.video-thumb .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  z-index: 3;
}

.video-thumb .overlay span {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  color: #fff;
  text-align: center;
  font-size: 18px;
  line-height: 1.08;
  letter-spacing: -1px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0,0,0,0.45);
  max-width: 90%;
  text-wrap: balance;
}

.video-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.34) 0%,
    rgba(0,0,0,0.14) 35%,
    rgba(0,0,0,0.08) 100%
  );
  opacity: 1;
  transition: opacity 0.45s ease;
  z-index: 1;
}

.video-thumb::after {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(38px, 4vw, 64px);
  line-height: 1;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 10px 30px rgba(0,0,0,0.55);
  opacity: 1;
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 2;
  pointer-events: none;
}

.video-thumb:hover::after {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
}

.video-thumb:hover::before {
  opacity: 0.9;
}

.video-thumb:hover .overlay span {
  opacity: 1;
  transform: translateY(0);
}

.video-thumb:focus-visible {
  outline: 2px solid #000;
  outline-offset: 4px;
}

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
}

.video-modal.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.video-modal video {
  max-width: min(92vw, 1180px);
  max-height: 84vh;
  box-shadow: 0 0 25px rgba(0,0,0,0.4);
}

.video-modal .close-btn {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}

.video-modal .close-btn:hover {
  color: #ddd;
}

/* TABLET */
@media (max-width: 1024px) {
  .directors-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "main main"
      "side1 side2";
  }

  .directors-title {
    max-width: 95%;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .directors-hero {
    height: clamp(240px, 42vh, 320px);
    margin-bottom: 14px;
  }

  .directors-year {
    font-size: 16px;
    letter-spacing: -0.6px;
  }

  .directors-title {
    font-size: clamp(22px, 8vw, 34px);
    line-height: 0.96;
    letter-spacing: -1.2px;
    max-width: 95%;
  }

  .directors-subtitle {
    font-size: clamp(14px, 4.8vw, 22px);
    line-height: 1;
    letter-spacing: -0.6px;
    max-width: 96%;
  }

  .directors-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "side1"
      "side2";
    gap: 14px;
    margin-bottom: 44px;
  }

  .video-thumb {
    min-height: 220px;
  }

  .video-thumb::after {
    font-size: 44px;
    opacity: 0.95;
  }

  .video-thumb .overlay {
    padding: 18px;
  }

  .video-thumb .overlay span {
    opacity: 0 !important;
    transform: translateY(10px) !important;
    pointer-events: none;
  }

  .video-thumb:hover .overlay span {
    opacity: 0 !important;
    transform: translateY(10px) !important;
  }

  .video-thumb::before {
    opacity: 0.24;
  }

  .video-thumb:hover::after {
    opacity: 0.95;
    transform: translate(-50%, -50%);
  }
}
/*VIDEO*/


/*PIE DE PAGINA*/
.about-explore{ 
  background:#0b0b0b; 
  padding: 80px 40px 100px; 
}

.ae-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;  
  column-gap: 80px;
  align-items:start;
  max-width: 1400px;
  margin: 0 auto;
}

.ae-title{
  margin:0 0 16px;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -2px;
}

.ae-copy p{
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: -0.9px;
  color:#ffffff;
  text-align: justify;
}

.ae-credits{
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}
.ae-credits li{
  margin: 10px 0;
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: -0.9px;
  color:#ffffff;
}
.ae-credits li strong{
  font-weight: 500;
}

.ae-explore{
  margin: 0 0 12px;
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -3px;
}

.ae-links{
  list-style:none; 
  margin: 0 0 24px; 
  padding:0;
}
.ae-links li{ 
  margin: 6px 0; 
}

.ae-links a{
  color:#ffffff; 
  text-decoration:none; 
  font-size:14px; 
  font-weight:500;
  line-height: 3px; 
  letter-spacing:-0.9px;
}

.ae-links a:hover{ 
  text-decoration: underline; 
}

.ae-badge{
  margin: 18px 0 16px;
  width: 280px;                
  height: 80px;
}
.ae-badge img{
  width: 100%; 
  height: 100%; 
  object-fit: contain; 
  display:block;
}

.ae-brand{
  margin: 8px 0 12px;
  font-size: 14px; 
  font-weight: 500; 
  letter-spacing: -0.9px;
}

.ae-legal{
  margin: 0 0 22px;
  font-size: 14px; 
  line-height:1.3; 
  color:#ffffff;
  letter-spacing: -0.9px;
}

.ae-address{
  margin: 0 0 28px;
  font-size: 14px; 
  line-height:1.6px; 
  color:#ffffff;
  letter-spacing: -0.9px;
}

.ae-mark{
  width: 360px; height: 18px;
  background:#ffffff;
  margin-left: auto;   
}

.ae-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  column-gap: 80px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}
.ae-address p { 
    margin: 6px 0; 
    line-height: 1.2; 
}
/*PIE DE PAGINA*/


/*RESPONSIVES*/
@media (max-width: 1024px) {
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .logo-grid { grid-template-columns: 1fr; }
  .ae-grid { grid-template-columns: 1fr; gap: 40px; }
  .logo-modal img { max-width: 85%; }
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(0.9); }
}


/* TABLET (768px - 1024px) */
@media (max-width: 1024px) {
  .navbar { padding: 10px 20px; }
  .menu { gap: 10px; }
}

@media (max-width: 1024px) {
  .submenu { 
    display: none; 
  } 
  .has-sub.active > .submenu { 
    display: block; 
  }
}


/* STAND MOBILE (max 767px) */
@media (max-width: 767px) {
  .navbar {
    flex-direction: column;
    height: auto;
  }

  .logo img {
    height: 160px;
  }

  .menu {
    flex-direction: column;
    gap: 8px;
    padding: 10px 0;
  }

  .menu li a {
    font-size: 13px;
  }

  /*AE TABLET - CELULAR*/
  .ae-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ae-title {
    font-size: 24px;
  }

  .ae-explore {
    font-size: 26px;
    text-align: center;
  }

  .ae-links a {
    font-size: 13px;
  }

  .ae-badge {
    width: 200px;
    height: 60px;
    margin: 0 auto;
  }

  .ae-mark {
    width: 100%;
    height: 12px;
  }
}

/*BURGER COMPLETO*/
.burger {
  display: none;
  position: absolute;
  right: 20px;
  top: 28px;
}

.burger span {
  height: 3px;
  width: 100%;
  background: #000;
  border-radius: 10px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

@media (max-width: 768px) {

  .navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 70px;
    padding: 0 16px;

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
  }

    .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    position: absolute;
    left: 16px;
    top: 26px;
    z-index: 3000;
    cursor: pointer;
  }

  .burger span {
    height: 3px;
    background: #000;
    border-radius: 50px;
    transition: 0.3s ease;
  }

  .burger.active span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
  .burger.active span:nth-child(2) { opacity: 0; }
  .burger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

  .logo img {
    height: 130px;
    position: absolute;
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
    z-index: 1000;
  }

  #userIconContainer {
    visibility: hidden;
    position: absolute;
    list-style: none;
    right: 16px;
    top: 18px;
    z-index: 3000;
  }

  body.user-logged #userIconContainer {
    visibility: visible !important;
  }

  .menu {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    padding-top: 100px;

    backdrop-filter: blur(122px) saturate(160%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 1500;
  }

  .menu.active {
    opacity: 1;
    pointer-events: auto;
  }

  .menu li a {
    font-size: 15px;
    font-weight: 500;
    color: #000;
  }

  .submenu {
    display: none !important;
    flex-direction: column;
    gap: 10px;
  }

  .has-sub.active > .submenu {
    display: flex !important;
  }

  body {
    padding-top: 70px !important;
  }
}

/* NAVBAR THEME BY SECTION */
.navbar {
  transition: background 0.35s ease;
}

.logo img,
.menu > li > a,
.menu a,
.has-sub > a::after,
.burger span {
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.navbar.navbar--light {
  background: transparent;
}

.navbar.navbar--light .logo img {
  filter: brightness(0) invert(1);
}

.navbar.navbar--light .menu > li > a,
.navbar.navbar--light .menu a,
.navbar.navbar--light .has-sub > a::after {
  color: #fff;
}

.navbar.navbar--light .menu > li > a:hover {
  color: rgba(255,255,255,0.72);
}

.navbar.navbar--light .burger span {
  background: #fff;
}

.navbar.navbar--light .submenu a {
  color: #0c0c0c;
  text-shadow: none;
}

.navbar.navbar--light .submenu a:hover {
  background: rgba(255,255,255,0.10);
  color: #705ed7;
}

.navbar.navbar--dark .logo img {
  filter: none;
}

.navbar.navbar--dark .menu > li > a,
.navbar.navbar--dark .menu a,
.navbar.navbar--dark .has-sub > a::after {
  color: #111;
}

.navbar.navbar--dark .menu > li > a:hover {
  color: #c10c0c;
}

.navbar.navbar--dark .burger span {
  background: #111;
}


.navbar.navbar--dark .submenu a {
  color: #111;
  text-shadow: none;
}

.navbar.navbar--dark .submenu a:hover {
  background: rgba(0,0,0,0.06);
  color: #111;
}

/* NAVBAR THEME BY SECTION */