
* {
    margin: 0;
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}


body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 1300px;
    background: linear-gradient(
        to bottom,
        rgba(60, 110, 85, 1) 0%,
        rgba(50, 90, 70, 1) 50%,
        rgba(38, 71, 52, 1) 100%
    );
}


#header_pag1 {
    background-color: #264734;
    width: 100%;
    height: 100px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    opacity: 0.95;
    flex-wrap: wrap;
}

#logo_site {
    max-width: 150px;
    height: 100px;
}


.container_itens {
    display: flex;
    gap: 30px;
    flex-wrap: wrap; 
    justify-content: center;
}

.container_itens a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    position: relative;
}

.container_itens a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.container_itens a:hover::after {
    width: 100%;
}


.header-icons {
    display: flex;
    gap: 20px;
    font-size: 20px;
    margin-right: 40px;
}

.header-icons a svg {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.header-icons a {
    width: 26;
    height: 26;
    fill: white;
}

.header-icons a:hover svg {
    transform: scale(1.2);
    fill: #00ffcc;
}


@media (max-width: 768px) {
    #header_pag1 {
        height: auto; 
        padding: 10px;
    }

    #logo_site {
        max-width: 120px;
    }

    .container_itens a {
        font-size: 16px; 
        margin: 5px 0;
    }

    .header-icons svg {
        width: 20px;
        height: 20px;
    }
}


@media (max-width: 480px) {
    #header_pag1 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .container_itens {
        gap: 15px;
    }
}


.container {
    width: 100%;
    max-width: 500px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.container h1 {
    text-align: center;
    color: #264734;
    margin-bottom: 25px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-weight: bold;
    color: #264734;
}


input,
textarea,
select {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: 0.2s;
    font-family: "Quicksand", sans-serif;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #264734;
    box-shadow: 0 0 5px rgba(38, 71, 52, 0.4);
}

textarea {
    resize: none;
    height: 120px;
}


button {
    background: #654321;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #1d3527;
    color: white;
}

.pedido {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}

.produto-img {
  width: 120px;
  border-radius: 8px;
  margin-right: 20px;
}

.info h2 {
  margin: 0 0 8px;
  color: #264734;
}

.info p {
  margin: 5px 0;
}

.info input {
  width: 60px;
  padding: 5px;
  margin-left: 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.resumo {
  margin-top: 30px;
  text-align: right;
}

.resumo h2 {
  margin-bottom: 15px;
  color: #264734;
}

.resumo p {
  margin: 5px 0;
}

.resumo button {
  margin-top: 15px;
  padding: 12px 20px;
  background: #5a3825;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.resumo button:hover {
  background: #3c2416;
}

.produto-header {
  background: #254d3c;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.produto-logo {
  height: 50px;
}

.produto-header nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 600;
  transition: 0.3s;
}

.produto-header nav a:hover {
  color: #d4af37;
}

.produto-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.produto-detalhes {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.produto-detalhes-img {
  width: 350px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.produto-info {
  flex: 1;
}

.produto-titulo {
  margin: 0 0 15px;
  color: #264734;
}

.produto-descricao {
  margin-bottom: 20px;
  color: #444;
  line-height: 1.5;
}

.produto-preco {
  font-size: 18px;
  margin-bottom: 15px;
}

#qtdProduto {
  width: 70px;
  padding: 6px;
  margin: 10px 0 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.produto-btn {
  display: inline-block;
  padding: 12px 20px;
  background: #5a3825;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.produto-btn:hover {
  background: #3c2416;
}

.produto-accordion {
  margin-top: 25px;
  border-top: 1px solid #ddd;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  color: #5a3825;
}

.accordion-header::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 18px;
}

.accordion-header.active::after {
  content: "−";
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 15px;
}

.accordion-content p,
.accordion-content ul {
  margin: 15px 0;
  color: #444;
  line-height: 1.4;
}

.voltar-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  color: #2f4f4f;
  text-decoration: none;
  margin-bottom: 20px;
  transition: 0.3s;
}

.voltar-btn:hover {
  color: #1c3131;
  transform: translateX(-3px);
}

.voltar-seta {
  font-size: 18px;
}
