header {
    padding: 40px 0;
    nav {
        display: flex;
        align-items: center;
        justify-content: space-between;

        & > a {
            height: 120px;

            img {
                height: 100%;
            }
        }

        ul {
            display: flex;

            li {
                a {
                    display: block;
                    padding: 10px 30px;
                    font-family: 'Quicksand';
                    font-weight: 500;
                    font-size: 18px;
                }
            }
        }

        & > a {
            font-family: 'Quicksand';
            font-weight: 600;
            font-size: 18px;
        }

        a {
            transition: .3s;

            &:hover {
                transition: .3s;
                scale: 1.1;
            }
        }
    }
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;

    .menu-icon {
        display: block;
        width: 28px;
        height: 3px;
        background: var(--primary_color, #ff7300);
        position: relative;
        border-radius: 2px;
        transition: background 0.3s;
    }
    .menu-icon::before,
    .menu-icon::after {
        content: '';
        display: block;
        width: 28px;
        height: 3px;
        background: var(--primary_color, #ff7300);
        position: absolute;
        left: 0;
        border-radius: 2px;
        transition: transform 0.3s, top 0.3s, bottom 0.3s;
    }
    .menu-icon::before {
        top: -9px;
    }
    .menu-icon::after {
        bottom: -9px;
    }
}

.menu-entrar {
    display: none;
}
.entrar-desktop {
    display: inline-block;
}

.menu-close {
    display: none;
    position: fixed;
    z-index: 9999999999;
    top: 70px;
    right: 56px;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--primary_color, #ff7300);
    cursor: pointer;
    transition: color 0.2s;
}
.menu-close:hover {
    color: #d65a00;
}

@media (max-width: 900px) {
    nav {
        flex-wrap: wrap;
        position: relative;
    }
    ul.menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(255,255,255,0.98);
        box-shadow: none;
        z-index: 2001;
        padding: 0;
        margin: 0;
        border-radius: 0;
        transition: opacity 0.3s;
        opacity: 0;
        pointer-events: none;
    }
    ul.menu.open {
        opacity: 1;
        pointer-events: auto;
        display: absolute;
        height: 100vh;
        z-index: 999999999;
    }
    ul.menu[hidden] {
        display: flex !important;
        opacity: 0;
        pointer-events: none;
    }
    .menu-toggle {
        display: block;
        z-index: 2003;
    }
    .menu-close {
        display: none;
    }
    ul.menu.open ~ .menu-close {
        display: block;
    }

    .menu-entrar {
        display: block;
        width: 100%;
        text-align: center;
    }
    .menu-entrar a {
        padding: 16px 24px;
        font-size: 18px;
        color: var(--primary_color, #ff7300);
        font-weight: 600;
    }
    .entrar-desktop {
        display: none;
    }
    body.menu-open {
        overflow: hidden;
    }
}

@media (min-width: 901px) {
    .menu-toggle {
        display: none !important;
    }
    ul.menu {
        display: flex !important;
        flex-direction: row;
        position: static;
        background: none;
        box-shadow: none;
        border-radius: 0;
    }
    ul.menu[hidden] {
        display: flex !important;
    }
    .menu-entrar {
        display: none !important;
    }
    .entrar-desktop {
        display: inline-block !important;
    }
}

#sobre-nos {
    position: relative;
    z-index: 99999;
    display: flex;
    justify-content: space-between;
    gap: 32px;

    .sobre-nos__left {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 32px;
        width: 660px;

        h2 {
            font-size: 52px;
        }

        p {
            font-size: 18px;
            font-weight: 300;
        }
    }

    .sobre-nos__right {
        
    }

    .sobre-nos__buttons {
        display: flex;
        align-items: center;
        gap: 24px;

        a {
            transition: .3s;

            &:hover {
                transition: .3s;
                scale: 1.1;
            }
        }
    }
}

@media (max-width: 1024px) {
    #sobre-nos {
        flex-wrap: wrap;
    }

    #sobre-nos .sobre-nos__left {
        width: 100%;
    } 

    #sobre-nos .sobre-nos__right {
        height: 500px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;

        img {
            height: 100%;
            width: 100%;
            -o-object-fit: contain;
               object-fit: contain;
        }
    }

    .sobre-nos__buttons {
        justify-content: right;
        flex-direction: row-reverse;
    }
}
#para-todos {
    text-align: center;
    margin: 80px auto;

    h3 {
        font-size: 52px;
    }

    .cards-forEveryone  {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: space-between;
        margin-top: 70px;

        .card-forEveryone {
            flex: 1 1 300px;
            height: 350px;

            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 30px;

            .card-forEveryone__text {
                h4 {
                    font-size: 24px;
                    margin-bottom: 30px;
                }
    
                p {
                    margin: 0 auto;
                    width: 260px;
                    font-size: 1rem;
                    font-weight: 300;
                }
            }
        }
    }
}

