
:root {
  --yellow: #FFD600;
  --orange: #FF9800;
  --dark-orange: #F57C00;
  --white: #ffffff;
  --black: #0b0b0b;
  --gray-dark: #1a1a1a;
  --gray-medium: #333333;
  --gray-light: #555555;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}
/* ===== GLOW SIMPLE Y ELEGANTE ===== */
.nav {
    position: fixed;
    width: 100%;
    padding: 20px 0;
    background: rgba(11, 11, 11, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Borde con efecto neon sutil */
    border-bottom: 1px solid transparent;
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.1),
        0 1px 0 rgba(255, 214, 0, 0.1);
}

.nav::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 214, 0, 0.4),
        rgba(255, 214, 0, 0.8),
        rgba(255, 214, 0, 0.4),
        transparent
    );
    box-shadow: 0 0 20px rgba(255, 214, 0, 0.2);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.nav.scrolled::after {
    width: 90%;
    opacity: 0.8;
    box-shadow: 
        0 0 25px rgba(255, 214, 0, 0.3),
        0 0 50px rgba(255, 214, 0, 0.1);
}

/* Efecto glow en elementos activos */
.nav-links a.active {
    text-shadow: 0 0 10px rgba(255, 214, 0, 0.3);
}

.nav-links a.active .nav-indicator {
    box-shadow: 
        0 0 10px rgba(255, 214, 0, 0.7),
        0 0 20px rgba(255, 214, 0, 0.4),
        0 0 30px rgba(255, 214, 0, 0.2);
}
/* NAV - CORREGIDO */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 0;
  background: rgba(11, 11, 11, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav.scrolled {
  background: rgba(11, 11, 11, 0.98);
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo {
  height: 35px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 5px 0;
  transition: var(--transition);
  opacity: 0.8;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, var(--yellow), var(--orange));
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--yellow);
  opacity: 1;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--yellow);
  opacity: 1;
}

.nav-links a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  padding: 5px;
  border-radius: 4px;
}

.menu-toggle:hover {
  color: var(--yellow);
  background: rgba(255, 214, 0, 0.1);
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 214, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 152, 0, 0.1) 0%, transparent 50%),
    var(--black);
  padding-top: 70px; /* Compensar el nav fijo */
}

.hero-content {
  width: 90%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.5s; }
.title-line:nth-child(3) { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.8;
  margin-bottom: 40px;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 400px;
}

.visual-element {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.video-icon {
  background: linear-gradient(135deg, rgba(255, 214, 0, 0.2), rgba(255, 152, 0, 0.2));
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.camera-icon {
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.2), rgba(245, 124, 0, 0.2));
  top: 50%;
  right: 15%;
  animation-delay: 2s;
}

.film-icon {
  background: linear-gradient(135deg, rgba(245, 124, 0, 0.2), rgba(255, 214, 0, 0.2));
  bottom: 10%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0.7;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-10px) translateX(-50%); }
  60% { transform: translateY(-5px) translateX(-50%); }
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 16px 32px;
  background: linear-gradient(45deg, var(--yellow), var(--orange));
  color: var(--black);
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--orange), var(--yellow));
  transition: left 0.5s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 214, 0, 0.3);
}

.btn.dark {
  background: var(--black);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn.dark::before {
  background: linear-gradient(45deg, var(--gray-dark), var(--gray-medium));
}

.btn.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 214, 0, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255, 214, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 214, 0, 0); }
}

/* SECTIONS */
.section {
  padding: 100px 0;
  position: relative;
}

.section-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(45deg, var(--yellow), var(--orange));
  border-radius: 3px;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  opacity: 0.85;
  font-size: 1.1rem;
  line-height: 1.6;
}

.section.dark {
  background: var(--gray-dark);
}

.section.highlight {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--black);
}

