* { 
  box-sizing: border-box; 
}
html, body { 
  margin: 0; 
  padding: 0; 
}

ul { 
  list-style: none; 
  margin: 0; 
  padding: 0; 
}

a { 
  text-decoration: none; 
  color: inherit; 
}

body { 
  font-family: 'Inter'; 
  color: #222; 
  background: #fff; 
}

.logo img {   
  height: 270px;
  display: block;
}

/*INICIO DE MENU*/

.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: transparent;
  backdrop-filter: blur(12px) saturate(180%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  height: 80px;
}

.menu { 
  display: flex; 
  align-items: center; 
  gap: 22px; 
}

.menu > li { 
  position: relative; 
}

.menu > li > a { 
  font-size: 14px; 
  letter-spacing: -0.5px; 
  color: #000;
  padding: 6px 2px; 
}

.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.15);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  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: #fff;
}

.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;
}

/* FIN DE MENU */

.hero { 
  width: 100%; 
  height: 100vh; 
  overflow: hidden; 
  position: relative; 
}

.hero-img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block; 
}

.creations { 
  padding: 56px 40px 10px; 
}

.creations-header {
  display: flex;
  justify-content: space-between;  
  align-items: baseline;
  margin-bottom: 22px;
}

.creations-header h2 {
  margin: 0; color: #111;
  font-size: 36px; 
  line-height: 1.05;
  font-weight: 600; 
  letter-spacing: -1.5px;
}
.creations-text {
  max-width: 1100px;
  margin: 18px auto 36px;
  text-align: center;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -1px;
  font-weight: 300;
  color: #222;
}
.creations-cta {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0;

}
.creations-cta span { 
  font-weight: 600; 
}

.redefining {
  background: #fff;
  padding: 80px 20px;
  position: relative;
  max-width: 1600px; 
  margin: 0 auto; 
}

.redefining-container {
  max-width: 100%; 
  margin: 0 auto;
  padding: 0 10px; 
}

.redefining-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.1px;
  color: #000;
  margin-bottom: 40px;
}

.redefining-header p {
  margin: 2px 0;
}

.redefining-title {
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: -5px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  margin-bottom: 40px;
}

.redefining-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
  padding-left: 100px;
  margin-top: 40px;
}

.redefining-label,
.redefining-timer {
  position: absolute;
  left: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #000;
}

.redefining-label {
  top: 0;
  transform: translateY(4px);
}

.redefining-timer {
  bottom: 0;
  transform: translateY(2px);
}

.redefining-list a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  color: #000;
  letter-spacing: 0.1px;
  transition: color 0.3s ease;
  padding-right: 40px;
  height: 30px;
}

.redefining-list a::before,
.redefining-list a::after {
  content: "";
  position: absolute;
  right: 0;         
  height: 2px;
  background: #000;
  transition: background 0.3s ease, transform 0.3s ease;
  transform-origin: right; 
}

.redefining-list a span {
  margin-left: 14px; 
}

.redefining-list a::before {
  top: -6px;
}
.redefining-list a::after {
  bottom: -6px;
}

.redefining-list a:nth-child(2)::before,
.redefining-list a:nth-child(2)::after { width: 80%; }
.redefining-list a:nth-child(3)::before,
.redefining-list a:nth-child(3)::after { width: 70%; }
.redefining-list a:nth-child(4)::before,
.redefining-list a:nth-child(4)::after { width: 60%; }
.redefining-list a:nth-child(5)::before,
.redefining-list a:nth-child(5)::after { width: 50%; }
.redefining-list a:nth-child(6)::before,
.redefining-list a:nth-child(6)::after { width: 40%; }
.redefining-list a:nth-child(7)::before,
.redefining-list a:nth-child(7)::after { width: 30%; }

.redefining-list a span {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 0 6px;
}

.redefining-list a:hover {
  color: #0077cc;
}

.redefining-list a:hover::before,
.redefining-list a:hover::after {
  transform-origin: right;
  transform: scaleX(1.03);
}

