* {
    box-sizing: border-box;
    padding: 0;
    border: none;
    margin: 0;
}

body {
    background-image: url("../images/1.png");
    background-size: cover;
}

header {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 13px;
}

header img {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px ;
}

main {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
    height: 100vh;
    width: 100%;
}

.links-header {
    margin-bottom: 20px;
    margin-top: 100px;
}

.logo-header {
    margin-top: 40px;
}

.links-header img, .links-header-pros img {
    border: 5px solid rgb(149 44 71);
    border-radius: 100%;
    box-shadow: 0px 0px 10px #570f0f;
}

.links-header-pros {
    margin-top: 5px;
    margin-bottom: 20px;
}

.local-novo img {

    border-radius: 15px;
    box-shadow: 0px 0px 10px #570f0f;
}

.local-novo {
    margin-top: 15px;
    margin-bottom: 20px;
}

.link-insta {
    font-size: 25px;
    margin-bottom: 20px;
}

.link-insta a {
    text-decoration: none;
    color: #9b2d49;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    margin-right: 5px;
}

.link-insta-pros a {
    font-size: 17px;
}

.instagram-profile {
    display: flex;
    align-items: center;
}

.links-boxes {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.accordion {
    background: #5f2534;
    font-family: "Montserrat", sans-serif;
    color: #ffe9d4;
    cursor: pointer;
    padding: 18px;
    width: 80%;
    border: none;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    text-align: center;
    border-radius: 7px;
    text-transform: capitalize;
    font-weight: bolder;
    
}
 
.accordion:hover {
    background: linear-gradient(-90deg, #9b2d49, #5f2534);
    width: 95%;
}

.box-seven .accordion {
    background: linear-gradient(90deg, #ff6c00, #ff0047);
    color: aliceblue;
}

.panel {
    padding: 0 20px;
    background-color: rgb(255, 253, 253);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    width: 80%;
}

.panel p {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: normal;
    font-style: normal;
    padding: 6px;
}

.about-pro {
    overflow: auto;
}

.click-box {
    margin-bottom: 20px;
    display: flex;
    width: 90%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.services-list {
    font-size: 14px;
    font-family: sans-serif;
    margin-left: 25px;
    font-weight: 600;
    padding: 10px;
    list-style: disc;
}

.services-list li {
    margin-bottom: 5px;
}

.snw {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

iframe.small-map {
    display: none;
}

iframe.large-map {
    display: block;
}

.whatsmsg{
    margin-top: 25px;
}

a.wppbtn {
    display: flex;
    align-items: center;
    background: #055100;
    padding: 16px;
    border-radius: 5px;
    color: aliceblue;
    align-content: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    text-decoration: none;
}

a.wppbtn p {
    font-size: 18px;
    font-weight: 500;
}

a.wppbtn i {
    font-size: 23px;
}

@media screen and (max-width: 1920px) {
    iframe.small-map {
        display: none;
    }
    iframe.large-map {
        display: none;
    }
    iframe.ultra-large-map {
        display: block;
    }
}

@media screen and (max-width: 1150px) {
    iframe.small-map {
        display: none;
    }
    iframe.large-map {
        display: block;
    }
    iframe.ultra-large-map {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .accordion {
        width: 90%;
    }
    .panel {
        width: 90%;
    }
    iframe.small-map {
        display: block;
    }
    iframe.large-map {
        display: none;
    }
    iframe.ultra-large-map {
        display: none;
    }
}