/* style.css */

:root {
  --primary-color: #000000;
  --secondary-color: #00bfff;
  --dark-bg: #0a0f1c;
  --light-bg: #ffffff;
  --text-color: #ffffff;
  --accent-color: #00c3ff;
}

.menu {
  margin-top: 40px;
  background-color: #0a0f1c;
  color: #fff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.menu .logo {
  font-weight: bold;
  color: #fff;
}

.menu .menu-toggle {
  font-size: 26px;
  background: none;
  border: none;
  color: #fff;
  display: none;
  cursor: pointer;
}

.menu-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.menu-links li a {
  color: #ccc;
  text-decoration: none;
  font-weight: 300;
  transition: 0.3s;
}

.menu-links li a:hover,
.menu-links li a.ativo {
  color: #009cff;
}

/* Responsivo */
@media (max-width: 768px) {
  .menu .menu-toggle {
    display: block;
  }

  .menu-links {
    width: 100%;
    flex-direction: column;
    display: none;
    margin-top: 10px;
  }

  .menu-links.active {
    display: flex;
  }

  .menu-links li {
    padding: 10px 0;
    border-top: 1px solid #222;
  }
}

.menu-links .submenu {
  display: none;
  position: absolute;
  background-color: #0a0f1c;
  list-style: none;
  margin: 0;
  padding: 0;
  top: 100%;
  left: 0;
  z-index: 99;
  border-radius: 4px;
  min-width: 160px;
}

/* Itens dentro do submenu */
.menu-links .submenu li a {
  display: block;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
}

/* Hover sobre o item com submenu */
.menu-links .has-submenu {
  position: relative;
}

.menu-links .has-submenu:hover .submenu {
  display: block;
}

/* Hover dentro do submenu */
.menu-links .submenu li a:hover {
  background-color: #00bcd4;
  color: #000;
}

.menu-links-estilizado {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 40px 0;
}

.menu-links-estilizado a {
  text-decoration: none;
  padding: 10px 18px;
  background-color: #007bff;
  color: #fff;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}

.menu-links-estilizado a:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.faixa-contador {
  display: block;
  width: 100%;
  background-color: yellow;
  color: black;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  padding: 5px 0;
  height: 30px;
  line-height: 20px;
  overflow: hidden;
  white-space: nowrap;
}
.faixa-contador:hover {
  background-color: #ffd700;
  color: #000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--dark-bg);
  color: var(--text-color);
  line-height: 1.6;
}

 * {
      box-sizing: border-box;
    }

    .faixa-servicos {
      background-color: #ffeb3b;
      background-image: 
        linear-gradient(45deg, rgba(255,235,59,0.2) 25%, transparent 25%, transparent 75%, rgba(255,235,59,0.2) 75%),
        linear-gradient(-45deg, rgba(255,235,59,0.2) 25%, transparent 25%, transparent 75%, rgba(255,235,59,0.2) 75%);
      background-size: 40px 40px;
      padding: 10px 20px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 8px;
    }

    .bloco {
      padding: 6px 12px;
      background-color: #fdd835; /* Mais escuro */
      border-radius: 4px;
      font-weight: bold;
      color: #333;
      transition: transform 0.2s ease;
      font-size: 14px;
    }

    .bloco:nth-child(even) {
      background-color: #fff176; /* Mais claro */
    }

    .bloco:hover {
      transform: translateY(-5px);
    }

    @media (max-width: 480px) {
      .bloco {
        font-size: 12px;
        padding: 5px 10px;
      }
    }

.botao-ciano {
  background-color: #00bcd4; /* Ciano */
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-family: sans-serif;
  transition: all 0.3s ease;
  display: inline-block;
}



.botao-ciano:hover {
  background-color: white;
  color: #00bcd4;
  border: 2px solid #00bcd4;
}

.pagina-acessorias {
  font-family: Arial, sans-serif;
  background-color: #f3f3f3;
  padding: 40px;
}

.bloco-formulario-acessorias {
  background-color: #ffffff;
  max-width: 500px;
  margin: auto;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.titulo-formulario {
  text-align: center;
  color: #333;
}

.formulario-acessorias label {
  display: block;
  margin-top: 15px;
  color: #333;
}

.formulario-acessorias input,
.formulario-acessorias select,
.formulario-acessorias textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #aaa;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 14px;
}

.botao-enviar-acessorias {
  margin-top: 20px;
  background-color: #00bcd4;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

.botao-enviar-acessorias:hover {
  background-color: #0097a7;
}

.autores-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px;
}

.autor {
  flex: 1 1 150px;
  max-width: 200px;
  min-height: 100px;
  background-color: white;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  padding: 10px;
  box-sizing: border-box;
  border-bottom: 6px solid #0a0a12;
}

.autor.destaque {
  background-color: #d3d6dc;
}

.imagem-banner {
  max-width: 100%;
  overflow: hidden;
}

.imagem-banner img {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 0.3s ease, brightness 0.3s ease;
}

/* Clarear ao passar o mouse */
.imagem-banner img:hover {
  filter: brightness(1.2);
}

.quadro-contato-filme {
  max-width: 620px;
  margin: 40px auto;
  padding: 30px;
  background-color: #fdfdfd;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-family: Arial, sans-serif;
  box-shadow: 0 0 12px rgba(0,0,0,0.05);
  color: #333;
}

/* Título */
.titulo-contato-filme {
  text-align: center;
  font-size: 24px;
  margin-bottom: 25px;
  color: #333;
}

/* Inputs gerais */
.formulario-solicitacao-filme label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

.formulario-solicitacao-filme input[type="text"],
.formulario-solicitacao-filme select,
.formulario-solicitacao-filme textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 18px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  box-sizing: border-box;
  color: #333;
}

