:root {
    --grafite: #222633;
    --grafitedark: #11131A;
    --grafitelight: #4D5673;
    --verde: #3DE096;
    --verde-light: #3DE09626;
    --verde-escuro: #2BA16C;
    --gray100: #fdfdfd;
    --gray200: #EDF0F7;
    --gray300: #E2E7F0;
    --gray400: #CBD2E0;
    --gray500: #A0ABC0;
    --gray700: #717D96;
}

html {
    scroll-behavior: smooth;
}

body {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.hero-client-section {
    background-color: var(--grafitedark);
    padding: 3rem 8rem;
    color: #fdfdfd;
    height: fit-content;
    display: flex;
    flex-direction: row;
    gap: 4rem;
    align-items: center;
}

.hero-client-section .hero-client-section-description {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 1rem;
    height: 100%;
    width:60%
}


.hero-client-section .hero-client-section-description .hero-client-section-title {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-client-section .hero-client-section-description .hero-client-section-title h1 {
    font-size: 2.7vw;
}

.hero-client-section .hero-client-section-description .hero-client-section-title h1 span {
    color: #fdfdfd;
    background: linear-gradient(90deg, rgba(253,253,253,0) 0%, rgba(61,224,150,1) 100%);
    padding: 0.3rem 2rem 0.3rem 0;
    border-bottom-right-radius:50px;
    border-top-right-radius: 50px;
}

.hero-client-section .hero-client-section-description .hero-client-section-title p {
    width: 70%;
    font-size: 1.5rem;
}

.hero-client-section .hero-client-section-description .hero-client-section-title p span{
    color: var(--verde);
}

.hero-client-section .hero-client-section-description img {
    width: 125px;
    height: auto;
}

h1, h2 {
    font-family: 'Manrope', sans-serif;
    margin: 0;
}

p {
    font-family: 'Fredoka', sans-serif;
    margin: 0;
}

.hero-client-section #login-form {
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    background-color: #fdfdfd;
    color: var(--grafitedark);
    border-radius: 3rem;
    width: 40%;    
}

.hero-client-section #login-form p {
    margin-bottom: 1rem;
    color: var(--grafitelight);
}

.hero-client-section #login-form h1 {
    margin-bottom: 0.4rem;
    color: var(--grafite);
    font-weight: 700;
}

.hero-client-section .form-control {
    font-family: 'Fredoka', sans-serif;
    font-size: 1rem;
    height: 48px;
    border: 1px solid #E2E7F0;
    border-radius: 2rem;
    padding: 0 1rem;
    margin-bottom: 1rem;
}
.hero-client-section .toggle-password {
    color: var(--grafite);
    margin-bottom: 1rem;
    width: fit-content;
    font-family: 'Fredoka', sans-serif;
    
}

.togglePasswordRow {
    cursor: pointer;
    margin-bottom: 1rem;
}

.togglePasswordRow i {
    margin-right: 0.25rem;
}

.help-links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-family: 'Fredoka', sans-serif;
    font-size: 0.9rem;
}

.help-links a {
    color: var(--gray700);
    text-decoration: underline 0.1rem #717D9600;
    transition: text-decoration-color 600ms;
}

.help-links a:visited {
    color: var(--gray700);
}

.help-links a:hover {
    text-decoration-color: #717D96ff;
    transition: text-decoration ease-in-out .3s; 
}

.botao-submit {
    background-color: var(--verde);
    width: 100%;
    height: 3rem;
    border-radius: 2rem;
    color: var(--gray100);
    border: none;
    font-size: 1rem;
    font-family: 'Fredoka', sans-serif;
    margin-top: 1rem;
    cursor: pointer;
    transition: 600ms ease-in-out;
}

.botao-submit:hover {
    background-color: var(--verde-escuro);
}

.btn-download {
    display: flex;
    flex-direction: row;
    gap: 0.4rem;
    align-items: center;
    font-size: 1rem;
    font-family: 'Fredoka', sans-serif;
    border: 1px solid var(--verde);
    width: max-content;
    border-radius: 2rem;
    padding: 0.2rem 1rem 0.2rem 0.2rem;
    cursor: pointer;
    transition: 600ms ease-in-out;
    text-decoration: none;
    color: var(--verde);
}

.btn-download:active {
    color: var(--verde) !important;
}

.btn-download i {
    background-color: var(--verde);
    display: flex;
    align-items: center;
    justify-content:center;
    color: var(--grafite);
    border-radius:2rem;
    width:20px;
    height:20px;
    padding:0.5rem;
    font-size: 1.4rem;
}

.btn-download:hover {
    background-color: var(--verde);
    color: var(--grafitedark);
}

.video-section {
    padding: 6rem;
    display: flex;
    flex-direction: row;
    justify-content:space-around;
    align-items: center;
}

