@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-color: #fff;
}

/*Header*/
header {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: fixed;
    justify-content: space-between;
    width: 100%;
    padding: 15px 100px;
    z-index: 2;
    background: linear-gradient(53deg, rgba(2,1,22,0.95) 0%, rgba(27,53,144,0.95) 100%);
}

header .logo {
    width: 150px;
}

header #menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

header #menu #item {
    position: relative;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    margin: 0 1vw;
    padding: 0 5px;
}

header .header-contact {
    display: flex;
    align-items: center;
    gap: 5px;
    width: max-content;
    height: 40px;
    background-color: #7ca04f;
    border-radius: 10px;
    padding: 5px 10px;
    margin-left: 50px;
    transition: 300ms;
}

header .header-contact:hover {
    background-color: #567333;
}

header .header-contact img {
    width: 25px;
    filter: invert(100%)
}

header .header-contact p {
    font-weight: 500;
    font-size: 16px;
    color: #fff;
}

#btn-mobile {
    display: none;
}

/*WhatsApp Floating Button*/
.wpp-btn {
    z-index: 99;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 15px;
    bottom: 30px;
    left: 30px;
    height: 50px;
    width: 50px;
    padding: 20px;
    background-color: #7ca04f;
    cursor: pointer;
    transition: 0.5s;
}

.wpp-btn img {
    width: 26px;
    position: absolute;
    left: 12px;
    filter: invert(100%);
}

.wpp-btn p {
    margin-left: 15px;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s linear;
    transition-delay: 0.2s;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

/*Main*/
.main {
    display: flex;
}

.main .slide-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 250px;
    position: absolute;
    width: 400px;
    margin-left: 150px;
    color: #fff;
}

.main .slide-text .title {
    font-weight: 700;
    font-size: 42px;
}

.main .slide-text .txt {
    font-weight: 500;
    font-size: 18px;
}

.main .slide-text .main-btn {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #7ca04f;
    padding: 15px 25px;
    border-radius: 15px;
    cursor: pointer;
    width: max-content;
    transition: 300ms;
    color: #fff;
}

.main .slide-text .main-btn:hover {
    background-color: #567333;
}

.main .slide-text .main-btn img {
    width: 25px;
    filter: invert(100%);
}

.main .slide-text .main-btn p {
    font-weight: 500;
    font-size: 18px;
}

.main .main-slider {
    width: 100vw;
    overflow: hidden;
}

.main .slides {
    width: 300%;
    display: flex;
}

.main .slides input {
    display: none;
}

.main .slide {
    width: 33.33%;
    position: relative;
    transition: 2s;
}

.main .slide img {
    width: 100vw;
}

.main #radio1:checked~.first {
    margin-left: 0;
}

.main #radio2:checked~.first {
    margin-left: -33.33%;
}

.main #radio3:checked~.first {
    margin-left: -66.66%;
}

/*Main Form*/
.main .main-form {
    position: absolute;
    right: 60px;
    top: 200px;
    z-index: 1;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.main .main-form .title {
    font-size: 22px;
    text-align: center;
}

.main .main-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.main form .field {
    border: none;
    border-bottom: 1px solid #878a8f;
    height: 25px;
    width: 100%;
    outline: 0;
    font-size: 16px;
}

.main form .main-form-div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main .main-form-div select {
    width: max-content;
}

.main form button {
    width: 100%;
    height: 35px;
    border: none;
    background-color: #0139ab;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
}

/*About*/
.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 62px 28px;
}

.about .about-title {
    width: 350px;
}