/* Radio buttons */
.grupo-opcao {
  margin-bottom: 8px;
  font-weight: bold;
}

.linha-radio {
  margin-bottom: 20px;
}

.linha-radio input[type="radio"] {
  margin-right: 5px;
  margin-left: 10px;
  accent-color: #00bcd4;
}

/* Botão */
.botao-finalizar-filme {
  background-color: #00bcd4;
  color: #fff;
  padding: 12px 25px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

.botao-finalizar-filme:hover {
  background-color: #0097a7;
}

/* Responsivo */
@media (max-width: 600px) {
  .quadro-contato-filme {
    padding: 20px;
  }
}

nav {
    background-color: #333;
    padding: 15px;
    text-align: center;
  }

  .menu-link {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-family: sans-serif;
    transition: color 0.3s ease;
  }

  .menu-link:hover {
    color: #00bcd4; /* Ciano */
  }
  
  .menu {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 10px;
  color: white;
}

.oferta-box {
  background-color: #0a0f1c;
  color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  max-width: 300px;
  margin: auto;
  font-family: Arial, sans-serif;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.oferta-box .preco {
  font-size: 1.6em;
  margin: 0;
  font-weight: bold;
  color: #00bcd4;
}

.oferta-box .condicao {
  font-size: 0.95em;
  margin-top: 8px;
}

.botao-lancamentos {
  display: inline-block;
  background-color: #00bcd4
  ; /* ciano */
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.botao-lancamentos:hover {
  background-color: white;
  color: #00bcd4; /* ciano */
}

.botao-comprar {
  display: inline-block;
  margin-top: 15px;
  background-color: #00bcd4;
  color: #0a0f1c;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.botao-comprar:hover {
  background-color: #00a0b3;
}

.video-container {
  width: 100%;
  max-width: 800px;
  margin: auto;
  padding: 10px;
  box-sizing: border-box;
}

.video-container video {
  width: 100%;
  height: auto;
  border: 1px solid #d3d3d3; /* cinza claro */
  border-radius: 8px;
  display: block;
}

.botoes-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    font-family: sans-serif;
  }

  .botao-compra {
    display: block;
    background-color: #0097a7;
    color: white;
    border-radius: 8px;
    width: 300px;
    padding: 20px;
    box-sizing: border-box;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }

  .botao-compra:hover {
    background-color: #00bcd4;
  }

  .botao-compra h3,
  .botao-compra p,
  .botao-compra small {
    margin: 5px 0;
    text-align: center;
  }

  .botao-compra h3 {
    margin-bottom: 10px;
  }

  .botao-compra small {
    display: block;
    font-size: 12px;
    color: #e0f7fa;
    margin-top: 10px;
  }
  
  .audio-container {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 40vh;
    }
	
	.container {
      display: flex;
      justify-content: center;
      padding: 40px;
    }

    .imagem-topo-arredondado {
      border-top-left-radius: 8px;
      border-top-right-radius: 8px;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
      width: 100%;
      max-width: 600px;
      display: block;
    }
	
	.barra-topo {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #00bcd4; /* ciano */
  color: white;
  font-size: 14px;
  text-align: center;
  padding: 6px 10px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.barra-topo a {
  background-color: yellow;
  color: black;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
  text-decoration: none;
}

    .audio-box {
      background: #ffffff;
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 8px 20px rgba(0, 188, 212, 0.2);
      text-align: center;
      transition: all 0.3s ease;
    }

    .audio-box h3 {
      margin-top: 0;
      color: #00bcd4;
      font-size: 20px;
      margin-bottom: 15px;
    }

    audio {
      width: 300px;
      border-radius: 8px;
      outline: none;
    }

    /* Remove bordas feias em alguns navegadores */
    audio::-webkit-media-controls-panel {
      background-color: #f0f8fb;
      border-radius: 8px;
    }

    audio:hover::-webkit-media-controls-panel {
      background-color: #e0f4f8;
    }

.frase-pequena {
  font-size: 12px;
  color: #ffffff; /* ou a cor que desejar */
}

header {
  background: var(--light-bg);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--primary-color);
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

.whatsapp-button {
  background: var(--accent-color);
  color: #000;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.whatsapp-button:hover {
  background: var(--primary-color);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 60px 40px;
  background: 
    linear-gradient(145deg, #0a0f1c, #121a2f),
    url('bg.png') no-repeat center center;
  background-size: cover;
  background-blend-mode: overlay; /* Faz a imagem ficar "apagada" */
}

.hero-text {
  flex: 1 1 400px;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.cta {
  background: var(--accent-color);
  color: #000;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 20px;
  font-weight: bold;
}

.hero-image img {
  width: 100%;
  max-width: 400px;
}

section {
  padding: 60px 40px;
  background-color: var(--light-bg);
  border-top: 1px solid #222;
}

h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--primary-color);
  text-align: center;
}

.container-banner {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
	  font-size: 20px;
    }

    #bannerAudiobook {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
    }

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background: #1a233b;
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  padding: 25px;
  max-width: 300px;
  flex: 1 1 250px;
  transition: transform 0.3s;
}

font-family: Arial, sans-serif;
      background-color: #f5f5f5;
      padding: 30px;
    }

    .form-container {
      background-color: white;
      padding: 20px;
      border-radius: 15px;
      max-width: 400px;
      margin: auto;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    .form-container h2 {
      text-align: center;
      color: #333;
    }

    label {
      display: block;
      margin-top: 15px;
      font-weight: bold;
    }

    input[type="text"],
    input[type="file"] {
      width: 100%;
      padding: 10px;
      margin-top: 5px;
      border: 1px solid #7d7d7d;
      border-radius: 10px;
    }

    .info {
      font-size: 12px;
      color: #666;
      margin-top: 5px;
    }

    button {
      margin-top: 20px;
      width: 100%;
      padding: 12px;
      background-color: #00bcd4;
      color: white;
      border: none;
      border-radius: 10px;
      font-size: 16px;
      cursor: pointer;
    }

    button:hover {
      background-color: #00a2b3;
    }

    .mensagem {
      text-align: center;
      margin-top: 20px;
      font-weight: bold;
    }

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.portfolio .videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.portfolio iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 10px;
}

.processo ul {
  list-style: none;
  padding-left: 0;
  max-width: 800px;
  margin: auto;
}

.processo li {
  background: #1c2944;
  margin-bottom: 15px;
  padding: 15px;
  border-left: 5px solid var(--accent-color);
}

.contato p {
  margin-bottom: 15px;
  text-align: center;
}

footer {
  text-align: center;
  padding: 20px;
  background: var(--light-bg);
  border-top: 2px solid var(--primary-color);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-text, .hero-image {
    max-width: 100%;
  }
  .card {
    max-width: 100%;
  }
}