/* Login */
.login-page {
    background-color: #3e2c23;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .login-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }
  
  .login-container h2 {
    margin-bottom: 20px;
    color: #3e2c23;
  }
  
  .login-container input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .login-container button {
    width: 100%;
    padding: 12px;
    background-color: #3e2c23;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  /* Pagamento */
  .pagamento-page {
    background-color: #fdfdfd;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
  }
  
  .pagamento-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .pagamento-container h1 {
    margin-bottom: 20px;
    color: #3e2c23;
  }
  
  .pagamento-container form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
  }
  
  .pagamento-container form input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .pagamento-container button {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .botao-voltar {
    display: block;
    margin-top: 20px;
    text-align: center;
    background-color: #3e2c23;
    color: white;
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
  }
  
  .metodo-pagamento {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  
  .metodo-pagamento button {
    flex: 1;
    margin: 0 5px;
    padding: 10px;
    background-color: #3e2c23;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  .metodo-pagamento {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  
  .metodo-pagamento button {
    flex: 1;
    margin: 0 5px;
    padding: 10px;
    background-color: #3e2c23;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  /* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Fonte e cores principais */
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fdfdfd;
    color: #2e2b2b;
  }
  
  /* Cabeçalho */
  header {
    background-color: #3e2c23;
    color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  header h1 {
    font-size: 28px;
  }
  
  nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  nav a:hover {
    color: #a1866f;
  }
  
  /* Grade de produtos */
  .produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 30px 40px;
  }
  
  /* Card de produto */
  .produto-card {
    background-color: #fff;
    border-left: 5px solid #3e2c23;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
  }
  
  .produto-card:hover {
    transform: scale(1.02);
  }
  
  .produto-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #3e2c23;
  }
  
  .produto-card p {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  /* Botões de ação */
  .botoes {
    display: flex;
    gap: 10px;
  }
  
  .botoes button {
    background-color: #3e2c23;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .botoes button:hover {
    background-color: #a1866f;
  }
  
  .produto-card .descricao {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
  }
  
  .produto-card .preco {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
  }
  