* {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  line-height: 1.5;
  scroll-behavior: smooth;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #000;
  background-color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #000;
  color: #fff;
  padding: 8px;
  text-decoration: none;
  z-index: 1000;
}
.skip-link:focus {
  top: 6px;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 150;
  padding: 0 1rem;
}
.header .hamburger-menu {
  position: absolute;
  right: 1rem;
}
.logo-imagen {
  height: 50px;
  width: auto;
  max-width: 50px;
  vertical-align: middle;
}
.logo {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: #000;
  text-decoration: none;
  transition: color .2s ease;
}
.logo:hover {
  color: #666;
}
.logo:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}
.container {
  display: flex;
  min-height: 100vh;
  padding-top: 60px;
  flex: 1;
}
.sidebar {
  width: 280px;
  padding: 2rem 1.5rem;
  border-right: 1px solid #e5e5e5;
  background-color: #fff;
  position: fixed;
  height: calc(100vh - 60px);
  top: 60px;
  left: 0;
  overflow-y: auto;
  z-index: 100;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .3s ease;
}
.sidebar.active {
  transform: translateX(0);
}
.navigation {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}
.nav-item {
  display: flex;
  flex-direction: column;
}
.nav-item h2 {
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .05em;
  margin-bottom: .5rem;
  color: #000;
}
.nav-item a {
  color: #000;
  text-decoration: none;
  transition: all .2s ease;
  display: block;
  padding: .25rem 0;
}
.nav-item a:hover {
  color: #666;
  transform: translateX(2px);
}
.nav-item a:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}
.nav-item a.active {
  color: #000;
  font-weight: 600;
}
.sub-nav {
  margin-left: 1rem;
  margin-top: .5rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.sub-nav h3 {
  font-size: .75rem;
  font-weight: 300;
  letter-spacing: .025em;
  color: #666;
}
.sub-nav a:hover h3 {
  color: #000;
}
.sub-nav a.active h3 {
  color: #000;
  font-weight: 400;
}
.content {
  flex: 1;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-content {
  max-width: 800px;
  width: 100%;
}
.page-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .025em;
  margin-bottom: 2rem;
  color: #000;
}
.section {
  margin-bottom: 3rem;
}
.section-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .025em;
  margin-bottom: 1.5rem;
  color: #000;
}
.text-content {
  font-size: .875rem;
  line-height: 1.7;
  color: #000;
}
.text-content p {
  margin-bottom: 1.25rem;
}
.text-content strong {
  font-weight: 600;
}
.image-container {
  margin: 2rem 0;
}
.image-container.centered {
  display: flex;
  justify-content: center;
}
.main-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform .3s ease;
}
.main-image:hover {
  transform: translateY(-2px);
}
.film-cover {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.index-cover {
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.film-header {
  margin-bottom: 2rem;
}
.film-info {
  font-size: .875rem;
  color: #666;
  margin-top: .5rem;
}
.video-container {
  margin: 2.5rem 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.gallery-image {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform .3s ease;
}
.cast-crew p {
  margin-bottom: .75rem;
  font-size: .8rem;
  line-height: 1.6;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-item h3 {
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .025em;
  margin-bottom: .5rem;
  color: #000;
}
.contact-item p {
  font-size: .875rem;
  color: #000;
}
.contact-item a {
  color: #000;
  text-decoration: underline;
  transition: color .2s ease;
}
.contact-item a:hover {
  color: #666;
}
.contact-item a:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}
.footer {
  background-color: #fff;
  border-top: 1px solid #e5e5e5;
  padding: 1.5rem 0;
  text-align: center;
  font-size: .75rem;
  color: #666;
  margin-top: auto;
  width: 100%;
}
.footer a {
  color: #000;
  text-decoration: underline;
  transition: color .2s ease;
}
.footer a:hover {
  color: #666;
}
.footer a:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}
.hamburger-menu {
  display: block;
  cursor: pointer;
  background: transparent;
  padding: .75rem;
  border: none;
}
.hamburger-menu:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}
.hamburger-menu span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px 0;
  background-color: #000;
  transition: all .3s ease;
  transform-origin: center;
}
.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.overlay {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100vh - 60px);
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
}
.overlay.active {
  display: block;
}
@media (max-width: 1024px) {
  .content {
    padding: 2rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .content {
    padding: 1.5rem;
    align-items: stretch;
  }
  .page-title {
    font-size: 1.25rem;
  }
  .image-gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .main-image {
    max-width: 100%;
  }
  .film-cover {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .content {
    padding: 1rem;
  }
  .page-title {
    font-size: 1.125rem;
  }
  .text-content {
    font-size: .8rem;
  }
  .cast-crew p {
    font-size: .75rem;
  }
  .header {
    padding: 0 .5rem;
  }
  .logo-imagen {
    height: 40px;
    max-width: 40px;
  }
}
a:focus,
button:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}
@media print {
  .sidebar,
  .hamburger-menu,
  .footer {
    display: none;
  }
  .content {
    margin-left: 0;
    padding: 0;
  }
}
