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

body {
  background-color: #00081d;
  font-family: sans-serif;
  max-width: 100%;
  color: #fff;
}

/* Header */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0;
}

.dsflix-logo img {
  width: 150px;
}

/* Idioma + botão */
.language-change {
  display: flex;
  align-items: center;
  gap: 15px;
}

.language-change select {
  font-size: 16px;
  padding: 5px 10px;
  border-radius: 5px;
  border: none;
}

.enter-button {
  background-color: #ff0000;
  color: #fff;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.enter-button:hover {
  background-color: #cc0000;
}

/* Banner */
.secao-container {
  display: flex;
  justify-content: center;
  align-items: left;
  margin: 0 auto;
  padding: 100px 200px;
  width: 90%;
}

.banner-filmes {
  background-image: url("img/background-dsflix.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  box-shadow:
    inset 200px -190px 400px 30px rgba(73, 1, 9, 0.6),
    inset 200px -190px 400px 30px rgba(31, 0, 34, 0.4),
    inset 200px -190px 400px 30px rgba(21, 2, 35, 0.4);
  text-align: left;
  flex-direction: column;
  padding: 100px 60px;
}

/* Texto do banner */
.secao-banner-texto {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.secao-banner-texto h1 {
  font-size: 50px;
  line-height: 1.2;
}

.secao-banner-texto h2 {
  font-size: 24px;
  font-weight: 400;
}

.secao-banner-texto p {
  font-size: 18px;
  margin-top: 10px;
}

/* Formulário de e-mail */
.form-email {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.form-email input {
  flex: 1;
  min-width: 250px;
  height: 50px;
  padding: 0 15px;
  border-radius: 5px;
  background-color: #201015cc;
  border: #ffffff31 solid;
  color: #fff;
}

.form-email button {
  background-color: #ff0000;
  border: none;
  border-radius: 5px;
  padding: 10px 25px;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.form-email button:hover {
  background-color: #cc0000;
}

/* Texto informativo */
.texto-informativo-1 {
  color: #fff;
  text-align: center;
  padding: 100px 40px;
  background-color: #000;
  width: 100%;
  margin-top: 50px;
}

.texto-assine-dsflix {
  max-width: 800px;
  margin: 0 auto;
}

.texto-assine-dsflix h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.texto-assine-dsflix p {
  font-size: 18px;
  line-height: 1.5;
}

/* Responsividade */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 20px;
  }

  .banner-filmes {
    padding: 120px 20px;
    text-align: center;
  }

  .secao-banner-texto h1 {
    font-size: 32px;
  }

  .form-email {
    flex-direction: column;
    width: 90%;
    height: 100px;
    margin: 0 auto;
   
  }

  .form-email button {
    width: 70%;
    margin: 0 auto;
  }

}