@media (max-width: 1024px) {
    #para-todos .cards-forEveryone {
        gap: 100px;
    }
}
#numeros {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    align-items: center;

    & > div {
        display: flex;
        gap: 24px;
        justify-content: center;
        align-items: center;
        flex: 1 1 250px;

        .bubble-element {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        & > div {
            strong {
                font-size: 24px;
            }

            p {
                font-size: 14px;
            }
        }
    }

    .numeros_title {
        text-align: center;
        font-size: 32px;
        padding: 30px;
        background-color: var(--primary_color);
        border-radius: 15px 15px 15px 0;

        p {
            color: var(--white_color);
        }
    }
}
#report {
    padding: 50px 0 50px 0;
    text-align: center;
    background-color: var(--gray_color);

    & > span {
        font-family: 'Quicksand';
        font-weight: bold;
    }
    
    & > h3 {
        font-size: 52px;
        margin-top: 20px;
    }

    .container {
        text-align: initial;
        span {
            font-size: 14px;
        }


        .report_container {
            display: flex;
            justify-content: space-between;
            gap: 40px;

            .report_container--left {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 400px;

                img {
                    width: 400px;
                }
            }
            
            .report_container--right {
                .report_container--right_main {
                    display: flex;
                    flex-wrap: wrap;

                    & > div {
                        display: flex;
                        flex-direction: column-reverse;
                        justify-content: space-between;
                        flex: 1 1 300px;
                        padding: 24px;

                        height: 250px;

                        strong {
                            font-size: 25px;
                            font-family: 'Inter';
                        }

                        p {
                            font-size: 14px;
                        }
                    }
                }
            }
        }
    }
}

#report .container .report_container .report_container--right .btn-default {
    margin: 20px 0 0 24px ;
}

#report .container .report_container .report_container--right .report_container--right_main > div > div {
    align-self: flex-start;
}

@media (max-width: 900px) {
    .report_container {
        flex-wrap: wrap-reverse;
    }

    #report .container {
        text-align: center;
    }

    #report .container .report_container .report_container--right .report_container--right_main > div > div {
        align-self: anchor-center;
    }

    #report .container .report_container .report_container--left {
        width: 100%;

        img {
            width: 300px;
        }
    }
}

