* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Oswald", sans-serif;

}

html,
body {
    height: 100%;
}

.container {
    max-width: 1240px;
    padding: 0 2%;
    margin: 0 auto;
}

.btn {
    margin-top: 10px;
    width: 140px;
    height: 50px;
    background: linear-gradient(to top, #27187e, #27187e, #23487f);
    color: #fff;
    border-radius: 50px;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.btn span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: top 0.5s;
}

.btn-text-one {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.btn-text-two {
    position: absolute;
    width: 100%;
    top: 150%;
    left: 0;
    transform: translateY(-50%);
}

.btn:hover .btn-text-one {
    top: -100%;
}

.btn:hover .btn-text-two {
    top: 50%;
}



header {
    backdrop-filter: saturate(180%) blur(20px);
    position: fixed;
    z-index: 10;
    width: 100%;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: rgba(255, 125, 0, 0.8);
    border-bottom: 1px solid #27187e;
}

header a {
    text-decoration: none;
}

.logo {
    font-size: 32px;
    color: white;
    font-weight: 400;
}

.logo strong {
    color: #27187e;
}

.icons i {
    font-size: 22px;
    margin: 0 5px;
    cursor: pointer;
    transition: 0.7s;
}

.icons i:hover {
    font-size: 28px;
}

.nav-desktop a {
    color: white;
    font-size: 20px;
    font-weight: normal;
    margin: 0 10px;
}

.nav-desktop a:hover {
    color: #27187e;
    border-bottom: 1px solid #27187e;
}

.nav-mobile {
    cursor: pointer;
    width: 40px;
    height: 40px;
    z-index: 100;
    color: black;
    display: none;
    background-image: url('/images/menu.png');
    background-size: cover;
}

.nav-mobile ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 35px;
    left: 0;
    width: 100%;
    height: auto;
    margin-top: 30px;
    background-color: #27187e;
    text-align: center;
    border-bottom: 2px solid white;
    border-top: 2px solid white;
}

.nav-mobile ul a {
    padding: 10px 0;
    color: white;
    font-size: 20px;
}

.nav-mobile ul a:hover {
    background-color: #5d41e8;
    color: #ff7d00;
}

.nav-mobile .btn {
    margin: 20px auto;
}


.section-1 {
    width: 100%;
    padding: 140px 0;
}

.section-1 h3 {
    text-align: center;
    font-size: 35px;
    color: #27187e;
}

.section-1 h3 strong {
    color: #ff7d00;
}

.section-1 .images {
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.section-1 .chamada {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.section-1 .chamada a {
    padding: 15px 25px;
    background-color: green;
    border-radius: 20px;
    font-size: 22px;
    text-decoration: none;
    color: white;
}

.chamada-mobile {
    display: none;
    list-style: none;
    flex-direction: column;
    gap: 10px;
}

.section-1 .chamada-mobile a {
    font-size: 32px;
}

.chamada-mobile a:hover {
    font-size: 45px;
}


section.horarios {
    width: 100%;
    background-color: #ff7d00;
    color: white;
}

.horarios-wraper {
    display: flex;
    align-items: center;
}

.horarios-text {
    width: 50%;
    padding: 0 2%;
    text-align: left;
}

.horarios-text h2 {
    font-size: 45px;
    margin-bottom: 25px;
}

.horarios-text i {
    color: #27187e;
    margin-right: 5px;
}

.horarios-text p {
    margin: 10px;
    font-size: 22px;
}

section.clientes {
    background-color: #ff7d00;
    width: 100%;
    padding-bottom: 100px;
}

.clientes .wraper {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.clientes .single {
    text-align: center;
    background-color: rgba(245, 207, 207, 0.5);
    backdrop-filter: saturate(180%) blur(30px);
    border-radius: 10px;
    width: calc(90% / 4);
    height: 300px;
}

.clientes .single img {
    width: 100%;
    height: 60%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.clientes .single h5 {
    text-align: center;
    margin-top: 30px;
    font-size: 26px;
    color: white;
    font-weight: normal;
}

.clientes>.btn {
    display: block;
    margin: 40px auto 0 auto;
}


section.sobre {
    position: relative;
    padding: 100px 3%;
    width: 100%;
    background-image: url('/images/deposito.jpg');
    background-position: center;
    background-size: cover;
}

.layer {
    background-color: black;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.8;
    width: 100%;
    height: 100%;
}

.sobre-wraper {
    width: 100%;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 6;
    margin-top: 30px;
}

.sobre-wraper img {
    width: 50%;
}

.sobre h2 {
    position: relative;
    color: white;
    z-index: 5;
    text-align: center;
    font-size: 45px;
}

.sobre-text {
    color: white;
    width: 50%;
    padding: 30px;
}

.sobre-text p {
    margin: 25px 0;
    font-size: 14px;
    font-weight: normal;
    text-align: justify;
}

.sobre-text h5 {
    font-size: 22px;
}

section.localizacao {
    padding: 140px 0;
    background-color: white;
}

.localizacao>.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.localizacao .localizacao-text {
    padding: 25px;
    width: 40%;
    background-color: #ff7d00;
    border-radius: 20px;
    -webkit-box-shadow: 0px 0px 12px 3px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 12px 3px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 12px 3px rgba(0, 0, 0, 0.75);
}

.localizacao-text h4 {
    font-size: 30px;
    text-align: center;
    padding: 20px 0;

}

.localizacao-text i {
    margin-right: 10px;
    font-size: 22px;
    color: #27187e;
}

.localizacao-text a {
    text-decoration: none;
    color: white;
}

.localizacao-text a:hover {
    color: #27187e;
    border-bottom: 1px solid #23487f;
}

.localizacao-text p {
    margin: 5px 0;
    font-size: 18px;
}

.localizacao .map {
    -webkit-box-shadow: 0px 0px 12px 3px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 12px 3px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 12px 3px rgba(0, 0, 0, 0.75);
    border-radius: 20px;
    width: 50%;
    padding-top: 400px;
    background-color: #23487f;
}

footer {
    background-color: #27187e;
    color: white;
}

footer .footer-wraper {
    padding: 40px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.footer-wraper h1 {
    font-size: 40px;

}

.footer-wraper .menu-footer a {
    text-decoration: none;
    color: #ff7d00;
    font-size: 18px;
    margin: 0 10px;
    text-transform: uppercase;
    border-bottom: 1px solid #ff7d00;
}

.footer-wraper .menu-footer a:hover {
    color: white;
}

.footer-wraper .footer-socials {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-socials i {
    font-size: 30px;
}

.footer-socials i:hover {
    font-size: 35px;
}

.end {
    background-color: #ff7d00;
}

.end>.container {
    padding: 10px;
    display: flex;
    justify-content: space-around;
    color: white;

}


@media screen and (max-width: 900px) {

    .nav-desktop {
        display: none;
    }

    .nav-mobile {
        display: block;
    }

    .nav-mobile ul {
        display: none;
    }

    header .icons {
        display: none;
    }


    .images img {
        max-height: 400px;
    }

    .section-1 h3 {
        font-size: 28px;
    }

    .section-1 .chamada {
        display: none;
    }

    .section-1 .chamada-mobile {
        display: flex;
    }

    .horarios-wraper {
        display: flex;
        padding-top: 100px;
        flex-direction: column-reverse;
    }

    .horarios-text {
        width: 100%;
        text-align: center;
        font-size: 25px;
    }

    .horarios-wraper img {
        width: 100%;
    }

    .clientes .wraper {
        display: block;
    }

    .clientes .single {
        -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.75);
        -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.75);
        box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.75);
        margin: 0 auto;
        height: 300px;
        margin-bottom: 30px;
        width: 70%;
    }



    .sobre-wraper {
        flex-direction: column-reverse;
        width: 100%;
    }

    .sobre-text {
        width: 100%;
        padding: 0;
    }

    .sobre-wraper img {
        width: 100%;
    }


    .localizacao>.container {
        flex-direction: column;
        gap: 35px;
    }

    .localizacao .localizacao-text {
        width: 80%;
    }

    .localizacao .map {
        width: 80%;
    }

    .footer-wraper {
        flex-direction: column;
        gap: 35px;
    }

    .footer-wraper .footer-socials {
        flex-direction: row;

    }

    .footer-socials i {
        margin: 10px 0;
    }

    .end>.container {
        flex-direction: column;
        text-align: center;
        padding: 5px 0;
    }

}

@media screen and (max-width:450px) {
    .images img {
        max-height: 250px;
    }
}