@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "Raleway", sans-serif;
    background-color: #fff;
}

/**Mobile x Desktop**/
#mobile {
    display: none;
}

#desktop {
    display: block;
}

@media (max-width: 768px) {
    #mobile {
        display: block;
    }

    #desktop {
        display: none;
    }
}
/** Fim Mobile x Desktop **/

/* Animação */
.hidden {
    opacity: 0;
    filter: blur(2px);
    transform: translateX(-100%);
    transition: opacity 1.1s ease-in-out, visibility 0.5s ease-in-out;
} @media (prefers-reduced-motion) {
    .hidden {
        transition: none;
    }
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}  
/* Fim Animação */

/* Navegação */
nav ul, li {
    padding-left: 0 !important;
}

.navbar {
    background-color: #fff;
    /* position: fixed;
    width: 100%; */
}

.navbar .logo {
    width: 200px;
}

.navbar .navbar-nav {
    gap: 20px;
}

.navbar .navbar-nav .nav-link {
    color: #264950;
    font-size: 16px;
    font-weight: 400;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.navbar .navbar-nav .nav-link:hover {
    color: #264950;
    border-bottom: 3px solid #264950;
}

/* .btn-nav {
    margin-top: 12px;
} */

.btn-nav a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding: 10px 20px 10px 20px;
    border: none;
    border-radius: 12px;
    background-color: #264950;
}

.navbar-toggler-icon {
    background-image: url('../images/menu-hamburguer.png');
}

.hero-section {
    color: #fff;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/banner-principal-bb-kits.jpg');
    background-color: #024b74;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 84vh;
    padding: 30px;
}

.hero-section .content h1 {
    color: #fff;
    font-size: 52px;
    font-weight: 700;
    text-align: center;
}

.hero-section .content p {
    color: #fff;
    font-size: 18px;
    text-align: center;
}

.hero-section .content .hero-btn {
    display: grid;
    place-items: center;
    margin-top: 20px;
}

.hero-section .content .hero-btn a {
    text-decoration: none;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    padding: 10px 40px 10px 40px;
    border: 2px solid #fff;
    border-radius: 12px;
    background-color: #264950;
}
/* End Navegação */

/* Diferenciais */
.diferenciais {
    color: #222222;
    background-color: #FBFBFB;
    padding: 30px;
}

.diferenciais h2 {
    color: #264950;
    font-size: 34px;
    font-weight: 700;
    text-align: center;
}

.diferenciais .row {
    margin-top: 40px;
}

.diferenciais .col {
    display: grid;
    place-items: center;
    text-align: center;
} @media (max-width: 768px) {
    .diferenciais .col {
        flex: 0 0 100%;
    }
}

.diferenciais .col img {
    width: 140px;
}

.diferenciais h3 {
    font-size: 22px;
    font-weight: 600;
    border-bottom: 3px solid #264950;
}
/* End Diferenciais */

/* CTA */
.cta {
    color: #fff;
    background-image: url('../images/banner-cta-bb-kits.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 30px 100px 30px;
}

.cta .content h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
}

.cta .content h2>span {
    color: #E3AB57;
}

.cta .content p {
    text-align: center;
}

.cta-btn {
    display: grid;
    place-items: center;
}

.cta-btn a {
    text-decoration: none;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    border: 2px solid #fff;
    border-radius: 12px;
    background-color: transparent;
    padding: 14px 100px 14px 100px;
    transition: all 0.3s;
}

.cta-btn a:hover {
    color: #fff;
    border: 2px solid #fff;
    background-color: #264950;
}
/* End CTA */

/* Produtos */
.produtos {
    color: #222222;
    background-color: #fff;
    padding: 30px;
}

.produtos .produtos-title h2 {
    color: #264950;
    font-size: 34px;
    font-weight: 700;
    text-align: center;
}

.produtos .mySwiper {
    margin-top: 30px;
}

.produtos .img-produtos {
    display: grid;
    place-items: center;
}

.produtos .img-produtos img {
    width: 440px;
}

.produtos .pag {
    margin-top: 40px;
}
/* End Produtos */

/* Sobre nós */
.about {
    color: #222222;
    background-color: #FBFBFB;
    padding: 30px;
}

.about .img-about {
    margin-left: 80px;
}

.about .img-about img {
    max-width: 100%;
}

.about .content {
    margin-top: 100px;
}

.about .content h2 {
    color: #264950;
    font-size: 34px;
    font-weight: 700;
}

.about .content h2>span {
    border-bottom: 4px solid #264950;
}
/* End Sobre nós */

/* Formulario */
.form-bbkits {
    color: #fff;
    background-image: url('../images/banner-form-bb-kits.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px;
}

.formulario {
    display: grid;
    place-items: center;
    margin-top: 100px;
}

form {
    color: #264950;
    border: none;
    border-radius: 12px;
    background-color: #f8f8ff;
    padding: 14px 14px 14px 14px;
    margin-bottom: 80px;
}

form .form-title h2 {
    color: #264950;
    font-size: 34px;
    font-weight: 700;
    text-align: center;
}

form .mb-3 input {
    width: 500px;
}

form .btn-form {
    display: grid;
    place-items: center;
    margin-bottom: 30px;
}

form .btn-form button {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding: 10px 20px 10px 20px;
    border: none;
    border-radius: 12px;
    background-color: #F4BF44;
    width: 100%;
}

form .btn-form button:hover {
    color: #fff;
    background-color: #F4BF44;  
}
/* End Formulario */

/* Footer */
footer {
    color: #fff;
    background-color: #fff;
    padding: 50px 30px 50px 30px;
}

footer ul,  li {
    padding-left: 0 !important;
}

footer .social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-bottom: 1px solid #000;
    padding-bottom: 16px;
}

footer .social-links li a {
    text-decoration: none;
    color: #000;
}

footer .social-links li i {
    font-size: 22px;
}

#footer_copyright {
    color: #000;
    display: flex;
    justify-content: center;
    font-size: 0.9rem;
    padding: 1.5rem;
    font-weight: 400;
}
/* End Footer */

/* Media */
@media only screen and (max-width: 768px) {
    .btn-nav a {
        width: 100%;
    }

    .hero-section {
        padding: 42px 10px 42px 10px;
        height: fit-content;
    }

    .hero-section .content h1 {
        font-size: 44px;
    }

    .cta {
        padding: 30px;
    }

    .cta .content h2 {
        font-size: 38px;
    }

    .cta .cta-btn a {
        font-size: 22px;
        padding: 14px 50px 14px 50px;
    }

    .about {
        padding: 10px;
    }

    .about .img-about {
        display: grid;
        place-items: center;
        margin-left: 0px;
    }

    .about .content {
        margin-top: 40px;
    }

    .form-bbkits {
        padding: 10px;
    }

    .formulario {
        display: block;
    }

    form .mb-3 input {
        width: 100%;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .produtos .img-produtos img {
        width: 300px;
    }

    .about .img-about {
        display: grid;
        place-items: center;
        margin-left: 0px;
    }
}

/* @media only screen and (min-width: 1025px) and (max-width: 1425px) {

} */
/* End Media */