.about .about-section {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.about .about-section .about-section-div {
    width: 25%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about .about-section-div h1 {
    font-weight: 600;
    font-size: 38px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    margin-bottom: 15px;
    background-color: #3578ff;
    border: 10px solid #8bb2ff;
}

.about .about-section-div h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about .about-section-div p {
    font-size: 18px;
}

.about .about-section-div span.color {
    color: #0e49cb;
    font-weight: 600;
}

/*Benefits*/
.benefits {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding: 36px 0;
}

.benefits .title {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 34px;
}

.benefits .benefits-section-nav {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
}

.benefits .benefits-section-nav button {
    padding: 15px 25px;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    background-color: #d9d9d9;
    transition: 300ms;
}

.benefits .benefits-section-nav button:hover {
    background-color: #0139ab;
    color: #fff;
}

.benefits .benefits-section-nav .active {
    background-color: #0139ab;
    color: #fff;
}

.benefits img {
    width: 85%;
    margin: auto;
    margin-top: 20px;
    display: none;
}

.benefits .active {
    display: flex;
}

/*Doubts*/
.doubts {
    background: radial-gradient(circle, rgba(21,10,71,1) 0%, rgba(17,41,112,1) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 28px;
}

.doubts .doubts-title {
    width: 300px;
    margin: 20px 0;
}

.doubts .txt {
    width: 60%;
    text-align: center;
}

/*Doubts FAQ*/
.doubts .faq {
    margin: 50px;
    width: 70vw;
    gap: 28px;
    display: flex;
    flex-direction: column;
}

.doubts .faq details summary {
    display: flex;
    justify-content: space-between;
    border: 4px solid #0055ff;
    padding: 20px 100px;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    gap: 7px;
}

.doubts .faq details summary::after {
    content: url(../assets/s3-faq-seta-top.png);
}

.doubts .faq details[open] summary::after {
    content: url(../assets/s3-faq-seta-bottom.png);
}

.doubts .faq details[open] summary {
    background: linear-gradient(90deg, rgba(0,85,255,1) 0%, rgba(10,52,163,1) 100%);
}

.doubts .faq p {
    margin: 40px 100px 20px 100px;
}

/*Pros*/
.pros {
    display: flex;
    justify-content: space-around;
}

.pros .pros-div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pros .pros-div img {
    width: 250px;
}

.pros .pros-div-1 {
    background: linear-gradient(90deg, rgba(4,53,168,1) 0%, rgba(0,155,255,1) 100%);
}

.pros .pros-div-2 {
    background: radial-gradient(circle, rgba(0,155,255,1) 0%, rgba(4,53,168,1) 100%);
}

.pros .pros-div-3 {
    background: linear-gradient(90deg, rgba(0,155,255,1) 0%, rgba(4,53,168,1) 100%);
}

/*Conatact*/
.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, rgba(202,207,222,1) 0%, rgba(226,230,241,1) 100%);
    padding: 42px;
}

.contact .title {
    font-weight: 700;
    font-size: 32px;
    padding: 10px;
    color: #1a154b;
}

.contact .dec {
    content: "";
    background-color: #0055ff;
    height: 4px;
    width: 150px;
    border-radius: 25px;
}

.contact form {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 32px;
}

.contact form .input {
    width: 100%;
    height: 40px;
    border-radius: 15px;
    border: none;
    padding: 10px;
    font-size: 18px;
    outline: 0;
}

.contact .contact-form-div {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact .contact-form-div .input-cel {
    width: 50%;
}

.contact form textarea {
    min-height: 120px;
    max-height: 250px;
    min-width: 100%;
    max-width: 100%;
}

.contact form button {
    padding: 15px 20px;
    border: none;
    border-radius: 15px;
    background-color: #0139ab;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    align-self: flex-end;
}

/*Address*/
.address {
    display: flex;
    flex-direction: column;
}

.address .address-info {
    background: linear-gradient(53deg, rgba(21,10,71,1) 0%, rgba(27,53,144,1) 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
}

.address .address-info .subtitle {
    color: #e8ce78;
}

.address .address-info p {
    font-size: 16px;
}

.address iframe {
    width: 100%;
    height: 350px;
    align-self: flex-end;
}

/*Footer*/
footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    gap: 15px;
    background: linear-gradient(53deg, rgba(21,10,71,1) 0%, rgba(27,53,144,1) 100%);
}

footer .footer-icon {
    width: 30px;
    filter: invert(100%);
}

/*Responsive PC*/
@media screen and (min-width:1024px) {
    /*Header*/
    header #menu #item::after {
        content: "";
        position: absolute;
        background-color: #fff;
        height: 1.5px;
        width: 0;
        left: 0;
        bottom: -5px;
        transition: 0.4s;
    }

    header #menu #item:hover::after {
        width: 100%;
    }

    /*Wpp Button*/
    .wpp-btn:hover {
        width: 250px;
    }

    .wpp-btn:hover p {
        visibility: visible;
        opacity: 1;
    }

    /*Footer*/
    footer .footer-icon:hover {
        width: 30px;
        filter: invert(80%);
    }
}