.redefining-label {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1px;
}

.redefining-timer {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.1px;
}

.redefining-list .num {
  font-size: 13px;
  font-weight: 500;
  color: #333;
}

.redefining-footer {
  margin-top: 20px; 
  text-align: center;
}

.redefining-footer p {
  font-size: 28px; 
  font-weight: 700; 
  letter-spacing: -1px; 
  color: #000;
  margin: 0;
}

.redefining-gallery {
  padding: 1px 40px 80px;
  background: #fff;
}

.redefining-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 1px;
}

.strip-item {
  margin: 0;
}

.strip-item .thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  background-color: #9e9e9e;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.strip-item .thumb:hover {
  transform: scale(1.02);
  filter: brightness(1.05);
}

.strip-item figcaption {
  margin-top: 8px;
  font-size: 11.5px;
  line-height: 1.3;
  letter-spacing: -0.4px;
  color: #111;
}

.strip-item .meta {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  gap: 6px 10px;
  align-items: baseline;
}

.strip-item .meta span:nth-child(1),  /* TITLE */
.strip-item .meta span:nth-child(3) { /* DATE */
  color: #000;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.strip-item .meta .dur {
  justify-self: end;
  font-weight: 700;
}

.strip-item .crew {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 10px;
  margin-top: 6px;
}

.strip-item .crew span:first-child {
  color: #000;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .redefining-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .redefining-strip {
    grid-template-columns: 1fr;
  }
}

/* RESPONSIVE PARA TABLETS Y CELULARES */
@media (max-width: 900px) {
  .redefining-header {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }

  .redefining-title {
    text-align: center;
  }

  .redefining-list a {
    font-size: 14px;
  }
}

  .stills { 
  padding: 40px 12px 0; 
}

.wide-hero {
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: 6px;
  background-color: #9e9e9e;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.stills { padding: 32px 12px 0; }
.stills .wide-hero + .stills-bar { margin-top: 8px; }
.stills .stills-bar + .wide-hero { margin-top: 8px; }

.stills-bar{
  background:#fff;
  padding: 10px 24px;         
  border: none;                
  border-radius: 0;
  display:grid;
  grid-template-columns: minmax(180px,1fr) minmax(320px,1.2fr) minmax(140px,1fr);
  align-items:center;          
  column-gap:16px;
}

.stills-bar .bar-left{
  justify-self:start; text-align:left;
}
.stills-bar .bar-left span{
  display:block;
  font-size:18px;
  line-height: 1.1;
  letter-spacing:-0.35px;
  font-weight:600;             
  text-transform:uppercase;
  color:#000;
}

.stills-bar .bar-center {
  justify-self: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 0; 
}

.stills-bar .bar-center strong{
  font-size:18px;
  line-height:1.02;
  letter-spacing:-0.35px;
  font-weight:600;
  text-transform:uppercase;
  color:#000;
}
.stills-bar .bar-center .sub{
  margin-top:2px;
  font-size:18px;
  line-height:1.02;
  letter-spacing:-0.35px;
  font-weight:600;             
  text-transform:uppercase;
  color:#000;
}

.stills-bar .bar-right{
  justify-self:end; 
  text-align:right;
}

.stills-bar .bar-right span{
  font-size:18px;
  line-height:1.02;
  letter-spacing:-0.45px;
  font-weight:600;
  text-transform:uppercase;
  color:#000;
}

.video-strip{
  margin-top: 24px;
  width: 100%;
  height: 220px;               
  background: #9e9e9e;         
  overflow: hidden;
}

.video-strip__media{
  width: 100%;
  height: 100%;
  object-fit: cover;           
  display: block;
  filter: saturate(1) contrast(1);
}

.timeline-showcase .numbers {
  display: flex;
  justify-content: space-around;
  width: 100%;             
  margin: 120px 0;      
  font-size: 16px;
  font-weight: 200;
  color: #111;
}

.timeline-showcase .timeline-image {
  width: 100vw;             
  margin: 0;                
  overflow: hidden;         
}

.timeline-showcase .timeline-image img {
  width: 100%;
  height: 600px;            
  object-fit: cover;        
  display: block;
  border-radius: 0;
}



/*ABOUT-EXPLORE PIE DE PAGINA*/
.about-explore{ 
  background:#fff; 
  padding: 80px 40px 100px; 
  margin-top: 0;
}

.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:#000;
  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:#111;
}
.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:#111; 
  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:#111;
  letter-spacing:-0.9px
}