@media (max-width: 632px) {
    #report .container .report_container .report_container--right .btn-default {
        width: 100%;
        margin: 0;
    }

    #report .container .report_container .report_container--left {
        img {
            width: 100%;
        }
    }
}
#consultas {
    background-color: var(--gray_color);
    padding: 100px 0;

    .plans-opcao {
        display: flex;
        gap: 20px;
        align-items: center;
        width: 500px;
        margin: 0 auto;

        h4 {
            font-size: 42px;
            font-weight: 500;
        }
    }
    
    & > div > .pre-pago__header {
        padding: 64px 0;
        width: 500px;
        margin: 0 auto;
        text-align: center;

        display: flex;
        flex-direction: column;
        gap: 32px;

        span {
            font-weight: 700;
        }

        h3 {
            font-size: 52px;
        }

        p {
            font-size: 18px;
            font-family: 'Quicksand';
        }
    }

    .pre-pago__main {
        & > .container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            .product-card {
                flex: 1 1 350px;
                border: 1px solid #ccc;
                border-radius: 20px;
                padding: 10px;
                display: flex;
                flex-direction: column;
                box-shadow: 0px 0px 25px rgba(0, 0, 0, .4);

                .product-card__header {
                    height: 200px;
                    padding-bottom: 10px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 10px;

                    h5 {
                        font-size: 30px;
                        font-family: 'Inter';
                        height: 72px;
                    }

                    p {
                        font-size: 14px;
                        height: 60px;
                    }

                    & > div {
                        position: relative;
                        .cifrao {
                            position: absolute;
                            font-size: 12px;
                            font-family: 'Inter';
                            font-weight: 900;
                        }

                        .dinheiro {
                            margin-left: 20px;
                            font-size: 18px;
                            font-weight: 900;
                            font-family: 'Inter';
                        }
                    }

                    .produto-card__header--link {
                        background-color: var(--primary_color);
                        display: block;
                        width: 100%;
                        height: 43px;
                        min-height: 43px;
                        max-height: 43px;
                        border-radius: 15px;

                        display: flex;
                        justify-content: center;
                        align-items: center;
                        color: white;
                        font-weight: bolder;
                        font-family: 'Quicksand';
                        
                        transition: .3s;

                        &:hover {
                            transition: .3s;
                            scale: 1.05;
                        }
                    }

                    span {
                        font-size: 14px;
                    }

                    border-bottom: 1px solid #ccc;
                }

                .product-card__queires {
                    margin-top: 10px;
                    padding: 10px;

                    color: white;
                    font-family: 'Quicksand';
                    background-color: var(--primary_color);
                    border-radius: 15px;
                    flex: 1 1 auto;
                    display: flex;
                    flex-direction: column;
                    justify-content: flex-start;
                    min-height: 60px;

                    ul {
                        li {
                            display: flex;
                            gap: 10px;
                            align-items: center;
                            font-size: 14px;
                            padding: 5px 0;

                            i {
                                font-size: 12px;
                            }

                            transition: .3s;

                            &:hover {
                                transition: .3s;
                                scale: 1.01;
                            }
                        }
                    }

                    .plano-base-info {
                        p {
                            color: white;
                            font-weight: 600;
                            font-size: 16px;
                            width: 200px;
                            margin: 0 auto;
                            text-align: center;
                            font-family: 'Quicksand';

                            strong {
                                color: white;
                            }
                        }
                    }
                }
            }
        }
    }

    #pos-pago {
        margin-top: 110px;
        background: var(--primary_color);
        
        .pos-pago-static {
            width: 50%;
            color: #fff;
            padding: 60px 0 40px 0;
            border-radius: 0;
            margin: 0 auto;
            max-width: 100vw;
            min-height: 500px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
    
            .static-header {
                display: flex;
                align-items: center;
                justify-content: space-between;
                flex-wrap: wrap;
                gap: 30px;
                width: 90%;
    
                & > div {
                    h2 {
                        font-weight: bold;
                        margin-bottom: 10px;
                        text-align: left;
                        color: white;
                        font-family: 'Inter';
                        font-size: 40px;
                    }
        
                    p {
                        color: #FFCE87;
                        font-size: 15px;
                    }
                }
    
                strong {
                    color: white;
                    font-size: 13px;
                    font-family: 'Inter';
                }
            }
            .pos-pago-sub {
                font-size: 20px;
                color: #f3f3f3;
                margin-bottom: 40px;
            }
            .pos-pago-beneficios {
                display: flex;
                justify-content: center;
                gap: 60px;
                margin-bottom: 60px;
                width: 90%;
                .beneficios-lista {
                    flex: 1;
                    ul {
                        display: flex;
                        flex-wrap: wrap;
                        justify-content: space-between;
                        gap: 10px;
                        list-style: none;
                        padding: 0;
                        margin: 0;
                        li {
                            flex: 1 1 280px;
                            text-align: left;
                            font-size: 18px;
                            margin-bottom: 18px;
                            display: flex;
                            align-items: center;
                            font-family: 'Quicksand';
                            gap: 10px;
                            i {
                                color: #FFCE87;
                            }
                        }
                    }
                }
            }
            .pos-pago-bottom {
                
                a {
                    transition: .3s;
    
                    &:hover {
                        transition: .3s;
                        scale: 1.03;
                    }
                }
    
                display: flex;
                justify-content: center;
                gap: 60px;
                width: 100%;
                max-width: 900px;
                margin-top: 30px;
                .contato-email, .contato-whatsapp {
                    flex: 1;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    span {
                        font-size: 16px;
                        font-weight: 600;
                        margin-bottom: 18px;
                    }
                    .btn-email, .btn-whatsapp {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        gap: 10px;
                        font-size: 20px;
                        font-weight: 600;
                        border-radius: 30px;
                        border: none;
                        padding: 16px 48px;
                        background: #f3f3f3;
                        color: #ff6600;
                        text-decoration: none;
                        margin-top: 10px;
                        transition: 0.2s;
                    }
                    .btn-whatsapp {
                        background: #25d366;
                        color: #fff;
                    }
                }
            }
        }
    }

    @media (max-width: 900px) {
        .pos-pago-static .pos-pago-beneficios,
        .pos-pago-static .pos-pago-bottom {
            flex-direction: column;
            gap: 30px;
            max-width: 100%;
        }
    }
}

