@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #333;
    overflow-x: hidden;
}

section {
    padding: 140px 0px;
}

h1 {
    color: #fff;
    font-size: 44px;
    font-weight: 600;
}

h1>span {
    display: block;
    color: #EE4A19;
    font-size: 22px;
    font-weight: 400;
    margin-top: 12px;
}

h2 {
    color: #0e2137;
    font-size: 38px;
    font-weight: 600;
}

#mybutton {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 50px;
    background-color: #EE4A19;
    padding: 14px 30px 14px 30px;
    transition: all 0.3s ease-in-out;
}

#mybutton:hover {
    border: 1px solid #EE4A19;
    background-color: transparent;
    transform: scale(1.1);
}

/**Mobile x Desktop**/
#mobile {
    display: none;
}

#desktop {
    display: block;
}

@media screen and (max-width: 768px) {
    #mobile {
        display: block;
    }

    #desktop {
        display: none;
    }
}
/** Fim Mobile x Desktop **/

/* navbar */
.navbar {
    background-color: #fff;
}

.navbar .nav-link {
    color: #0e2137;
    font-size: 18px;
    border-bottom: 3px solid transparent;
    transition: all 0.5s ease-in-out;
}

.navbar .nav-link:hover {
    color: #EE4A19;
    border-bottom: 3px solid #EE4A19;
}

.logo {
    max-width: 100%;
    width: 150px;
}
/* end navbar */

/* hero section */
.hero-section {
    color: #fff;
    background-image: url('../images/banner-aim7-principal-pb.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.home {
    padding: 180px 0px;
}

#myForm {
    width: 75%;
}
/* end hero section */

/* aim7 */
.aim7 {
    background-image: url('../images/banner-aim7-cor.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.aim7 .row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.aim7 .content p {
    border-left: 6px solid #EE4A19;
    padding: 0 10px;
}

.img-aim7 {
    display: grid;
    place-items: center;
}

.img-aim7 img {
    max-width: 100%;
    width: 90%;
}

#servicos {
    margin-top: 52px;
}

.card {
    border: none;
    background: linear-gradient(to top, rgba( 255, 255, 255, 1) 30%, rgba( 255, 255, 255, 0.3) 60%);
    text-align: center;
    padding: 0px 40px;
    height: 600px;
}

.img-card {
    display: grid;
    place-items: center;
}

.img-card img {
    max-width: 100%;
    width: 220px;
}
/* end aim7 */

/* cta */
.cta {
    color: #fff;
    background-image: url('../images/banner-aim7-cta.jpg');
    background-position: center;
    background-size: cover;
    background-position: no-repeat;
}

.cta-content h2 {
    color: #fff;
    font-size: 44px;
    text-align: center;
}

.cta-content .btan {
    display: grid;
    place-items: center;
    text-align: center;
    margin-top: 32px;
}

.cta-content .btan a {
    text-decoration: underline;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 50px;
    background-color: transparent;
    padding: 14px 30px 14px 30px;
    transition: all 0.3s ease-in-out;
}

.cta-content .btan a:hover {
    display: block;
    width: fit-content;
    transform: scale(1.1);
    border: 1px solid #fff;
    background-color: transparent;
}
/* end cta */

/* solucoes */
.solucoes {
    background-color: #f8f8ff;
}

.solucoes .title h2 {
    color: #0e2137;
    text-align: center;
}

.solucoes .title h2>span {
    color: #EE4A19;
}

.solucoes .row {
    margin-top: 52px;
}

.solucoes .box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.img-box {
    display: grid;
    place-items: center;
}

.img-box img {
    width: 180px;
}

.solucoes .btan {
    display: grid;
    place-items: center;
    text-align: center;
    margin-top: 32px;
}

.solucoes .btan a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    border: 1px solid #EE4A19;
    border-radius: 50px;
    background-color: #EE4A19;
    padding: 14px 30px 14px 30px;
    transition: all 0.3s ease-in-out;
}

.solucoes .btan a:hover {
    display: block;
    width: fit-content;
    transform: scale(1.1);
    border: 1px solid #0e2137;
    background-color: #0e2137;
}
/* solucoes */

