* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #000; 
  color: #000;
  min-height: 100vh;
  display: flex;
  justify-content: center;
}

.app {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 420px;
  min-height: 100vh;
  background-color: #000; 
  border-radius: 40px;
  overflow: hidden;
}

.top-bar {
  background-color: #d2c6da; 
  border-radius: 60px 60px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px; 
  font-weight: 600;
}

.top-bar h1 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.5px;
}

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

.nav-links a {
  text-decoration: none;
  color: #000;
  font-size: 0.95em;
  font-weight: 500;
}

.nav-links a.active {
  border-bottom: 2px solid #000;
}

.menu-btn {
  display: none;
  font-size: 1.5em;
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #d2c6da; 
  text-align: center;
}

.mobile-menu a {
  padding: 10px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #000;
}

.mobile-menu.open {
  display: flex;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .menu-btn {
    display: block;
  }
}

@media (min-width: 769px) {
  .menu-btn, 
  .mobile-menu {
    display: none;
  }
}

.filmoteca {
  background-color: #fff;
  color: #000;
  border-radius: 40px;
  padding: 40px 30px;
  text-align: center;
  margin: 60px 20px; 
}

.filmoteca h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.intro {
  font-size: 15px;
  color: #000;
  margin-bottom: 30px;
}

.scroll-container {
  display: flex;
  justify-content: center;
}

.peliculas {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  margin: 0;
  scroll-snap-type: x mandatory;
}

.pelicula {
  flex: 0 0 auto;
  width: 150px;
  text-align: center;
  scroll-snap-align: start;
}

.pelicula img {
  width: 150px;
  height: 225px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s;
}

.pelicula img:hover {
  transform: scale(1.05);
}

.contenedor-peliculas {
  overflow: hidden;
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: border-box;
}

.pelicula h3 {
  font-size: 14px; 
  font-weight: 600;
  margin-top: 2px;
}

.pelicula p {
  font-size: 12px;
  font-weight: 400;
  color: #000;
  margin-top: 1px;
}

.actrices {
  background-color: #d2c6da;
  border-radius: 60px 60px 0 0;
  padding: 40px 30px;
  text-align: center;
}

.actrices h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.actrices .intro {
  font-size: 15px;
  color: #333;
  margin-bottom: 30px;
}

.galeria {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.actriz {
  width: 150px;
  text-align: center;
  flex-shrink: 0;
}

.actriz img {
  width: 150px;
  height: 225px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s;
}

.actriz img:hover {
  transform: scale(1.05);
}

.actriz p {
  margin-top: 2px;
  font-weight: 700;
  font-size: 13px; 
  color: #000;
}




