.elementor-1692 .elementor-element.elementor-element-f558af2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1692 .elementor-element.elementor-element-65f49dc{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}body.elementor-page-1692:not(.elementor-motion-effects-element-type-background), body.elementor-page-1692 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://velo-uk.com/wp-content/uploads/2024/08/Netflix-continua-escondendo-plano-basico-sem-anuncios-da-pagina-de-assinaturas.webp");}@media(max-width:767px){.elementor-1692 .elementor-element.elementor-element-548d3a9 > .elementor-widget-container{margin:227px 0px 0px 0px;}.elementor-1692 .elementor-element.elementor-element-a482db2 > .elementor-widget-container{margin:162px -47px 0px -11px;}}/* Start custom CSS for html, class: .elementor-element-548d3a9 *//* Menu fixo no topo */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Fundo semi-transparente */
  padding: 10px 20px;
  display: flex;
  justify-content: space-between; /* Espaço entre a logo, menu e ícone da pesquisa */
  align-items: center;
  z-index: 1000;
}

.navbar .logo {
  color: #e50914; /* Vermelho Netflix */
  font-size: 32px;
  font-weight: bold;
}

.navbar .menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar .menu ul li {
  margin-left: 20px;
}

.navbar .menu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

/* Ícone da lupa */
.search-icon {
  display: block; /* Exibe a lupa em telas maiores */
}

.search-icon i {
  color: #fff;
  font-size: 24px;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column; /* Alinha a logo e o menu verticalmente */
    align-items: center; /* Centraliza o conteúdo */
    padding: 10px; /* Ajuste no padding */
  }

  .navbar .logo {
    font-size: 28px; /* Tamanho da logo para celular */
    text-align: center; /* Centraliza a logo no celular */
    margin-left: 0; /* Remove o margin para a logo no celular */
  }

  .navbar .menu {
    display: none; /* Esconde o menu completo em telas pequenas */
  }

  .search-icon {
    display: none; /* Esconde a lupa em telas menores */
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a482db2 *//* Resetando margens e preenchimentos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: url('https://via.placeholder.com/1600x900') no-repeat center center fixed; /* Background estilo Netflix */
    background-size: cover;
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.container {
    background: rgba(0, 0, 0, 0.7); /* Fundo escuro com transparência */
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #E50914; /* Cor vermelha Netflix */
    color: white;
    padding: 15px 30px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #f40612;
}

input[type="email"] {
    padding: 15px;
    font-size: 1rem;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 20px;
    border: none;
}

.interactive-text {
    font-size: 1.2rem;
    margin-top: 30px;
    font-weight: 600;
}

.interactive-text a {
    color: #E50914;
    text-decoration: none;
}/* End custom CSS */