/* about */
.about {
    background-color: #fff;
}

.about .row {
    display: flex;
    align-items: center;    
    justify-content: center;
}

.about .content p {
    border-left: 6px solid #EE4A19;
    padding: 0 10px;
}

.img-about {
    display: grid;
    place-items: center;
}

.img-about img {
    max-width: 100%;
    width: 90%;
}

.about .content .btan {
    margin-top: 32px;
}

.about .content .btan a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    border: 1px solid #EE4A19;
    border-radius: 50px;
    background-color: #EE4A19;
    padding: 14px 30px 14px 30px;
    transition: all 0.3s ease-in-out;
}

.about .content .btan a:hover {
    display: block;
    width: fit-content;
    transform: scale(1.1);
    border: 1px solid #0e2137;
    background-color: #0e2137;
}
/* end about */

/* footer */
footer {
    color: #fff;
    background-color: #0B0B0B;
    width: 100%;
}

footer ul li {
    padding-left: 0px !important;
}

footer span {
    color: #EE4A19;
    padding-left: 14px;
}

.footer-link {
    text-decoration: none;
}

#footer_content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 50px 20px 0px 50px;
}

.footer-logo img {
    max-width: 100%;
    width: 220px;
}

.footer-text {
    margin-top: 12px;
    padding-right: 30px;
}

#footer_social_media {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

@media screen and (max-width: 768px) {
    #footer_social_media {
        align-items: left;
        justify-content: left;
    }
}

#footer_social_media .footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    color: #fff;
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 12px;
    transition: all 0.4s;
}

#footer_social_media .footer-link:hover {
    color: #fff;
    background-color: #EE4A19;
    border: 2px solid #EE4A19;
}

#footer_social_media .footer-link i {
    font-size: 1.25rem;
}

#instagram {
    background-color: transparent;
}

#facebook {
    background-color: transparent;
}

#whatsapp-footer {
    background-color: transparent;
}

#contacts li i {
    color: #EE4A19;
    font-size: 16px;
    padding-right: 4px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
}

.footer-list h3 {
    color: #fff;
    font-weight: 300;
    font-size: 24px;
    border-left: 4px solid #EE4A19;
    padding-left: 6px;
    gap: 100px;
}

.footer-list .footer-link {
    color: #fff;
    font-size: 16px;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.footer-list .footer-link:hover {
    color: #EE4A19;
    border-bottom: 2px solid #EE4A19;
}

#footer_copyright {
    color: #EE4A19;
    display: flex;
    justify-content: center;
    font-size: 0.9rem;
    padding: 1.5rem;
    font-weight: 400;
}

@media screen and (max-width: 768px) {
    #footer_content {
        text-align: left;
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }
}

@media screen and (max-width: 450px) {
    #footer_content {
        grid-template-columns: repeat(1, 1fr);
        padding: 10px;
    }
}
/* end footer */

/* botão whatsapp */
.float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 40px;
    right: 40px;
    z-index: 100;
    transition: 0.5s;
}

.float:hover {
    transform: scale(1.1);
}

.float img {
    max-width: 100%;
}
/* end botão whatsapp */

@media screen and (max-width: 768px) {
    h1 {
        font-size: 40px;
        text-align: center;
    }

    h2 {
        font-size: 34px;
    }

    section {
        padding: 42px 10px;
    }

    .home {
        padding: 72px 10px;
    }

    #myForm {
        width: 100%;
    }

    #mybutton {
        width: 100%;
    }

    .img-aim7 img {
        max-width: 100%;
        width: 100%;
        margin-bottom: 32px;
    }

    .card {
        padding: 10px;
        height: fit-content;
    }

    .cta-content h2 {
        font-size: 34px;
    }

    /* .solucoes h2 {

    } */

    .solucoes .box {
        flex-direction: column;
        text-align: center;
    }

    .about .img-about img {
        max-width: 100%;
        width: 100%;
        margin-bottom: 32px;
    }

    .about .btan a {
        display: block;
    }

    #footer_content {
        padding: 32px 10px;
    }
}