@import url('https://fonts.googleapis.com/css2?family=Sen&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Sen', sans-serif;
}

body {
    background: #fff url('img/background.png') center no-repeat;
}

.container {
    width: 95%;
    max-width: 1300px;
    margin: auto;
}

.__title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 80px 0;
}

.__title h1 {
    font-size: 50px;
    text-align: end;
    color: #163066;
    font-weight: 400;
}

.__title h1 span {
    font-weight: 600;
    color: #f7811e;
}

.__faixa {
    background-color: #182f65;
    border-radius: 20px;
    padding: 30px 20px;
    width: 1000px;
    margin: auto;
    margin-bottom: 80px;
    position: relative;
}

.__faixa::after {
    content: '';
    width: 250px;
    height: 8px;
    background-color: #f7811e;
    border-radius: 20px;
    position: absolute;
    bottom: -4px;
    left: 37%;
}

.__faixa * {
    color: #fff;
}

.__faixa ul {
    height: 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
}

.__faixa ul li {
    list-style: none;
}

.__faixa ul li::before {
    content: 'o';
    font-size: 12px;
    font-weight: 200;
    color: #f7811e;
    margin-right: 10px;
}

.__info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding-bottom: 33px;
}

.__info .__maps {}

.__info .__maps iframe {
    height: 310px;
    border-radius: 20px;
    border: solid 2px #f7811e !important;
    box-shadow: 0 0 15px #b7b7b7;
}

.__info .__txt h3 {
    font-size: 20px;
    font-weight: 600;
    color: #f7811e;
    padding-left: 30px;
    margin-bottom: 5px;
}

.__info .__txt h3.--local {
    background: url('img/local.png')no-repeat center left;
}

.__info .__txt h3.--tel {
    background: url('img/tel.png')no-repeat center left;
}

.__info .__txt a {
    display: flex;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    text-decoration: none;
    color: #414141;
    padding-left: 31px;
    transition: all 0.5s;
}

.__info .__txt a:hover {
    color: #f7811e;
}

.__info .__txt .__social {
    display: flex;
    margin-top: 35px;
}

.__info .__txt .__social img {
    transition: all 0.5s;
}

.__info .__txt .__social img:hover {
    scale: 1.1;
}

footer {
    width: 100%;
    height: 30px;
    background: #f7811e;
    color: #fff;
    font-size: 12px;
    font-weight: 200;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer img {
    height: 12px;
    margin-left: 5px;
    margin-bottom: -3px;
}

@media (max-width: 1290px) {
    .__title {
        gap: 25px;
    }

    .__title h1 {
        font-size: 40px;
    }

    .__faixa {
        width: 900px;
        padding: 20px;
    }

    .__faixa ul li {
        font-size: 14px;
    }

    .__info {
        gap: 25px;
        padding-bottom: 53px;
    }


    .__info .__maps iframe {
        width: 520px;
    }

    .__info .__txt h3 {
        font-size: 18px;
    }

    .__info .__txt a {
        font-size: 15px;
    }
}

@media (max-width: 1120px) {
    .__title h1 {
        font-size: 30px;
    }

    .__title .__logo img {
        width: 370px;
    }

    .__faixa {
        width: 800px;
        padding: 10px 15px;
    }

    .__faixa::after {
        left: 35%;
    }

    .__faixa ul li {
        font-size: 13px;
    }

    .__info {
        padding-bottom: 53px;
    }


    .__info .__maps iframe {
        width: 450px;
    }

    .__info .__txt h3 {
        font-size: 16px;
        background-size: 14px !important;
        padding-left: 20px;
    }

    .__info .__txt a {
        font-size: 14px;
        padding-left: 20px;
    }
}

@media (max-width: 915px) {
    .__title {
        flex-direction: column-reverse;
        padding: 0px;
        gap: 0;
    }

    .__title h1 {
        font-size: 25px;
        text-align: center;
        margin-bottom: 30px;
    }

    .__title .__logo img {
        width: 100%;
        max-width: 300px;
        padding-left: 18px;
    }

    .__faixa {
        width: 100%;
        margin-bottom: 40px;
    }

    .__faixa::after {
        display: none;
    }

    .__faixa ul {
        height: auto;
        gap: 5px;
        text-align: center;
    }

    .__info {
        flex-direction: column;
        padding-bottom: 0px;
    }

    .__info .__maps {
        width: 100%;
    }

    .__info .__maps iframe {
        width: 100%;
    }

    .__info .__txt h3 {
        font-size: 16px;
        background-size: 14px !important;
        padding-left: 20px;
    }

    .__info .__txt a {
        font-size: 14px;
        padding-left: 20px;
    }
}