/* ABOUT */
.about-content {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.about-text {
  flex: 1;
  text-align: left;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 1.1rem;
}

.about-highlight {
  background: rgba(255, 214, 0, 0.1);
  padding: 25px;
  border-radius: 15px;
  border-left: 4px solid var(--yellow);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ABOUT STATS */
.about-stats {
  display: flex;
  gap: 30px;
  flex: 1;
  justify-content: center;
  margin-top: 20px;
}

.stat {
  text-align: center;
  padding: 25px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  min-width: 180px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat:hover {
  transform: translateY(-10px);
  background: rgba(255, 214, 0, 0.08);
  border-color: rgba(255, 214, 0, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-icon {
  font-size: 2.2rem;
  color: var(--yellow);
  margin-bottom: 15px;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 214, 0, 0.1);
  border-radius: 50%;
  margin: 0 auto 15px;
}

.stat-label {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.stat-description {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.5;
  margin-top: 8px;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.card {
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 214, 0, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--yellow);
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.card p {
  opacity: 0.8;
  line-height: 1.6;
}

/* ===== GALERÍA SIMPLE ===== */
.hero-simple {
  padding: 100px 0 80px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 214, 0, 0.1), rgba(255, 152, 0, 0.05));
  margin-top: 90px;
}

.hero-simple-content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-simple-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--white);
  font-weight: 800;
}

.hero-simple-content p {
  font-size: 1.2rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.galeria-simple {
  padding: 60px 0 100px;
  background: var(--black);
}

.galeria-container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.projecto-item {
  margin-bottom: 80px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.projecto-item:last-child {
  margin-bottom: 0;
}

.projecto-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    var(--yellow), 
    transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.projecto-item:hover::before {
  opacity: 1;
}

.projecto-item:hover {
  border-color: rgba(255, 214, 0, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.video-container {
  background: #000;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.video-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 214, 0, 0.05), 
    transparent 30%);
  pointer-events: none;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* Relación 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  transition: transform 0.3s ease;
}

.projecto-item:hover .video-wrapper iframe {
  transform: scale(1.02);
}

.projecto-info {
  padding: 35px 40px;
}

.projecto-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
}

.descripcion {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 1.1rem;
  font-weight: 400;
}

.metadatos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.anio {
  background: linear-gradient(135deg, var(--yellow), var(--orange));  
  opacity: 90%;
  color: var(--black);
  padding: 8px 20px;
  border-radius: 15px;
  font-weight: 650;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 214, 0, 0.3);
  transition: all 0.3s ease;
}

.projecto-item:hover .anio {
  transform: scale(1.05);
}

.creadores {
  color: rgba(255, 255, 255, 0.603);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.creadores i {
  color: var(--yellow);
  font-size: 1.1rem;
}

/* Efecto de brillo en hover */
.projecto-item::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    transparent, 
    rgba(255, 214, 0, 0.1), 
    transparent);
  border-radius: 22px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

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

/* Responsive para galería */
@media (max-width: 1024px) {
  .hero-simple-content h1 {
    font-size: 3rem;
  }
  
  .projecto-info h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .hero-simple {
    padding: 150px 0 60px;
    margin-top: 80px;
  }
  
  .hero-simple-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-simple-content p {
    font-size: 1.1rem;
    padding: 0 20px;
  }
  
  .projecto-item {
    margin-bottom: 60px;
    border-radius: 15px;
  }
  
  .video-container {
    padding: 20px;
  }
  
  .projecto-info {
    padding: 25px;
  }
  
  .projecto-info h3 {
    font-size: 1.6rem;
  }
  
  .descripcion {
    font-size: 1rem;
  }
  
  .metadatos {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .creadores {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero-simple {
    padding: 140px 0 50px;
  }
  
  .hero-simple-content h1 {
    font-size: 2rem;
    padding: 0 15px;
  }
  
  .hero-simple-content p {
    font-size: 1rem;
  }
  
  .video-container {
    padding: 15px;
  }
  
  .projecto-info {
    padding: 20px;
  }
  
  .projecto-info h3 {
    font-size: 1.4rem;
  }
  
  .descripcion {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .anio {
    padding: 6px 15px;
    font-size: 0.85rem;
  }
  
  .creadores {
    font-size: 0.9rem;
  }
}

/* Animación de aparición para proyectos */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.projecto-item {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.projecto-item:nth-child(1) { animation-delay: 0.1s; }
.projecto-item:nth-child(2) { animation-delay: 0.2s; }
.projecto-item:nth-child(3) { animation-delay: 0.3s; }
.projecto-item:nth-child(4) { animation-delay: 0.4s; }
.projecto-item:nth-child(5) { animation-delay: 0.5s; }
.projecto-item:nth-child(6) { animation-delay: 0.6s; }

/* Estado cuando no hay proyectos */
.no-projects {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: rgba(255, 255, 255, 0.5);
}

.no-projects i {
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--yellow);
  opacity: 0.5;
}

.no-projects h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.gallery-cta {
  text-align: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  margin-top: 30px;
}

.gallery-cta p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  opacity: 0.8;
}

/* Colores de categorías específicas */
[data-category="curtmetratge"] .project-category {
  background: rgba(255, 107, 107, 0.15);
  color: #ff6b6b;
}

[data-category="documental"] .project-category {
  background: rgba(77, 171, 247, 0.15);
  color: #4dabf7;
}

[data-category="videoclip"] .project-category {
  background: rgba(169, 113, 247, 0.15);
  color: #a971f7;
}

[data-category="publicitat"] .project-category {
  background: rgba(255, 214, 0, 0.15);
  color: var(--yellow);
}

[data-category="animacio"] .project-category {
  background: rgba(102, 214, 135, 0.15);
  color: #66d687;
}

/* VALUES */
.values-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.value-item {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  transition: var(--transition);
}

.value-item:hover {
  background: rgba(255, 214, 0, 0.05);
  transform: translateY(-5px);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--yellow);
  margin-bottom: 20px;
}

.value-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* JOIN */
.join-subtitle {
  text-align: center;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px;
}

.join-benefits {
  max-width: 600px;
  margin: 0 auto 50px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.benefit i {
  font-size: 1.5rem;
  color: var(--black);
  min-width: 30px;
}

/* CONTACT */
.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
  margin-top: 50px;
}

.contact-info {
  text-align: left;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  transition: var(--transition);
}

.contact-item:hover {
  background: rgba(255, 214, 0, 0.05);
  transform: translateX(5px);
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--yellow);
  min-width: 30px;
}

.contact-item h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--white);
}

.contact-item p {
  opacity: 0.8;
}

/* SOCIAL LINKS */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
}

