header {
    background: linear-gradient(to right, var(--cor-menu), #888);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    font-family: 'Segoe UI', sans-serif;
  }
  
  header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  }
  
  header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
  }
  
  .logopltaformas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
  }
  
  .logopltaformas span {
    background-color: rgba(229, 225, 205, 0.6);
    padding: 10px 15px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: bold;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: black;
    white-space: nowrap;
  }
  
  .btn-maisvendidos {
    background: linear-gradient(to right, rgb(131, 215, 131), rgb(251, 251, 91));
    color: #000;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  }
  
  .btn-maisvendidos:hover {
    background-color: #e0a800;
    color: #fff;
  }
  