@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;
   

} 

.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;
}


.titulo {
    text-align: center;
    padding: 40px 20px 20px;
}

.titulo h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 42px;
    color: #051029;
}

.titulo p {
    font-size: 18px;
    color: #333;
}


.produtos-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px;
}

.produto-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.1);
    max-width: 350px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
}

.produto-card:hover {
    transform: translateY(-5px);
    box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
    
}



.produtos-container img{
    object-fit: contain;
    border-radius: 20px;
    width: 100%;
    border-radius: 50px;
    height: 390px;
    object-fit: cover;
}

.produto-card h2 {
    font-size: 20px;
    margin: 15px 0 10px;
}

.preco {
    font-size: 18px;
    color: #d4a94e;
    font-weight: bold;
    margin-bottom: 10px;
}

.produto-card p {
    font-size: 14px;
    color: #555;
}


.btn {
    display: inline-block;
    background-color: #d4a94e;
    color: #051029;
    padding: 10px 20px;
    margin-top: 15px;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.3s ease;
    border: 3px solid #051029;
}

.btn:hover {
    border: 3px solid #b48230;
    background-color: #b88c3a;
    background: #051029;
    color: #D6A04C;
    border-color: #D6A04C;
}



.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;
  }
 