.social-links a:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-5px);
}

/* Tooltip para redes sociales */
.social-links a::after {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  pointer-events: none;
}

.social-links a:hover::after {
  opacity: 1;
  visibility: visible;
}

/* Colores específicos para cada red social */
.social-links a[aria-label="Instagram"]:hover {
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
  color: white;
}

.social-links a[aria-label="YouTube"]:hover {
  background: #FF0000;
  color: white;
}

.social-links a[aria-label="TikTok"]:hover {
  background: #000000;
  color: white;
}

.social-links a[aria-label="LinkedIn"]:hover {
  background: #0077B5;
  color: white;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--yellow);
  background: rgba(255, 255, 255, 0.08);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

/* FOOTER */
footer {
  padding: 50px 0;
  text-align: center;
  background: var(--gray-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  transition: var(--transition);
  text-decoration: none;
}

.footer-social a:hover {
  color: var(--yellow);
  transform: translateY(-3px);
}

.footer-links {
  margin-top: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin: 0 10px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--yellow);
}

/* MODAL PARA VER PROYECTO */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 11, 11, 0.95);
  backdrop-filter: blur(10px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 20px;
}

.modal-container {
  width: 100%;
  max-width: 1000px;
  max-height: 90vh;
  background: rgba(26, 26, 26, 0.95);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 214, 0, 0.2);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10001;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: var(--yellow);
  color: var(--black);
  transform: rotate(90deg);
}

