@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');


* {
    margin-right: 0;
    margin-left: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    width: 100%;
}

header {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding: 36px;
}

nav {
    display: flex;
    align-items: center;
    justify-content: center;
 gap: 80px;
}

nav a {
   
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
}



.icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px;
}

main {
    background-image: url('./imagens/main.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: end;
    padding-right: 58px;
}

.caixa {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgba(255, 243, 227, 1);
    width: 550px;
    height: 480px;
    padding-top: 10px;
}

.caixa h1 {
    display: flex;
    align-items: center;
    justify-content: start;
    padding-left: 50px;
    margin-bottom: -40px;
    width: 100%;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 3px;
    font-size: 16px;
}

.caixa h2 {
    font-family: "Poppins", sans-serif;
    color: rgba(184, 142, 47, 1);
    font-weight: 700;
    font-style: normal;
    width: 450px;
    font-size: 52px;
}

.caixa p {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    width: 80%;
    margin-top: -20px;
}

.caixa button {
    width: 150px;
    height: 50px;
    font-family: "Poppins", sans-serif;
    color: rgba(184, 142, 47, 1);
    font-weight: 700;
    border: none;
    background-color: rgba(184, 142, 47, 1);
    margin-left: -290px;
    margin-top: 30px;
}

.caixa button a {
    color: white;
    font-family: "Poppins", sans-serif;
}

.inicio {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 50px;
}

.inicio h1 {
    font-size: 32px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.inicio p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-top: -15px;
}

.inicio img {
    width: 350px;
    margin: 5px;
}

.categorias {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 290px;
    margin-bottom: 150px;
}

.categorias h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 24px;
}

.produtos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    height: 400px;
    margin-bottom: 150px;
}

.produtos h1{
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 30px;
}


.coluna1 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.coluna1 img {
    width: 250px;
    margin: 10px;
}

.coluna2{
    display: flex;
    align-items: start;
    justify-content: start;
}

.coluna2 img{
    margin: 10px;
    width: 250px;
}

.cards{
    display: flex;
    align-items: center;
    justify-content: center;
}

.card{
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    margin: 15px;
    background-color: rgba(240, 240, 240, 1);
}

.card img{
    width: 250px;
}

.card p{
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding-left: 15px;
}

.card h1{
    font-size: 20px;
    padding-left: 15px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.card h2{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
    padding-left: 15px;
}

.produtos button{
    width: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding-top: 50px;
    border: 1.5px solid rgba(184, 142, 47, 1);
    background-color: transparent;
    cursor: pointer;
    transition: all ease 1s;
}

.produtos button a{
    margin-bottom: 50px;
    color: rgba(184, 142, 47, 1);
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 16px;
    transition: 1s all ease;
}

.produtos button:hover{
    background-color: rgba(184, 142, 47, 1);
    color: white;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;

    & a {
        color: white;
    }
}

.carrossel2{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.car img{
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: end;
    height: 100vh;
}

.carrossel2 h1{
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 35px;
    width: 400px;
}

.carrossel2 p{
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: rgb(93, 93, 93);
    width: 400px;
    padding-bottom: 30px;
}

.carrossel2 button{
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding-top: 50px;
    border: 1.5px solid rgba(184, 142, 47, 1);
    background-color: transparent;
    cursor: pointer;
    transition: all ease 1s;
}

.carrossel2 button a{
    margin-bottom: 50px;
    color: rgba(184, 142, 47, 1);
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 16px;
    transition: 1s all ease;
}

.carrossel2 button:hover {
    width: 180px;
    background-color: rgba(184, 142, 47, 1);
    color: white;
    transition: 1s;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;

    & a {
        color: white;
    }
}

.carrossel {
    background-color: rgba(252, 248, 243, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 700px;
    width: 100%;
    padding-left: 5%;
 
}

.blabla img{
    display: flex;
    align-items: end;
    justify-content: end;
}
.share {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 50px;
    padding-bottom: 50px;
}

.share img {
    width: 100%;
}

.share h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: rgb(93, 93, 93);
}

.share h2 {
    margin-bottom: 50px;
    color: rgb(0, 0, 0);
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 35px;
}

.line {
    margin-top: 50px;
    width: 100%;
    border: 1.5px solid rgb(222, 222, 222);
  }
  
  footer {
  
    display: flex;
    flex-direction: column;
  }
  
  footer .footerContent .firstLine {
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin-left: 5%;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 14px;
  }
  
  footer .footerContent {
    display: flex;
    gap: 10%;
  }
  
  footer .footerContent .firstLine h1 {
    font-size: 24px;
    margin-bottom: 50px;
    color: black;
    padding-top: 30px;
  }
  
  footer .footerContent .firstLine h4 {
    font-weight: 400;
    font-size: 12px;
    width: 250px;
    color: #9f9f9f;
    margin-top: -20px;
  }
  
  footer .footerContent .firstLine h5 {
    font-weight: 400;
    margin-top: -18px;
    color: #9f9f9f;
    font-size: 12px;
  }
  
  footer .footerContent .secondLine {
    display: flex;
    flex-direction: column;
    margin-top: 36px;
    padding-left: 120px;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 12px;
  }
  footer .footerContent .secondLine h3 {
    font-weight: 450;
  }
  
  footer .footerContent .secondLine .slT1 {
    color: #9f9f9f;
    margin-bottom: -10px;
  }
  
  footer .footerContent .thirdLine {
    display: flex;
    flex-direction: column;
    margin-top: 36px;
    padding-left: 180px;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 12px;
  }
  
  footer .footerContent .thirdLine h3 {
    font-weight: 450;
  }
  
  footer .footerContent .thirdLine .tlT1 {
    color: #9f9f9f;
    margin-bottom: -10px;
  }
  footer .footerContent .fourthLine {
    display: flex;
    flex-direction: column;
    margin-top: 36px;
    padding-left: 120px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 12px;
  }
  
  footer .footerContent .fourthLine h3 {
    color: #9f9f9f;
    font-size: 14px;
  }
  
  footer .footerContent .fourthLine .flT2 input {
    color: #9f9f9f;
    border: none;
    border-bottom: 1.5px solid black;
    margin-top: 14px;
  }
  footer .footerContent .fourthLine .flT2 button {
    background-color: #fff;
    margin-left: 10px;
    border: none;
    border-bottom: 1.5px solid black;
    margin-top: 14px;
    cursor: pointer;
  }
  
  .line2 {
    display: flex;
    margin-left: 5%;
    margin-top: 50px;
    width: 90%;
    border: 1.5px solid rgb(222, 222, 222);
  }
  
  footer .posFooter {
    font-size: 12px;
    margin-left: 5%;
    margin-bottom: 40px;
  }
  
  footer .posFooter h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
  }