/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    text-align: center;
    padding: 20px;
  }
  
  a {
    text-decoration: none;
  }
  
  /* Container principal */
  .container {
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Títulos */
  h1 {
    font-size: 26px;
    color: #333;
    margin-bottom: 20px;
  }
  
  .highlight {
    color: red;
    font-weight: bold;
  }
  
  /* Seção de vídeo */
  .video-section img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
  }
  
  .watch-btn {
    display: block;
    width: 80%;
    max-width: 300px;
    margin: 20px auto;
    padding: 15px;
    font-size: 18px;
    color: white;
    background-color: #1e5a80;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .watch-btn:hover {
    background-color: #16455f;
  }
  
  /* Conteúdo */
  .content {
    text-align: left;
    padding: 20px;
  }
  
  .warning {
    font-size: 18px;
    color: red;
    font-weight: bold;
    text-align: center;
    margin-top: 15px;
  }
  
  /* Logos */
  .logo {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
  }
  
  .logo img {
    width: 100%;
    max-width: 800px;
    height: auto;
  }
  
  /* Rodapé */
  footer {
    text-align: center;
    padding: 1rem;
    background: #f8f8f8;
    margin-top: 20px;
  }
  
  footer p {
    color: #777;
    font-size: 14px;
  }
  
  footer nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0;
    margin-top: 10px;
  }
  
  footer nav ul li {
    display: inline;
  }
  
  footer nav ul li a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
  }
  
  footer nav ul li a:hover {
    text-decoration: underline;
  }
  
  /* Disclaimer e notas de afiliados */
  .disclaimer-section {
    text-align: justify;
    padding: 20px;
    background: #fff;
    margin-top: 20px;
    font-size: 12px;
    color: #555;
    line-height: 1.5;
  }
  
  .affiliate-disclosure, .affiliate-note {
    font-size: 12px;
    color: #555;
    margin-top: 10px;
    padding: 10px;
    background: #f9f9f9;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .container {
        padding: 15px;
    }
  
    h1 {
        font-size: 22px;
    }
  
    .watch-btn {
        width: 90%;
        font-size: 16px;
    }
  
    .logos img {
        max-width: 200px;
    }
  
    .content {
        padding: 15px;
    }
  
    .disclaimer-section {
        font-size: 11px;
    }
  
    footer nav ul {
        flex-direction: column;
        gap: 5px;
    }
  }
  
     
  
    /* Estilização para a Política de Privacidade */
  .privacy-section {
      max-width: 800px;
      margin: 0 auto;
      padding: 1.5rem;
      font-size: 1rem;
      color: #333;
      line-height: 1.6;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    .privacy-section h2 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: #444;
      text-transform: capitalize;
      border-bottom: 2px solid #e6e6e6;
      padding-bottom: 0.5rem;
    }
    
    .privacy-section p, .privacy-section ul {
      margin-bottom: 1rem;
    }
    
    .privacy-section ul {
      padding-left: 1.5rem;
      list-style-type: disc;
    }
    
    .privacy-section a {
      color: #007bff;
      text-decoration: none;
    }
    
    .privacy-section a:hover {
      text-decoration: underline;
    }
    
    /* Footer Navigation */
    footer {
      text-align: center;
      padding: 1rem;
      background: #f8f8f8;
    }
    
    footer nav ul {
      list-style: none;
      display: flex;
      justify-content: center;
      gap: 1rem;
      padding: 0;
    }
    
    footer nav ul li a {
      color: #007bff;
      text-decoration: none;
      font-weight: 600;
    }
    
    footer nav ul li a:hover {
      text-decoration: underline;
    }
    
  
    /* Estilização para a página de Termos de Serviço */
  .terms-section {
      max-width: 800px;
      margin: 0 auto;
      padding: 1.5rem;
      font-size: 1rem;
      color: #333;
      line-height: 1.6;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    .terms-section h2 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: #444;
      text-transform: capitalize;
      border-bottom: 2px solid #e6e6e6;
      padding-bottom: 0.5rem;
    }
    
    .terms-section p, .terms-section ul {
      margin-bottom: 1rem;
    }
    
    .terms-section ul {
      padding-left: 1.5rem;
      list-style-type: disc;
    }
    
    .terms-section a {
      color: #007bff;
      text-decoration: none;
    }
    
    .terms-section a:hover {
      text-decoration: underline;
    }
    
    /* Footer Navigation */
    footer {
      text-align: center;
      padding: 1rem;
      background: #f8f8f8;
    }
    
    footer nav ul {
      list-style: none;
      display: flex;
      justify-content: center;
      gap: 1rem;
      padding: 0;
    }
    
    footer nav ul li a {
      color: #007bff;
      text-decoration: none;
      font-weight: 600;
    }
    
    footer nav ul li a:hover {
      text-decoration: underline;
    }
    
  
    /* Estilização para a página de contato */
  .contact-section {
      max-width: 800px;
      margin: 0 auto;
      padding: 1.5rem;
      font-size: 1rem;
      color: #333;
      line-height: 1.6;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      text-align: center;
    }
    
    .contact-section h2 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
      color: #444;
    }
    
    .contact-section p {
      margin-bottom: 2rem;
    }
    
    /* Estilização do formulário de contato */
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      text-align: left;
    }
    
    .contact-form label {
      font-weight: bold;
      color: #555;
    }
    
    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 0.8rem;
      font-size: 1rem;
      border: 1px solid #ccc;
      border-radius: 6px;
      background: #f9f9f9;
    }
    
    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: #007bff;
      outline: none;
      background: #fff;
    }
    
    .contact-form button {
      padding: 0.8rem 1.5rem;
      font-size: 1.1rem;
      color: #fff;
      background-color: #007bff;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-weight: bold;
      text-transform: uppercase;
    }
    
    .contact-form button:hover {
      background-color: #0056b3;
    }
    
    /* Informações de contato */
    .contact-info {
      margin-top: 2rem;
      font-size: 1rem;
      color: #666;
    }
    
    .contact-info a {
      color: #007bff;
      text-decoration: none;
    }
    
    .contact-info a:hover {
      text-decoration: underline;
    }
    
    /* Footer Navigation */
    footer {
      text-align: center;
      padding: 1rem;
      background: #f8f8f8;
    }
    
    footer nav ul {
      list-style: none;
      display: flex;
      justify-content: center;
      gap: 1rem;
      padding: 0;
    }
    
    footer nav ul li a {
      color: #007bff;
      text-decoration: none;
      font-weight: 600;
    }
    
    footer nav ul li a:hover {
      text-decoration: underline;
    }
    
    .affiliate-disclosure, .affiliate-note {
      font-size: 0.4rem;
      color: #555;
      margin-top: 1rem;
      padding: 0.5rem;
      background: #f9f9f9;
    }
    