.modal-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  max-height: 90vh;
}

@media (max-width: 768px) {
  .modal-content {
    grid-template-columns: 1fr;
    max-height: 95vh;
  }
}

.modal-video-container {
  padding: 20px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#modal-video {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}

.modal-info {
  padding: 30px;
  overflow-y: auto;
}

.modal-info h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--white);
}

.modal-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

#modal-category,
#modal-year {
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

#modal-category {
  background: rgba(255, 214, 0, 0.15);
  color: var(--yellow);
}

#modal-year {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

#modal-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.modal-creators {
  background: rgba(255, 214, 0, 0.05);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 25px;
  border-left: 3px solid var(--yellow);
}

.modal-creators h3 {
  font-size: 1rem;
  color: var(--yellow);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-creators ul {
  list-style: none;
  padding-left: 0;
}

.modal-creators li {
  color: rgba(255, 255, 255, 0.8);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-creators li i {
  color: var(--yellow);
  font-size: 0.9rem;
}

.modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.modal-actions .btn {
  flex: 1;
  text-align: center;
}

/* LANDING PAGE MINIMALISTA */
.landing-minimal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 11, 11, 0.85);
  backdrop-filter: blur(5px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.landing-card {
  background: rgba(26, 26, 26, 0.95);
  border-radius: 12px;
  padding: 25px;
  max-width: 450px;
  width: 90%;
  border: 1px solid rgba(255, 214, 0, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease;
}

.landing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 214, 0, 0.2);
}

.landing-header h3 {
  color: var(--yellow);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.close-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.8rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border-radius: 50%;
}

.close-btn:hover {
  color: var(--yellow);
  background: rgba(255, 214, 0, 0.1);
  transform: rotate(90deg);
}

.cine-fact {
  background: rgba(255, 214, 0, 0.08);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
}

#cineFactText {
  font-size: 1.1rem;
  line-height: 1.5;
  color: white;
  font-style: italic;
  margin: 0;
}

.simple-info {
  margin-bottom: 25px;
}

.simple-info p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.simple-info i {
  color: var(--yellow);
  width: 20px;
  text-align: center;
}

.simple-btn {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  text-align: center;
  border-radius: 8px;
}

.no-show-option {
  margin-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.no-show-option input {
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .about-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .about-stats {
    width: 100%;
    justify-content: space-around;
  }
  
  .projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(11, 11, 11, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    gap: 25px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }
  
  .hero-text {
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-visual {
    height: 300px;
  }
  
  .visual-element {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .contact-container {
    gap: 40px;
  }
  
  .about-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat {
    min-width: 100%;
  }
  
  .gallery-filters {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 10px;
  }
  
  .filter-btn {
    white-space: nowrap;
  }
  
  .modal-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cards {
    grid-template-columns: 1fr;
  }
  
  .values-container {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .landing-card {
    padding: 15px;
  }
  
  .cine-fact {
    padding: 15px;
  }
  
  .simple-info p {
    font-size: 0.9rem;
  }
}

/* Animaciones */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { 
    opacity: 0;
    transform: translateY(20px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enlaces en tarjetas */
.card-link {
  display: inline-block;
  margin-top: 15px;
  color: var(--yellow);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  opacity: 0.8;
}

.card-link:hover {
  opacity: 1;
  transform: translateX(5px);
}

/* CTA en sección de proyectos */
.section-cta {
  text-align: center;
  margin-top: 50px;
}

/* RESET ESPECÍFICO PARA NAV - IMPORTANTE */
header.nav,
.nav,
.nav * {
  background-color: rgba(11, 11, 11, 0.95) !important;
  background: rgba(11, 11, 11, 0.95) !important;
}

/* Asegurar que no haya bordes rojos */
.nav-container,
.nav-links,
.nav-links a,
.menu-toggle {
  border-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Color específico para el nav */
.nav {
  background-color: #0b0b0b !important;
  background: #0b0b0b !important;
}