@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@font-face {
    font-family: cursiva;
    src: url(Amoresa.ttf);
}
*{margin: 0;
    box-sizing: border-box;
}
body{
    
    background-color:#FFE6C3 ;
    font-family: "Poppins", sans-serif;
   }

#pag1 { 
    background-image: url(fundo1.jpg);
    background-blend-mode: multiply;
    background-size: cover;
    height:20vh;
   

} 
.logo{

}
.pesquise{
    background-color: #FFE6C3;
    border: none;
    border-radius: 20px;
    padding: 10px 15px;
}
.retangulo{
    display: flex;
    background-color: rgb(5 16 35);
    padding: 0.5rem;
    flex: 2rem;
    align-items: center;
    justify-content: space-evenly;
    
}


.esquerda{
    margin-left: 190px;
}

.btnih{
    color: #b48230;
    text-decoration: none;
    font-size: 0.75rem;
    padding-left: 40px;
}

.btni{
    color: #FFE6C3;
    text-decoration: none;
    font-size: 0.75rem;
    padding-left: 40px;
}
.btni:hover{
    color: #b48230;
}


.container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 50px;
  gap: 40px;
}

.produto-img {
  flex: 1;
}

.produto-img img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
}

.produto-info {
  flex: 1;
}

.produto-info h1 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #0a1a35;
}

.produto-info p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.produto-info ul {
  margin: 15px 0;
  padding-left: 20px;
}

.preco {
  font-size: 24px;
  font-weight: bold;
  margin: 20px 0;
  color: #c07f2e;
}


.btns {
  display: flex;
  gap: 15px;
}

.btns button {
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
}

.btn-comprar {
  background-color: #c07f2e;
  color: white;
}

.btn-carrinho {
  background-color: #0a1a35;
  color: white;
}

.btns button:hover {
  opacity: 0.9;
}


@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .produto-img img {
    max-width: 100%;
  }

  .produto-info {
    text-align: center;
  }

  .btns {
    justify-content: center;
  }
}

.nome_rodapé{
    font-family:"Poppins", sans-serif ;
}



.site-footer {
    margin-top: 380px;
    background: #0f1724;
    color: #FFE6C3;
    font-family: Arial, sans-serif;
  }
  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 1rem;
  }
  .brand {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  .brand .logo {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: #051023;
    display: grid;
    place-items: center;
    font-weight: bold;
    color: #7dd3fc;
  }
  .links {
    margin-top: 1rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .links a {
    color: #94a3b8;
    text-decoration: none;
  }
  .links a:hover {
    color: #b48230;
  }
  .aside {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .newsletter {
    display: flex;
    gap: 0.5rem;
  }
  .newsletter input {
    flex: 1;
    padding: 0.6rem;
    border-radius: 8px;
    border: 1px solid #222;
    background: #071126;
    color: inherit;
  }
  .newsletter button {
    padding: 0.6rem 0.8rem;
    border-radius: 30px;
    border: 3px solid #FFE6C3;
    background: #D6A04C;
    color: #042029;
    font-weight: bold;
    cursor: pointer;
  }
  .newsletter button:hover{
    background: transparent;
    color: #D6A04C;
    border-color: #D6A04C;
}
  
  
  .social {
    display: flex;
    gap: 0.5rem;
  
  }
  .social a {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    color: #b48230;
    text-decoration: none;
  }
  .bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1rem;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .legal a {
    color: #b48230;
    margin-left: 0.75rem;
    text-decoration: none;
  }
  .legal a:hover {
    color: #7dd3fc;
  }
 