@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: "Montserrat", sans-serif;
    /* USAR ROBOTO NA DESCRIÇÃO DOS PRODUTOS(COMO NO SITE) */
}

section {
    padding: 100px 0px 100px 0px;
}

h2 {
    color: #000;
    font-size: 40px;
    font-weight: 600;
}

h3 {
    color: #000;
    font-size: 24px;
    font-weight: 500;
}

p {
    color: #1a1a1a;
}

/**Mobile x Desktop**/
#mobile {
    display: none;
}

#desktop {
    display: block;
}

@media (max-width: 1024px) {
    #mobile {
        display: block;
    }

    #desktop {
        display: none;
    }
}
/** Fim Mobile x Desktop **/

/* Navbar */
.navbar {
    background-color: transparent;
}

.navbar .logo {
    width: 200px;
}

.navbar .navbar-nav .nav-link {
    font-family: 'Open Sans', sans-serif;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.navbar .navbar-nav .nav-link:hover {
    color: #fff;
    border-bottom: 3px solid #fff;
}

.navbar-toggler-icon {
    background-image: url('../images/submenu.png');
}
/* End Navbar */

/* Hero Section */
.hero-section {
    color: #fff;
    background-color: #1a1a1a;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)), url('../images/banner-interjet-principal.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.home {
    padding: 70px 0px 130px 0px;
}

.home .content h1 {
    color: #fff;
    font-size: 44px;
    font-weight: 400;
}

#FormInterjet {
    width: 75%;
}

#FormInterjet .form-title p {
    color: #fff;
    font-size: 20px;
    margin-bottom: 12px;
}

#FormInterjet input {
    height: 44px;
}

#mybutton {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    background-color: #02A0A3;
    padding: 14px;
    transition: all 0.3s;
}

#mybutton:hover {
    color: #fff;
    transform: scale(1.1);
}

#mybutton:disabled {
    color: black;
    background-color: gray;
}
/* End Hero Section */

/* Produtos */
.produtos {
    color: #1a1a1a;
    background-color: #cccccc;
}

.produtos .title h2 {
    color: #02A0A3;
    text-align: center;
    margin-bottom: 32px;
}

.produtos .row {
    margin-top: 32px;
}

.produtos .box-produtos {
    background-color: #fff;
    padding: 20px;
    border: 2px solid #02A0A3;
    border-radius: 8px;
    text-align: center;
}

.produtos .box-produtos>img {
    max-width: 100%;
    width: 450px;
}

.produtos .btn-produtos {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
}

.produtos .btn-produtos a {
    display: block;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    background-color: #02A0A3;
    padding: 14px;
    width: 65%;
    transition: all 0.3s;
}

.produtos .pag {
    margin-top: 32px;
}
/* End Produtos */

/* Diferenciais */
.diferenciais {
    background-color: #fff;
}

.diferenciais .title h2 {
    color: #185876;
    text-align: center;
    margin-bottom: 32px;
}

.diferenciais .col {
    text-align: center;
}

.diferenciais .col>img {
    max-width: 100%;
    width: 135px;
    margin-bottom: 32px;
}

.diferenciais .btn-dif {
    display: none;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
}

.diferenciais .btn-dif a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    background-color: #02A0A3;
    padding: 14px;
    transition: all 0.3s;
}

.diferenciais .btn-dif a>i {
    padding-right: 8px;
}
/* End Diferenciais */

/* About */
.about {
    background-color: #f8f8ff;
}

.about .content {
    margin-top: 120px;
}

.about .content h2 {
    margin-bottom: 32px;
}

.about .img-about {
    display: grid;
    place-items: center;
}

.about .img-about img {
    max-width: 100%;
    width: 90%;
}
/* End About */

/* CTA */
.cta {
    color: #fff;
    background-color: #1a1a1a;
    background-image: url('../images/banner-interjet-cta.jpg');
    padding: 150px 0px;
}

.cta-content h2 {
    font-size: 42px;
}

.cta-content h2, .cta-content p {
    color: #fff;
    text-align: center;
}

.cta-content .btn-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
}

.cta-content .btn-cta a {
    display: block;
    text-decoration: none;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    border: 2px solid #fff;
    border-radius: 12px;
    background-color: transparent;
    padding: 14px;
    width: 45%;
}
/* End CTA */

/* Mapa */
#mapa {
    padding: 40px 0px;
}
/** Footer **/
footer {
    color: #fff;
    background-color: #185876;
    width: 100%;
}

.footer-desc p {
    color: #fff;
}

footer ul li {
    padding-left: 0px !important;
}

footer span {
    color: #FFF;
    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: 70%;
}

#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: #185876;
    background-color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.4s;
}

#footer_social_media .footer-link:hover {
    color: #185876;
    background-color: #fff;
    border: 2px solid #fff;
}

#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: #fff;
    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: 600;
    font-size: 24px;
    gap: 100px;
    border-left: 4px solid #fff;
    padding-left: 6px;
}

.footer-list .footer-link {
    color: #fff;
    font-size: 16px;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.footer-list .footer-link:hover {
    color: #fff;
    border-bottom: 2px solid #fff;
}

#footer_copyright {
    display: flex;
    justify-content: center;
    font-size: 0.9rem;
    padding: 1.5rem;
    font-weight: 100;
}

@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;
    }
}
/** Fim 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%;
}
/** Botão Whatsapp **/

/* Media Query */
@media screen and (max-width: 768px) {
    section {
        padding: 32px 10px 32px 10px;
    }

    .home .content h1 {
        font-size: 34px;
        text-align: center;
    }

    #FormInterjet {
        width: 100%;
        margin-top: 32px;
    }

    #FormInterjet .form-title p {
        text-align: center;
    }

    #FormInterjet .btn-form button {
        width: 100%;
    }

    /* Produtos */
    .produtos .row {
        margin-top: 6px;
    }

    .produtos .box-produtos {
        margin-bottom: 12px;
    }

    .produtos .btn-produtos a {
        width: 100%;
    }
    /* End Produtos */

    /* Diferenciais */
    .diferenciais .col {
        flex: 0 0 100%;
        margin-bottom: 12px;
    }
    /* End Diferenciais */

    /* CTA */
    .cta {
        padding: 50px 10px 50px 10px;
    }

    .cta-content h2 {
        font-size: 38px;
    }

    .cta-content .btn-cta a {
        width: 100%;
    }
    /* End CTA */

    /* About */
    .about .content {
        margin-top: 32px;
    }

    .about .img-about img {
        width: 100%;
    }
    /* End About */
}
/* End Media Query */