.ae-address{
  margin: 0 0 28px;
  font-size: 14px; 
  line-height:1.6px; 
  color:#111;
  letter-spacing:-0.9px
}

.ae-mark{
  width: 360px; height: 18px;
  background:#111;
  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; 
}

/*TERMINA PIE DE PAGINA*/

/* TABLETS (768px - 1024px) */
@media (max-width: 1024px) {
  .navbar { 
    padding: 10px 20px; 
  }
  .menu { 
    gap: 10px; 
  }
  .creations-header h2 { 
    font-size: 28px; 
  }
  .creations-text { 
    font-size: 16px; 
    padding: 0 10px; 
  }

  .redefining-grid,
  .redefining-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  @media (max-width: 1024px) {
  .stills-bar .bar-center {
    text-align: center;
    align-items: center;
    margin-left: 0;
  }

  .stills-bar {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }

  .stills-bar .bar-left,
  .stills-bar .bar-right {
    text-align: center;
  }
  }

  .ae-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .timeline-showcase .timeline-image img {
    height: 400px;
  }
}

@media (max-width: 1024px) {
  .submenu { 
    display: none; 
  } 
  .has-sub.active > .submenu { 
    display: block; 
  }
}

/* CELULAR TRADICIONAL (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;
  }

  .creations-header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .creations-header h2 {
    text-align: center;
    width: 100%;
    justify-content: center;
    font-size: 22px;
    display: flex;
  }

  .creations-text {
    font-size: 14px;
    line-height: 1.3;
    padding: 0 16px;
  }

  .redefining-grid,
  .redefining-strip {
    grid-template-columns: 1fr;
  }


  .redefining-timer {
    position: static;
    text-align: center;
    margin-top: 20px;
    display: block;
    font-size: 13px;
  }

  .redefining-label {
    position: static;
    display: block;
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600; 
  }

  .redefining-list {
    padding-left: 0;
    align-items: center;
  }

  .redefining-list a {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}

.redefining-list a::before,
.redefining-list a::after {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: 70%;
}

.redefining-list a span {
  background: #fff;
  padding: 0 6px;
}

.redefining-label,
.redefining-timer {
  text-align: center;
  width: 100%;
}

  .stills-bar {
    grid-template-columns: 1fr;
    text-align: center;
    row-gap: 8px;
  }

  .timeline-showcase .numbers {
    font-size: 12px;
    margin: 60px 0;
  }

  .timeline-showcase .timeline-image img {
    height: 280px;
  }

  .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: all 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;

    background: rgba(255,255,255,0.45);
    backdrop-filter: blur(18px) saturate(160%);
    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;
    background: rgba(32, 31, 31, 0.45);
    backdrop-filter: blur(12px) saturate(180%);
    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 {
    overflow-y: auto;
  }

  body.has-menu-open {
    overflow-y: auto !important;
}
}

/*FIN DE BURGER*/

/* MENÚ MÓVIL */
@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;

    background: rgba(255,255,255,0.45);
    backdrop-filter: blur(8px) saturate(160%);
    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;
    background: rgba(80, 76, 76, 0.45);
    backdrop-filter: blur(110px) saturate(90%);
    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: #fff;
  }

  .submenu {
    display: none !important;
    flex-direction: column;
    gap: 10px;
  }

  .has-sub.active > .submenu {
    display: flex !important;
  }

  body {
    padding-top: 0px !important;
  }
}

