@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html {
    scroll-behavior: smooth;
    /* scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1; */
}

body {
    display: flex;
    justify-content: center;
    margin: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    letter-spacing: normal;
    font-weight: 400;
    color: var(--font-color-default);
    background-color: var(--white-1);
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--background-scroll-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color-hover);
}

:root {
    --primary-color: #8e4001;
    --secondary-color: #5b2900;
    --background-scroll-color: rgba(91, 41, 0, 0.521);
    --gradient-background: linear-gradient(180deg, #423257 0%, #523873 48.56%, #423257 69.71%);
    --font-color-highlight: #423257;
    --font-color-default: #333333;
    --font-color-white: #fff;
    --font-color-header: #111211;
    --font-color-question: #4d4d4d;
    --font-color-answer: #666666;
    --black-1: #000;
    --black-2: #1a1a1a;
    --black-3: #393939;
    --white-1: #fff;
    --white-2: #F9F7F2;
    --white-3: #F9F9FB;
    --gray-1: #555555;
    --blue-1: #788EB4;
    --blue-2: #243568;
    --blue-3: #fff;
    --shadow-header: 0px 24.58px 58.52px 0px #95959514;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    cursor: pointer;
}

img {
    -webkit-user-drag: none;
    object-fit: contain;
    width: 100%;
}

.container-area {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 1080px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1600px;
    margin: 0px 5%;
    height: 100%;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 100%;
    transition: all 0.3s;
    border-radius: 0px;

    &.login {
        color: var(--black-1);
        background: var(--white-1);
        border: 1px solid var(--white-1);
        min-width: 135px;
        max-width: 135px;
        min-height: 28px;
        height: 36px;
        font-weight: 400;
        font-size: 13px;
        text-align: center;
        vertical-align: middle;
        border-radius: 2px;
        padding: 0 5px;

        &:hover {
            border-color: var(--primary-color);
            box-shadow: 0px 0px 1px 0px var(--primary-color);
        }
    }

    &.register {
        color: var(--font-color-white);
        background: var(--primary-color);
        padding: 8px 16px;
        gap: 10px;
        text-align: center;
        font-weight: 600;
        font-size: 15px;
        text-transform: uppercase;

        @media screen and (max-width:890px) {
            min-height: 44px;
            font-size: 16px;
        }

        @media screen and (max-width: 500px) {
            font-size: 14px;
        }

        &:hover {
            background: var(--secondary-color);
        }
    }
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0px;
}

section,
header,
footer {
    display: flex;
    justify-content: center;
    width: 100%;
}


.area-1 {

    .container {
        width: 85%;
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        padding: 35px 0;

        @media screen and (max-width: 550px) {
            flex-direction: column;
            gap: 30px;
        }

        .logo {
            width: 230px;
            height: 82px;

            img {
                width: 100%;
            }
        }
    }
}

.area-2 {
    background-image: url('https://bucket-seed.s3.us-east-2.amazonaws.com/maduu.com.br/lp/main_banner.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 310px;
    max-width: 1850px;
    justify-self: center;
    align-self: center;

    @media screen and (max-width:890px) {}

    .container {
        justify-content: flex-end;

        .box {
            margin: 0 auto 28px;

            @media screen and (max-width: 500px) {
                margin: 0 auto 10px;

            }

            h1 {
                color: var(--white-1);
                font-weight: 600;
                font-size: 54px;
                line-height: 1.16;
                letter-spacing: 0;
                text-align: center;

                @media screen and (max-width: 638px) {
                    font-size: 43px;
                    line-height: 1.0;
                }
            }

            .subtitle_container {
                background-color: var(--white-1);
                padding: 5px;

                h2 {
                    font-weight: 300;
                    font-size: 18px;
                    line-height: 100%;
                    letter-spacing: 0;
                    text-align: center;
                    text-transform: uppercase;

                    @media screen and (max-width: 638px) {
                        font-size: 14px;
                    }

                }
            }
        }
    }
}

.area-3 {
    .container {
        .box__container {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            width: 942px;
            margin: 65px auto;

            @media screen and (max-width: 1024px) {
                flex-direction: column;
                width: min(400px, 100%);
                justify-content: center;
                align-content: center;
                gap: 30px;
            }

            @media screen and (max-width: 500px) {
                gap: 20px;
            }

            .box {
                width: 400px;
                width: min(400px, 100%);
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: flex-start;

                @media screen and (max-width: 1024px) {
                    flex-direction: column-reverse;
                    gap: 15px;
                    align-items: center;
                }

                p {
                    font-weight: 400;
                    font-size: 15px;
                    line-height: 1.75;
                    letter-spacing: 0;
                    text-align: left;

                    @media screen and (max-width: 1024px) {
                        text-align: center;
                    }

                    strong {
                        font-weight: 700;
                        font-size: 15px;
                        line-height: 1.75;
                        letter-spacing: 0;
                    }
                }

                .text {
                    &.left {
                        max-width: 384px;

                        @media screen and (max-width: 1024px) {
                            max-width: min(384px, 90%);
                        }
                    }

                    &.right {
                        margin-top: 13px;
                    }
                }

                .button.register {
                    width: 149px;
                    height: 38px;
                }
            }
        }
    }
}

.area-4 {
    .container {
        flex-direction: column;
        align-items: center;
        padding: 33px 0 50px;

        h2 {
            font-family: Montserrat;
            font-weight: 600;
            font-size: 35px;
            line-height: 1.45;
            letter-spacing: 0;
            text-align: center;
            text-transform: uppercase;

            @media screen and (max-width: 500px) {
                font-size: 32px;
            }

        }

        .box__container {
            display: flex;
            flex-direction: row;
            justify-content: center;
            gap: 30px;
            margin: 60px 0 0;
            flex-wrap: wrap;

            @media screen and (max-width: 500px) {
                margin: 30px 0 0;
            }

            .box {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: flex-start;
                gap: 8px;
                width: 220px;

                p {
                    text-align: left;
                    font-weight: 400;
                    font-size: 15px;
                    line-height: 1.75;
                    letter-spacing: 0;

                    strong {
                        font-weight: 700;
                    }
                }
            }
        }
    }
}

.area-5 {
    border-top: 1px solid #E1E1E1;

    .container {
        padding: 50px 0;

        h2 {
            font-weight: 600;
            font-size: 35px;
            line-height: 1.45;
            letter-spacing: 0%;
            text-align: center;
            text-transform: uppercase;
            margin: 21px auto 50px;

            @media screen and (max-width: 500px) {
                font-size: 32px;
            }
        }

        .box__container {
            display: flex;
            flex-direction: row;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap-reverse;

            .box {
                display: flex;
                flex-direction: column;
            }

            .box.left {
                max-width: 411px;
                gap: 30px;

                img {
                    width: 100%;
                    aspect-ratio: 1/1;
                }

                .button {
                    width: 100%;
                }
            }

            .box.right {
                width: 265px;
                gap: 35px;

                .number {
                    width: 30px;
                    height: 35px;
                }

                .card {
                    display: flex;
                    flex-direction: row;
                    align-items: flex-start;
                    justify-content: center;
                    gap: 15px;

                    .text {
                        display: flex;
                        flex-direction: column;
                        padding-top: 0px;
                        gap: 8px;

                        h3 {
                            font-weight: 700;
                            font-size: 15px;
                            line-height: 1.75;
                            letter-spacing: 0;
                            text-align: left;
                        }

                        .text_content {
                            font-weight: 400;
                            font-size: 15px;
                            line-height: 1.75;
                            letter-spacing: 0;
                            text-align: left;
                        }
                    }
                }
            }
        }
    }
}

.area-6 {
    border-top: 1px solid #E1E1E1;

    .container {
        align-items: center;
        padding: 50px 0;

        h2 {
            font-weight: 600;
            font-size: 35px;
            line-height: 1.45;
            letter-spacing: 0;
            text-align: center;
            text-transform: uppercase;
            margin-bottom: 50px;

            @media screen and (max-width: 500px) {
                font-size: 32px;
            }
        }

        .box__container {
            display: flex;
            flex-direction: row;
            justify-content: center;
            gap: 35px;
            flex-wrap: wrap;

            .box {
                display: flex;
                flex-direction: column;
                gap: 30px;
                width: 220px;

                @media screen and (max-width: 811px) {
                    gap: 15px;
                }

                .text {
                    font-weight: 400;
                    font-size: 15px;
                    line-height: 1.75;
                    letter-spacing: 0px;
                }
            }
        }
    }
}

.area-faq {
    border-top: 1px solid #E1E1E1;

    .container {
        padding: 55px 0px;
        align-items: center;

        @media screen and (max-width:890px) {
            padding: 45px 0px;
        }

        .box__title {
            .faq-title {
                font-family: Montserrat;
                font-weight: 600;
                font-size: 35px;
                line-height: 1.45;
                letter-spacing: 0;
                text-align: center;
                text-transform: uppercase;

                @media screen and (max-width: 500px) {
                    font-size: 32px;
                }
            }

            .text {
                font-weight: 400;
                font-size: 15px;
                line-height: 1.75;
                letter-spacing: 0%;
                text-align: center;
            }
        }

        .box__questions {
            display: flex;
            flex-direction: column;
            /* gap: 30px; */

            .more {
                font-weight: 400;
                font-size: 15px;
                line-height: 1.00;
                letter-spacing: 0;
                text-decoration: underline;
                color: var(--primary-color);
                align-self: flex-start;
                justify-self: right;
                margin-left: 10px;

                &:hover {
                    text-decoration: dashed;
                }
            }
        }

        .button.register {
            width: 275px;
            height: 38px;
            margin-top: 50px;
        }

        .faq-container {
            max-width: 756px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 5px;
            padding-top: 45px;
            padding-bottom: 15px;
            width: 100%;

            @media screen and (max-width:950px) {
                padding-top: 35px;
            }

            .faq-item {
                border-radius: 4px;
                overflow: hidden;
                height: fit-content;

                hr {
                    border-color: #f3e4d8;
                    transition: border-color 0.4s linear;
                    margin: 0;
                    overflow: hidden;
                }

                &.active {
                    height: fit-content;


                    .faq-button span {
                        transition: all 0.4s linear;
                        color: var(--primary-color);
                    }
                }

                .faq-button {
                    width: 100%;
                    padding: 8px 10px;
                    min-height: 36px;
                    display: flex;
                    justify-content: space-between;
                    background-color: var(--white-1);
                    align-items: center;
                    border: none;
                    cursor: pointer;
                    text-align: left;
                    gap: 15px;
                    outline: none;
                    box-shadow: none;
                    position: relative;
                    z-index: 10;

                    span {
                        font-weight: 500 !important;
                        color: var(--font-color-question) !important;
                        font-size: 18px !important;
                        line-height: 1.2 !important;

                        @media screen and (max-width:550px) {
                            font-size: 15px !important;
                        }
                    }

                    .toggle-icon {
                        svg {
                            transition: all 0.2s linear;
                            width: 30px;
                            height: 30px;
                        }
                    }
                }

                .answer {
                    padding: 0 20px;
                    width: 100%;
                    font-size: 15px !important;
                    font-weight: 400 !important;
                    color: var(--font-color-answer) !important;
                    position: relative;
                    z-index: 1;
                    top: 0px;
                    max-height: 200px;
                    transition: all 0.4s linear;

                    @media screen and (max-width:550px) {
                        font-size: 13px !important;
                    }

                    a,
                    h1,
                    h2,
                    span,
                    td,
                    p {
                        font-size: 15px !important;
                        font-weight: 400 !important;
                        color: var(--font-color-answer) !important;
                        margin: 0px !important;
                        padding: 0px !important;

                        @media screen and (max-width:550px) {
                            font-size: 13px !important;
                        }
                    }

                    &.hidden {
                        top: -40px;
                        max-height: 0px;
                        transition: all 0.4s linear;
                    }
                }
            }
        }
    }
}

.area-7 {
    background-color: var(--black-1);
    color: var(--white-1);

    .container {
        align-items: center;
        padding: 50px 0;

        h2 {
            font-weight: 600;
            font-size: 35px;
            line-height: 1.45;
            letter-spacing: 0;
            text-align: center;
            text-transform: uppercase;
        }

        p {
            font-weight: 400;
            font-style: Bold;
            font-size: 15px;
            line-height: 1.75;
            letter-spacing: 0;
            text-align: center;
            max-width: 414px;
            margin: 30px auto;

            strong {
                font-weight: 700;
            }
        }

        .button.register {
            width: 203px;
            height: 38px;
        }
    }
}

.area-footer {
    background: var(--black-1);
    color: var(--white-1);
    flex-direction: column;
    border-top: 0px solid #3D3D3D;
    align-items: center;

    .container {
        .box-footer {
            width: 100%;
            padding: 10px 0px;
            display: flex;
            font-weight: 600;
            justify-content: space-between;
            font-size: 14px;

            @media screen and (max-width:650px) {
                flex-direction: column;
                align-items: center;
                gap: 5px;
            }
        }

        .box__footer {
            margin: 60px auto 80px;
            display: flex;
            flex-direction: row;
            justify-content: center;
            gap: 50px;
            align-items: center;
            flex-wrap: wrap;

            @media screen and (max-width: 750px) {
                flex-direction: column;
            }

            img {
                width: 200px;
                height: 41px;
            }

            .box__social_media {
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                gap: 15px;
            }

        }
    }
}