/* Reset Básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f4f4f9;
  color: #333;
  line-height: 1.6;
}

/* Cabeçalho */
header {
  background-color: #1a1a1a;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 1.8rem;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #e50914;
}

/* SlideShow */
.slideshow-container {
  position: relative;
  max-width: 100%;
  height: 400px;
  overflow: hidden;
  background-color: #000;
}

.slide {
  display: none;
  height: 100%;
}

.slide-content {
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 20px;
}

.slide-content h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.slide-content p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 0 3px 3px 0;
  user-select: none;
  transition: 0.3s;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: #e50914;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* Secção de Filmes */
.secction-filmes {
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.secction-filmes h2, .secction-contacto h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #1a1a1a;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border-top: 4px solid #e50914;
}

.card h3 {
  margin-bottom: 10px;
  color: #1a1a1a;
}

/* Formulário de Contacto */
.secction-contacto {
  background-color: #fff;
  padding: 3rem 2rem;
  max-width: 700px;
  margin: 2rem auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.campo {
  margin-bottom: 1.2rem;
}

.campo label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.campo input, .campo textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.campo input:focus, .campo textarea:focus {
  outline: none;
  border-color: #e50914;
}

.botoes {
  display: flex;
  gap: 15px;
}

button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.btn-enviar {
  background-color: #e50914;
  color: white;
}

.btn-enviar:hover {
  background-color: #b20710;
}

.btn-limpar {
  background-color: #6c757d;
  color: white;
}

.btn-limpar:hover {
  background-color: #5a6268;
}

/* Rodapé */
footer {
  background-color: #1a1a1a;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  margin-top: 2rem;
}