* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', sans-serif;
  background: #141414;
  color: #fff;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background: rgba(0,0,0,0.8);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
}
.header .logo {
  font-size: 1.6rem; font-weight: 800; color: #e50914;
}
.header .logo span { color: #fff; }
.header nav a {
  margin: 0 1rem; text-decoration: none;
  color: #ddd; font-weight: 600;
}
.header nav a:hover { color: #fff; }

.hero {
  height: 70vh;
  background: url("https://m.media-amazon.com/images/I/71niXI3lxlL._AC_SY679_.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 3rem;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #141414, transparent);
}
.hero-content {
  position: relative;
  max-width: 500px;
  z-index: 1;
}
.hero-content h1 { font-size: 3rem; margin-bottom: 1rem; }
.hero-content p { margin-bottom: 1rem; }
.hero-content button {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  margin-right: 0.6rem;
  cursor: pointer;
}
.hero-content button:first-child {
  background: #fff; color: #000;
}
.hero-content .btn-sec {
  background: rgba(109,109,110,0.7);
  color: #fff;
}

.catalog {
  margin-top: -4rem;
  padding: 2rem 3rem;
}
.catalog h2 {
  margin: 1.5rem 0;
  font-size: 1.4rem;
}

.row {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-behavior: smooth;
}
.row::-webkit-scrollbar { display: none; }

.movie-card {
  min-width: 140px;  /* menor largura */
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .2s;
}
.movie-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.movie-card:hover {
  transform: scale(1.1);
  z-index: 10;
}
.movie-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .3s;
}
.movie-card:hover .movie-overlay {
  opacity: 1;
}
.movie-overlay button {
  background: #e50914;
  border: none; padding: .5rem 1rem;
  border-radius: 4px; color: #fff;
  font-weight: bold; cursor: pointer;
}

.footer {
  text-align: center;
  padding: 2rem;
  color: #888;
  background: #000;
  margin-top: 2rem;
}