.video-section iframe {
    border-radius: 2rem;
    width: 40%;
}

.video-section .video-section-description {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 50%;
}

.video-section .video-section-description .video-section-title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: fit-content;
}

.video-section .video-section-description .video-section-title h1 {
    font-size: 2.5rem;
}

.video-section .video-section-description .video-section-title h1 span{
    color: var(--verde);
}

.video-section .video-section-description .video-section-title p {
    width: 90%;
    font-size: 1.5rem;
    color: var(--grafitelight);
    line-height: 2rem;
}

.video-section .video-section-description .p-tags {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
}

.video-section .video-section-description .p-tags .p-tag {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    background-color: var(--grafite);
    border-radius: 2rem;
    padding: 0.2rem 1rem 0.2rem 0.2rem;
    color: var(--gray100);
    align-items: center;
    width: max-content;

}

.video-section .video-section-description .p-tags .p-tag i {
    background-color: var(--verde);
    padding: 0.4rem;
    margin: 0.1rem 0 0.1rem 0.1rem;
    font-size: 1.125rem;
    color: var(--gray100);
    border-radius: 2rem;
}

.download-section {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 4rem;
    align-items: center;
}

.download-section .download-section-links {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 1rem;
    align-items: center;
    width: 50%;
    
}

.download-section .download-section-links .box-download {
    padding: 2.5rem 2.5rem 1.5rem 2.5rem;
    width: 50%;
    background-color: var(--gray200);
    border: 1px var(--gray400) solid;
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.download-section .download-section-links .box-download h2 {
    font-size: 2rem;
    color: var(--grafite);
}

.download-section .download-section-links .box-download p {
    color: var(--grafitelight);
}

.download-section .download-section-links .box-download .box-btn{
    display: flex;
    flex-direction: row-reverse;
}

.download-section .download-section-links .box-download .box-btn a {
    text-decoration: none;
}

.download-section img {
    max-width: 50%;
    height: 60%;
}

.faq-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5rem;
    padding: 6rem 6rem 12rem 6rem;
    background-color: var(--gray200);

}

.faq-section .faq-title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-section .faq-title h2 {
    font-size: 2.5rem;
    color: var(--grafite);
}

.faq-section .faq-title p {
    font-size: 1.5rem;
    color: var(--grafitelight);
}

.faq-section .faq-cards {
    display: flex;
    flex-direction: row;
    gap: 4rem;
}

.faq-section .faq-cards a {
    text-decoration: none;
    padding: 1.75rem 1.75rem 1.875rem 2.25rem;
    background-color: var(--gray100);
}

.faq-section .faq-cards a p {
    color: var(--gray700);
    font-size: 1.125rem;
    font-weight: 800;
    font-family: 'Manrope', sans-serif;
}

.faq-section .faq-cards a i {
    font-size: 1.125rem;
    color: var(--gray500);
}

.suporte-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 6rem;
    padding: 6rem;
    align-items: center;
}

.suporte-section .suporte-info {
    display: flex;
    flex-flow: column;
    gap: 2rem;
    width: 40%;
}

.suporte-section .suporte-info .suporte-title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.suporte-section .suporte-info .suporte-title h2 {
    font-size: 2.5rem;
    color: var(--grafite);
}

.suporte-section .suporte-info .suporte-title p {
    font-size: 1.5rem;
    color: var(--grafitelight);
}


.suporte-contact {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
}

.suporte-contact i {
    color: var(--verde);
    background-color: var(--verde-light);
    border-radius: 2rem;
    padding:0.5rem;
    font-size: 1.4rem;
}

.suporte-contact .suporte-box h3 {
    margin: 0;
    color: var(--grafite);
    font-family: 'Manrope', sans-serif;
    font-size: 1.125rem;
}

.suporte-contact .suporte-contact p {
    font-size: 1.14rem;
    color: var(--grafite);
    font-family: 'Fredoka', sans-serif;
}

.suporte-section .suporte-box .box-hours-up .box-hours p{
    font-size: 1.125rem;
    color: var(--grafite);
    font-family: 'Manrope', sans-serif;
}

.suporte-box {
    border: 1px solid var(--gray200);
    border-radius: 1rem;
    padding: 1rem;
}

.suporte-box-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.suporte-box-column i {
    height: max-content;
}

.suporte-box-row {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    width: 100%;
}

.box-hours-up {
    display: flex;
    flex-direction: row;
    gap: 0.6rem;
    align-items: center;
}

.box-hours-up i {
    font-size: 2rem;
    color: var(--verde);
    background-color: var(--verde-light);
    padding: 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 1rem;
}

.suporte-socials {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: space-around;
}

.suporte-socials i {
    font-size: 1.4rem;
}