@media (max-width: 768px) {
    #plans .plans-opcao, #plans > div > .pre-pago__header {
        width: 100%;
    }

    #plans .pos-pago-static .pos-pago-beneficios .beneficios-lista ul {
        flex-direction: column;
        align-items: center;
    }

    #plans .pos-pago-static .pos-pago-beneficios .beneficios-lista ul li {
        flex: initial !important;
    }

    #plans #pos-pago .pos-pago-static {
        width: 80%;
    }

    .static-header{
        flex-direction: column;
        align-items: center;
        margin-bottom: 50px;
        gap: initial;
    }

    #plans .plans-opcao {
        flex-direction: column;
        justify-content: center;
    }

    #formContacts > .container > .formContacts_container > .formContacts_container--left {
        width: 100% !important;

        img {
            width: 100% !important;
        }
    }

    #consultas > div > .pre-pago__header {
        width: 90%;
    }


    #consultas > .plans-opcao {
        flex-direction: column;
        width: 90%;
    }
}
#como-funciona {
    background-color: var(--gray_color);
    padding: 100px 0 50px 0;
    text-align: center;

    & > span {
        font-family: 'Quicksand';
        font-weight: bold;
    }
    
    & > h3 {
        font-size: 52px;
        margin-top: 20px;
    }

    .container {
        text-align: initial;
        span {
            font-size: 14px;
        }


        .metodologies_container {
            display: flex;
            justify-content: space-between;
            gap: 40px;

            .metodologies_container--left {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 400px;

                img {
                    width: 400px;
                }
            }
            
            .metodologies_container--right {
                margin-top: 100px;
                width: 100%;
                .metodologies_container--right_main {
                    display: flex;
                    flex-wrap: wrap;
                    width: 100%;
                    
                    & > div {
                        display: flex;
                        flex-direction: column-reverse;
                        justify-content: space-between;
                        flex: 1 1 300px;
                        padding: 24px;
                        
                        height: 130px;

                        strong {
                            font-size: 25px;
                            font-family: 'Inter';
                        }

                        p {
                            font-size: 14px;
                        }
                    }
                }
            }
        }
    }
}

#metodologies .container .metodologies_container .metodologies_container--right .btn-default {
    margin: 20px 0 0 24px ;
}

#metodologies .container .metodologies_container .metodologies_container--right .metodologies_container--right_main > div > div {
    align-self: flex-start;
}

@media (max-width: 900px) {
    .metodologies_container {
        flex-wrap: wrap-reverse;
    }

    #metodologies .container {
        text-align: center;
    }

    #metodologies .container .metodologies_container .metodologies_container--right .metodologies_container--right_main > div > div {
        align-self: anchor-center;
    }

    #metodologies .container .metodologies_container .metodologies_container--left {
        width: 100%;

        img {
            width: 300px;
        }
    }
}

@media (max-width: 632px) {
    #metodologies .container .metodologies_container .metodologies_container--right .btn-default {
        width: 100%;
        margin: 0;
    }

    #metodologies .container .metodologies_container .metodologies_container--left {
        img {
            width: 100%;
        }
    }
}
#formContacts {
    background-color: var(--gray_color);
    padding: 50px 0 100px 0;
    text-align: center;

    & > span {
        font-family: 'Quicksand';
        font-weight: bold;
    }
    
    & > h3 {
        font-size: 52px;
        margin-top: 20px;
    }

    .container {
        text-align: initial;
        span {
            font-size: 14px;
        }


        .formContacts_container {
            display: flex;
            justify-content: space-between;
            gap: 40px;

            .formContacts_container--left {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 400px;

                img {
                    width: 400px;
                }
            }
            margin-top: 40px;
            
            .formContacts_container--right {
                display: flex;
                flex-direction: column;
                gap: 32px;
                max-width: 698px;
                padding: 24px;

                p {
                    font-size: 18px;
                }

                form {
                    gap: 32px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;

                    input {
                        padding: 15px;
                        border-radius: 5px;                                                                                             
                        outline: none;
                        border: 1px solid #ececec;
                    }

                    button {
                        background-color: var(--primary_color);
                        border: none;
                        font-size: 16px;
                        color: white;
                        font-weight: 700;
                        border-radius: 10px;
                        height: 47px;
                    }
                }
            }
        }
    }
}

@media (max-width: 768px) {
    #formContacts .container .formContacts_container {
        flex-wrap: wrap-reverse;
        justify-content: center;
    }
}
footer {
    padding: 50px 0;

    .container {
        display: flex;
        align-items: center;
        gap: 40px;

        img {
            height: 37px;
        }

        p {
            font-weight: 500;
        }
    }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--white_color);
}

h1, h2, h3, h4, h5, p, span, li {
  cursor: default;
}

h1, h2, h3, h4, h5, p, span, a, strong {
  color: var(--black_color);
}

h1, h2, h3, h4, h5, strong, span {
  font-family: "Quicksand";
}

p, a {
  font-family: "Inter";
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 85%;
  margin: 0 auto;
}

.btn-hire_now {
  text-align: center;
  color: var(--white_color);
  width: 150px;
  display: block;
  background-color: var(--primary_color);
  padding: 12px;
  border-radius: 8px;
}

.btn-know_more_unique {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sm-title-session {
  font-size: 14px;
  color: #89988E;
  text-transform: uppercase;
}

.btn-default {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 53px;
  background-color: var(--primary_color);
  padding: 10px 0;
  margin: 0 auto;
  color: var(--white_color);
  font-weight: 600;
  border-radius: 10px;
  transition: 0.3s;
}
.btn-default:hover {
  scale: 1.05;
  transition: 0.3s;
}

.second-line {
  position: absolute;
  bottom: 180px;
}

@media (max-width: 1440px) {
  .container {
    width: 95%;
  }
}
