/* fachada */

section#fachada {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-around;
    padding: 50px 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23F65D00"><path d="M0 0v4l594.5 84a1118.6 1118.6 0 0 0 311 0l94.5-13.3V0H0Z"></path></svg>');
    background-size: cover;
}

.imagem-fachada {
    max-width: 600px;
    box-shadow: rgba(240, 140, 46, 0.4) 5px 5px, rgba(240, 149, 46, 0.3) 10px 10px, rgba(240, 149, 46, 0.2) 15px 15px, rgba(240, 149, 46, 0.1) 20px 20px, rgba(240, 149, 46, 0.05) 25px 25px;
    border-radius: 5px;
}

section#fachada .textos {
    line-height: 1.8;
}

/* produtos */

section#produtos {
    display: flex;
    /* flex-direction: column; */
    justify-content: space-around;
    align-items: center;
    height: 80vh;
    position: relative;
    padding: 0 50px;
}

section#produtos .back-img {
    width: 100%;
    height: 100%;
    position: absolute;
}
section#produtos .back-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 102%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23F65D00"><path d="M0 0v4l594.5 84a1118.6 1118.6 0 0 0 311 0l94.5-13.3V0H0Z"></path></svg>');
    background-size: cover;
    background-repeat: no-repeat;
    transform: rotate(180deg);
}

section#produtos .slide {
    /* position: relative; */
    /* margin: auto; */
    height: auto;
}

.slide .img-slide {
    max-width: 500px;
    position: absolute;
    top: 0;
    left: 50px;
    border-radius: 20px;
    box-shadow: rgba(240, 140, 46, 0.4) -5px 5px, rgba(240, 149, 46, 0.3) -10px 10px, rgba(240, 149, 46, 0.2) -15px 15px, rgba(240, 149, 46, 0.1) -20px 20px, rgba(240, 149, 46, 0.05) -25px 25px;
    opacity: 0;
    transition: opacity .3s ease-in-out;
}

.slide .img-slide.ativa {
    opacity: 1;
}

section#produtos .textos {
    line-height: 2;
}

/* mapa */

section#mapa {
    background-color: #f65d00;
    padding: 50px;
    display: flex;
    justify-content: center;
}

section#mapa .map-box {
    position: relative;
    width: 900px;
    height: 500px;
    background-color: #fff;
}

.map-box iframe {
    width: 100%;
    height: 100%;
}