.suporte-socials a {
    text-decoration: none;
}

.footer {
    padding: 6rem 6rem 2rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 4rem;
    background-color: #11131A;
    color: #fdfdfd;
}

    .footer .footer-logo {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

        .footer .footer-logo .cappta-logo {
            display: flex;
            width: auto;
            height: 32px;
        }

    .footer .footer-text {
        text-align: center;
        border-top: 2px solid #1A202C;
        padding-top: 2rem;
    }

.card {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem 2rem;
    width: max-content;
    align-items: center;
    border-radius: 0.5rem;
    width: 300px;
}

.card-white {
    background-color: var(--gray300);
    color: var(--gray700);
    transition: 600ms ease-in-out;
    cursor: pointer;
}

.card-white:hover {
    background-color: var(--gray400);
    color: var(--gray700);
}

.card-white i {
    color: var(--gray500);
}

.btn {
    height: 3rem;
    font-size: 1rem;
    padding: 0 1rem;
    width: max-content;
    border-radius: 2rem;
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    align-content: center;
    justify-content:center;
    font-family: 'Fredoka', sans-serif;
    height: 3rem;
    cursor: pointer;
}

.btn-primary {
    height: 3rem;
    background-color: var(--verde);
    color: var(--gray100);
    cursor: pointer;
}

.btn-primary-outline {
    border: 2px solid var(--verde);
    color: var(--verde);
    transition: 600ms ease-in-out;
}

.btn-primary-outline:hover {
    background-color: var(--verde);
    color: var(--gray100);
}

.btn-centered {
    padding: 0 2rem;
}

.hero-client-section-buttons {
    margin-top: 100px;
    display:flex;
    flex-direction: column;
    gap:10px;
}

    /*Início Media Queries*/
    @media (max-width: 1024px) {

        .download-section .download-section-links .box-download {
            width: 75%;
        }

        .download-section .download-section-links .box-download h2 {
            font-size: 1.5rem;
            color: var(--grafite);
        }
    }

    @media (max-width: 841px) {

        .hero-client-section {
            height: fit-content;
            flex-direction: column;
            align-content: flex-start;
            flex-wrap: wrap;
        }

        .hero-client-section .hero-client-section-description {
            width: 100%;
        }

        .hero-client-section h1 {
            font-size: 1rem;
        }


        .hero-client-section-buttons {
            margin-top: 0px;
            font-size: smaller;
        }

        .hero-client-section-buttons a{
            font-size: small;
        }

        .hero-client-section {
            padding:3rem 3rem;
        }
    }

    @media (max-width: 480px) {

        .hero-client-section {
            padding: 1.45rem;
            flex-direction: column;
            align-items: center;
            height: fit-content;
            width: fit-content;
            gap: 1rem;
        }

        .hero-client-section #login-form {
            padding: 2rem;
            width: 75%;
        }

        .hero-client-section .hero-client-section-description .hero-client-section-title h1 {
        font-size: 1.7rem;
    }
        .hero-client-section .hero-client-section-description .hero-client-section-title p {
            font-size: 1.25rem;
            width: 90%;
        }
        .hero-client-section .hero-client-section-description .hero-client-section-title h1 span {
            padding-right: 1rem;
        }

        .hero-client-section .hero-client-section-description {
            width: 100%;
        }

        .video-section {
            flex-direction: column;
            padding: 2rem 2rem 0 2rem;
            gap: 1rem;
        }

            .video-section .video-section-description {
                width: 100%;
            }

                .video-section .video-section-description .p-tags {
                    flex-direction: column;
                    gap: 1rem;
                }

            .video-section iframe {
                width: 100%;
                padding: 0;
            }

        .download-section {
            flex-direction: column;
            align-items: center;
            padding: 0;
            margin: 2rem;
        }

            .download-section .download-section-links {
                width: 100%;
                gap: 1rem;
            }

                .download-section .download-section-links .box-download {
                    padding: 2rem;
                    width: 80%;
                    margin: 0;
                }

            .download-section img {
                display: none;
            }

        .faq-section {
            padding: 2rem;
        }

            .faq-section .faq-cards {
                flex-direction: column;
                gap: 1rem;
            }

        .suporte-section {
            flex-direction: column;
            padding: 2rem;
        }

            .suporte-section img {
                display: none;
            }

            .suporte-section .suporte-info {
                width: 100%;
            }

                .suporte-section .suporte-info .suporte-box-column .suporte-socials {
                    flex-direction: column;
                    width: stretch;
                    align-items: center;
                }

                    .suporte-section .suporte-info .suporte-box-column .suporte-socials .btn {
                        width: 75%;
                    }

        .suporte-contact .suporte-box-row {
            flex-direction: column;
            text-align: center;
        }

        .footer {
            padding: 2rem;
        }
    }