/*Responsive Tablet*/
@media screen and (min-width: 767px) and (max-width: 1024px) {
    /*Header*/
    header {
        position: static;
        box-sizing: border-box;
        height: 70px;
        padding: 62px;
        display: flex;
        align-items: center;
        background-color: #0139ab;
        justify-content: space-between;
    }

    header .logo {
        width: 100px;
        margin-left: 15px;
    }

    header #menu {
        display: block;
        position: absolute;
        text-align: center;
        width: 100%;
        top: 120px;
        right: 0;
        left: 0;
        background: linear-gradient(53deg, rgba(2,1,22,0.95) 0%, rgba(27,53,144,0.95) 100%);
        border-top: 0.4px solid #878a8f;
        transition: 0.6s;
        z-index: 10000;
        height: 0;
        visibility: hidden;
        overflow-y: hidden;
    }

    #nav.active #menu {
        height: calc(100vh - 70px);
        visibility: visible;
        overflow-y: auto;
    }

    header #menu #item {
        display: block;
        padding: 2rem 0;
        margin: 0 1rem;
        border-bottom: 0.4px solid #878a8f;
        font-size: 20px;
    }

    header #btn-mobile {
        font-family: "Montserrat", sans-serif;
        font-weight: 600;
        font-size: 20px;
        color: #fff;
        align-items: center;
    }

    #btn-mobile {
        display: flex;
        padding: 0.5rem 1rem;
        font-size: 1rem;
        border: none;
        background: none;
        cursor: pointer;
        gap: 0.5rem;
    }

    #hamburger {
        border-top: 2px solid #fff;
        width: 20px;
    }

    #hamburger::after,
    #hamburger::before {
        color: #fff;
        content: '';
        display: block;
        width: 20px;
        height: 2px;
        background: currentColor;
        margin-top: 5px;
        transition: 0.3s;
        position: relative;
    }

    #nav.active #hamburger {
        border-top-color: transparent;
    }

    #nav.active #hamburger::before {
        transform: rotate(135deg);
    }

    #nav.active #hamburger::after {
        transform: rotate(-135deg);
        top: -7px;
    }

    header .header-contact {
        display: none;
    }

    /*Main*/
    .main .img {
        position: relative;
        top: -70px;
    }

    .main .slide .img-1 {
        content: url(../assets/main-car-mobile.png);
    }

    .main .slide .img-2 {
        content: url(../assets/main-truck-mobile.png);
    }

    .main .slide .img-3 {
        content: url(../assets/main-bike-mobile.png);
    }

    .main {
        flex-direction: column;
    }

    .main .slide-text {
        margin-top: 0;
        gap: 15px;
        width: 80%;
        margin-left: 0;
        padding: 28px;
        z-index: 1;
    }

    .main .slide-text .title {
        font-size: 38px;
    }

    .main .slide-text .txt {
        font-size: 18px;
    }

    .main .slide-text .main-btn {
        padding: 15px 25px;
        font-size: 18px;
    }

    .main .main-form {
        position: relative;
        width: 80%;
        right: auto;
        top: auto;
        align-self: center;
        border: 1px solid #d9d9d9;
        margin-bottom: 20px;
        gap: 50px;
    }

    .main .main-form .title {
        font-size: 36px;
    }

    .main .main-form form {
        gap: 40px;
    }

    .main form .field {
        font-size: 20px;
        padding: 5px;
        height: 35px;
    }

    .main form button {
        height: 50px;
        font-size: 20px;
    }

    /*About*/
    .about .about-section {
        margin-top: 20px;
    }

    /*Benefits*/
    .benefits {
        padding: 28px;
        text-align: center;
    }

    .benefits .title {
        font-size: 28px;
    }

    .benefits .benefits-section-nav {
        gap: 15px;
        justify-content: space-around;
    }

    .benefits .benefits-section-nav button {
        padding: 15px 20px;
        font-size: 18px;
    }

    .benefits .benefits-section img {
        width: 90vw;
    } 

    .benefits .benefits-section #img-1 {
        content: url(../assets/benefits-car-mobile.jpg);
    }

    .benefits .benefits-section #img-2 {
        content: url(../assets/benefits-bike-mobile.jpg);
    }

    .benefits .benefits-section #img-3 {
        content: url(../assets/benefits-utility-mobile.jpg);
    }

    .benefits .benefits-section #img-4 {
        content: url(../assets/benefits-truck-mobile.jpg);
    }

    /*Doubts*/
    .doubts .txt {
        width: 80%;
    }

    .doubts .faq {
        width: 90%;
    }

    .doubts .faq details summary {
        padding: 20px 50px;
    }

    .doubts .faq p {
        margin: 40px 50px 20px 50px;
    }

    /*Contact*/
    .contact {
        padding: 42px 28px;
    }

    .contact form {
        width: 90%;
    }

    /*Address*/
    .address .address-info {
        text-align: center;
    }
}

