* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Merriweather', serif;
}

.Fone{
    display: flex;

}

.Fone i{
    margin-right: 8px;
}

body {
    background-color: #3a2c003b;
    height: 100vh;
}

.interface {
    max-width: 1280px;
    margin: 0 auto;
}

.flex {
    display: flex;
}

.carousel-item{
    display: flex;
}

span{
    color: #d39259;
}


a{
    text-decoration: none;
    color: #d39259;
}

.btn-social button {
    width: 40px;
    height: 40px;
    border-radius: 40%;
    border: none;
    background-color: #d39259;
    font-size: 22px;
    cursor: pointer;
    margin: 0 6px;
    transition: .2s;
}

/* Cabeçalho */

header {
    padding: 10px 4%;
    border-bottom: solid #000000;
}

li a :hover{
    box-shadow: 0px 0px 8px #0000009c;
    transform: scale(1.05);
}

header>.interface {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header a {
    color: #000000;
    text-decoration: none;
    display: inline-block;
    transition: .2s;
}

header nav a:hover {
    color: #000000;
    transform: scale(1.05);
}

header nav ul {
    list-style-type: none;
    font-size: 20px;

}

header nav ul li {
    display: inline-block;
    padding: 0 30px;
}

/* Topo Site */

section.topo {
    padding: 20px 4%;
}

section.topo .flex {
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.topo h1 {
    color: #000000;
    font-size: 34px;
    line-height: 33px;
}

.topo .txt-topo p {
    color: #000000;
    margin: 70px 0;
    text-align: justify;
}

ul li:hover{
    border: solid;
    border-color: #000000c7;
    border-radius: 20px;
    transition: .2s;

}

/* Produtos */

section.Produtos {
    padding: 20px 4%;
}

section.Produtos .flex {
    gap: 60px;
}

.p-produto{
    color: #ffffff;
}

.container-slide{
    display: flex;
    width: 100%;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
}

.container-img{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 400px;
}
.slider{
    opacity: 0;
    transition: opacity .2s;
    position: absolute;
    width: 100%;
    border-radius: 20px;
}

#arr{
    color: #000;
}

.on{
    opacity: 1;
}

#prev-button, #next-button:hover{
    box-shadow: none;
}

#prev-button, #next-button{
    width: 30px;
    height: 30px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    margin: 20px;
}
#prev-button img, #next-button img{
    width: 100%;
    height: 100%;
}

.Titulo{
    color: #000000;
}



#next-button{
    transform: rotate(180deg);
    margin-right: 40px;
}
/* Sobre */

section.Sobre {
    padding: 40px 4%;
}

section.Sobre .flex {
    align-items: center;
    gap: 60px;
}

.Sobre .txt-sobre {
    color: #000000;

}

.Sobre .txt-sobre h2 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 30px;
}

.Sobre .txt-sobre h2 span {
    color: #d39259;
    display: block;
}

.Sobre .txt-sobre p {
    margin: 20px 0;
    text-align: justify;
}



/* Form */

section.form {
    padding: 110px 4%;
}

form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
}

form input,
form textarea {
    width: 100%;
    background-color: #333333dc;
    border: 0;
    outline: 0;
    padding: 20px 15px;
    border-radius: 15px;
    color: #ffffff;
    font-size: 18px;
}

form textarea {
    resize: none;
    max-height: 200px;
}

form .btn-enviar {
    margin-top: 20px;
    text-align: center;
}

form .btn-enviar input {
    width: 120px;
    background-color: #d39259;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
}

button:hover,
form .btn-enviar input:hover {
    box-shadow: 0px 0px 8px #d39259;
    transform: scale(1.05);
}

h2.titulo {
    color: #ffffff;
    font-size: 34px;
    text-align: center;
}

/* roda pe*/


footer {
    padding: 10px 4%;
}

footer .btn-social{
    margin-top: 15PX;
    margin-left: -9PX;
    display: flex;
}


footer .flex {
    justify-content: space-between;
}

footer .line-footer {
    padding: 20px 0;
    border-top: 2px solid #000000;
}

.borda {
    border-top: 2px solid #000000;
}

footer .line-footer p i {
    color: #ffffff;
    font-size: 22px;
}

footer .line-footer p a {
    color: #ffffff;
    margin: 8px;
}

.Fone{
    color: #ffffff;
}

/* Media query */

@media (max-width: 1010px) and (min-width: 300px){
    header nav ul li{
        display: block;
        margin-top: 7px;
    }


}