/*Responsive Smartphone*/
@media screen and (max-width: 767px) {
    /*Header*/
    header {
        position: static;
        box-sizing: border-box;
        height: 70px;
        padding: 1rem;
        display: flex;
        align-items: center;
        background-color: #0139ab;
        justify-content: space-between;
    }

    header .logo {
        width: 50px;
        margin-left: 15px;
    }

    header .btn {
        display: none;
    }

    header #menu {
        display: block;
        position: absolute;
        width: 100%;
        top: 70px;
        right: 0;
        left: 0;
        background: linear-gradient(53deg, rgba(2,1,22,0.95) 0%, rgba(27,53,144,0.95) 100%);
        border-top: 0.4px solid #878a8f;
        transition: 0.6s;
        z-index: 10000;
        height: 0;
        visibility: hidden;
        overflow-y: hidden;
    }

    #nav.active #menu {
        height: calc(100vh - 70px);
        visibility: visible;
        overflow-y: auto;
    }

    header #menu #item {
        display: block;
        padding: 1rem 0;
        margin: 0 1rem;
        border-bottom: 0.4px solid #878a8f;
    }

    header #btn-mobile {
        font-family: "Montserrat", sans-serif;
        font-weight: 600;
        color: #fff;
    }

    #btn-mobile {
        display: flex;
        padding: 0.5rem 1rem;
        font-size: 1rem;
        border: none;
        background: none;
        cursor: pointer;
        gap: 0.5rem;
    }

    #hamburger {
        border-top: 2px solid #fff;
        width: 20px;
    }

    #hamburger::after,
    #hamburger::before {
        color: #fff;
        content: '';
        display: block;
        width: 20px;
        height: 2px;
        background: currentColor;
        margin-top: 5px;
        transition: 0.3s;
        position: relative;
    }

    #nav.active #hamburger {
        border-top-color: transparent;
    }

    #nav.active #hamburger::before {
        transform: rotate(135deg);
    }

    #nav.active #hamburger::after {
        transform: rotate(-135deg);
        top: -7px;
    }

    /*Main*/
    .main .slide .img-1 {
        content: url(../assets/main-car-mobile.png);
    }

    .main .slide .img-2 {
        content: url(../assets/main-truck-mobile.png);
    }

    .main .slide .img-3 {
        content: url(../assets/main-bike-mobile.png);
    }

    .main {
        flex-direction: column;
    }

    .main .slide-text {
        margin-top: 0;
        gap: 5px;
        width: 100%;
        margin-left: 0;
        padding: 28px;
    }

    .main .slide-text .title {
        font-size: 24px;
    }

    .main .slide-text .txt {
        font-size: 14px;
    }

    .main .slide-text .main-btn {
        display: none;
    }

    .main .main-form {
        position: relative;
        right: auto;
        top: auto;
        align-self: center;
        border: 1px solid #d9d9d9;
        margin-bottom: 20px;
    }

    .main .main-form form {
        gap: 15px;
    }

    .main form button {
        height: 50px;
    }

    /*About*/
    .about .about-section {
        margin-top: 15px;
        flex-direction: column;
    }

    .about .about-section .about-section-div {
        width: 100%;
    }

    /*Benefits*/
    .benefits {
        padding: 28px;
        text-align: center;
    }

    .benefits .title {
        font-size: 28px;
    }

    .benefits .benefits-section-nav {
        gap: 5px;
        justify-content: space-around;
    }

    .benefits .benefits-section-nav button {
        padding: 5px 10px;
        font-size: 12px;
    }

    .benefits .benefits-section img {
        width: 90vw;
    } 

    .benefits .benefits-section #img-1 {
        content: url(../assets/benefits-car-mobile.jpg);
    }

    .benefits .benefits-section #img-2 {
        content: url(../assets/benefits-bike-mobile.jpg);
    }

    .benefits .benefits-section #img-3 {
        content: url(../assets/benefits-utility-mobile.jpg);
    }

    .benefits .benefits-section #img-4 {
        content: url(../assets/benefits-truck-mobile.jpg);
    }

    /*Doubts*/
    .doubts .txt {
        width: 100%;
    }

    .doubts .faq {
        width: 100%;
    }

    .doubts .faq details summary {
        padding: 15px;
    }

    .doubts .faq p {
        margin: 25px;
    }

    /*Pros*/
    .pros {
        flex-direction: column;
    }

    /*Contact*/
    .contact {
        padding: 28px;
    }

    .contact .title {
        text-align: center;
    }

    .contact form {
        width: 100%;
    }

    .contact form .contact-form-div {
        flex-direction: column;
    }

    .contact .contact-form-div .input-cel {
        width: 100%;
    }

    /*Address*/
    .address {
        text-align: center;
    }

    .address iframe {
        height: 300px;
    }
}