@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
}

.material-symbols-outlined {
    font-family: 'Material Icons', sans-serif;
    font-style: normal;
    
}

/*
#######################################
                HEADER
#######################################
*/

header > img {
    width: 60px;
}

nav {
    display: flex;
    width: fit-content;
    padding: 20px 0 20px 0;
}

nav > ul {
    display: flex;
    list-style: none;
    gap: 40px;
    font-weight: 600;
}

.nav-button {
    text-decoration: none;
    padding: 10px 20px;
    color: #010101;
    transition: .3s;
    border-bottom: 3px solid transparent;
}

.nav-button:hover {
    background: #813939;
    border-radius: 16px;
    border-bottom: 3px solid #542020;
    color: #fff;
}

.nav-button-contato {
    text-decoration: none;
    padding: 10px 20px;
    color: #fff;
    border-radius: 16px;
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 12%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
                radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
    transition: .3s;
}

.nav-button-contato:hover {
    filter: brightness(1.2);
}

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 4rem;
    align-items: center;
    justify-content: space-between;
    padding: 0 6rem 0 6rem;
    z-index: 101;
    transition: ease-in-out .3s;
}

.rolar {
    background-color: #fff;
    box-shadow: 0px 1px 8px -4px #010101;
    transition: ease-in-out .3s;
}

.section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 64px;
}

/*
#######################################
                INICIO
#######################################
*/

.inicio {
    background: linear-gradient(to right,transparent 20%,#7e7e7e 34%, #e2e2e2 80%), url(./img/inicio-bg.jpeg) no-repeat;
    background-size: contain;
    height: 100dvh;
    flex-direction: column;
    align-items: end;
    gap: 40px;
    color: #fff;
    position: relative;
}

.inicio::before {
    background: linear-gradient(to top, #7e7e7e 10%, transparent 90%);
    content: "";
    height: 25%;
    width: 34%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.inicio > a {
    text-decoration: none;
    text-align: center;
    font-size: 20px;
    width: 60%;
    color: #fff;
    padding: 20px 10px;
    border-radius: 5px;
    transition: 0.3s;
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 12%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
                radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
}

.inicio > a:hover {
    filter: brightness(1.2);
}

.inicio > h2 {
    max-width: 60%;
    font-size: 2.5rem;
    font-weight: 300;
    color: #3b3b3b;
}

.inicio > h2 > span {
    font-weight: 700;
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 12%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
                radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 60px;
}

.inicio > div {
    display: flex;
    flex-direction: column;
    max-width: 60%;
    gap: 10px;
}

.inicio > div > p {
    font-size: 22px;
    font-weight: 300;
    color: #3b3b3b;
}


/*
#######################################
                RAZOES
#######################################
*/


.razoes {
    flex-direction: column;
    background: linear-gradient(to right,#7e7e7e 34%, #e2e2e2 80%);
    gap: 40px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.razoes > h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #fff;
    text-align: center;
}

.razoes > div {
    display: flex;
    flex-direction: column;
    color: #eed48e;
    gap: 40px;
    font-size: 16px;
    font-weight: 400;
    padding: 40px;
    background-color: #3b3b3b;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    > div {
        display: flex;
        gap: 20px;
        align-items: center;
    }
    > div > p {
        transition: 300ms;
    }

    > div:hover p {
        background-color: #eed48e;
        color: #3b3b3b;
    }
}

.razoes > a {
    text-decoration: none;
    text-align: center;
    font-size: 20px;
    width: fit-content;
    color: #fff;
    padding: 20px 10px;
    border-radius: 5px;
    transition: 0.3s;
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 12%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
                radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
}

.razoes > a:hover {
    filter: brightness(1.1);
}


/*
#######################################
                FAQ
#######################################
*/

.faq {
    flex-direction: column;
    gap: 80px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.faq > h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #3b3b3b;
    text-align: center;
}

.container-faq {
    display: flex;
    justify-content: space-between;
}

.container-faq > img {
    width: 30%;
    height: fit-content;
    transform: scaleX(-1);
    border-radius: 0 0 0 40px;
}

.questions {
    display: flex;
    flex-direction: column;
    justify-content: start;
    width: 60%;
    border-radius: 5px;
    gap: 1px;
}

.toggle-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: start;
    font-size: 16px;
    font-weight: 400;
    background-color: #542020;
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: 300ms;

    span {
        transform: rotate(90deg);
        transition: 200ms;
    }
}


.ul-answers {
    display: grid;
    grid-template-rows: 0fr;
    transition: 300ms ease-in-out;
    margin-left: 20px;
    margin-right: 20px;
    border-left: 5px solid #3b3b3b;
    border-right: 5px solid #3b3b3b;
    > div {
        overflow: hidden;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

.faq > a {
    text-decoration: none;
    text-align: center;
    font-size: 20px;
    width: fit-content;
    color: #fff;
    padding: 20px 10px;
    border-radius: 5px;
    transition: 0.3s;
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 12%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
                radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
}
.faq > a:hover {
    filter: brightness(1.1);
}


.show {
    grid-template-rows: 1fr;
    background-color: #ffffff;
    color: #3b3b3b;
    padding: 15px;
    
    font-weight: 500;
    line-height: 1.5;
    gap: 10px;
}

.rotate {
    > span {
        transform: rotate(-90deg);
    }
}

/*
#######################################
                SOBRE
#######################################
*/

.sobre {
    display: flex;
    flex-direction: column;
    gap: 80px;
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 12%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
    radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
}

.sobre > h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #3b3b3b;
    text-align: center;
}

.sobre-container {
    display: flex;
    flex-direction: row;
    gap: 80px;
}

.sobre-itens {
    display: flex;
    flex-direction: column;
    padding: 60px;
    box-shadow: 1px 0 5px #01010171;
    gap: 80px;
    max-width: 500px;
    border-radius: 20px;
    background: linear-gradient(to left top,#b8b8b8,#dcdcdc,#f8f8f8,#a9a9a9,#808080,#d3d3d3);
    font-size: 20px;
    color: #424242;
    border-left: 2px solid #cccccc;
    font-weight: 600;
}

.sobre > a {
    text-decoration: none;
    text-align: center;
    font-size: 20px;
    width: 40%;
    color: #3b3b3b;
    padding: 20px 10px;
    border-radius: 5px;
    transition: 0.4s;
    background-color: #e2e2e2;
    font-weight: 600;
}

.sobre > a:hover {
    width: 50%;
    box-shadow: 2px 2px 8px #0101019a;
}

/*
#######################################
                RODAPE
#######################################
*/

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6rem;
    background-color: #010101;
    color: #777777;
}

footer img {
    width: 140px;
}

#direitos {
    text-align: center;
}

#endereco {
    text-decoration: none;
    color: #777777;
}

#endereco:hover {
    color: #3191eb;
    cursor: pointer;
}

.reveal-img,
.reveal-title,
.reveal-txt1,
.reveal-txt2 {
    visibility: hidden;
}








@media screen and (max-width: 768px) {
    body {
        background: url(./img/inicio-bg.jpeg) no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }
    #navbar {
        padding: 0 4rem;
    }
    nav > ul {
        gap: 5px;
    }
    .section {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 48px;
    }
    /*
    #######################################
                    INICIO
    #######################################
    */
    .inicio {
        background: linear-gradient(to right,#7e7e7e, #e2e2e2 80%);
        align-items: center;
        gap: 100px;
    }
    .inicio::before {
        height: 0;
        width: 0;
    }
    .inicio > h2 {
        max-width: 80%;
        text-align: center;
    }
    .inicio > div {
        max-width: 100%;
        gap: 60px;
        text-align: center;
    }
    /*
    #######################################
                    RAZOES
    #######################################
    */
    .razoes {
        flex-direction: column;
        background: transparent;
        gap: 100px;
        padding-top: 100px;
        padding-bottom: 100px;
    }
    /*
    #######################################
                    FAQ
    #######################################
    */
    .faq {
        background-color: #f8f8f8;
        gap: 80px;
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .container-faq > img {
        width: 0%;
    }
    .toggle-btn {
        font-size: 14px;
    }
    .toggle-btn > span {
        transform: rotate(90deg);
        transition: 200ms; 
    }
    .questions {
        justify-content: center;
        width: 100%;
        font-size: 12px;
    }
    .rotate {
        > span {
            transform: rotate(-90deg);
        }
    }
    /*
    #######################################
                    SOBRE
    #######################################
    */
    .sobre-itens {
        padding: 40px;
        gap: 40px;
        max-width: 500px;
        font-size: 16px;
        font-weight: 500;
    }
    .sobre > a {
        width: 60%;
    }
    .sobre > a:hover {
        width: 60%;
        box-shadow: 2px 2px 8px #0101019a;
    }
    /*
    #######################################
                    RODAPE
    #######################################
    */

    footer {
        padding: 100px 40px;
        font-size: 14px;
    }
    footer > img {
        width: 80px;
    }

}


@media screen and (max-width: 425px) {
    #navbar {
        height: fit-content;
        padding: 0;
        gap: 0;
        font-size: 14px;
    }
    #navbar > img {
        width: 40px;
    }
    .nav-button {
        padding: 5px 10px;
    }
    .nav-button-contato {
        padding: 5px 10px;
        margin-right: 5px;
    }
    nav {
        padding: 0;
    }
    .section {
        padding: 24px;
    }
    /*
    #######################################
                    INICIO
    #######################################
    */

    .inicio {
        background: linear-gradient(to right,#7e7e7e, #e2e2e2 80%);
        align-items: center;
        gap: 120px;
    }
    .inicio > h2 {
        max-width: 100%;
        text-align: center;
        font-size: 26px;
    }
    .inicio > h2 > span {
        font-size: 32px;
    }
    .inicio > div {
        max-width: 100%;
        gap: 40px;
    }
    .inicio > div > p {
        font-size: 14px;
    }
    .inicio > a {
        font-size: 14px;
        width: 100%;
        padding: 40px;
    }
    /*
    #######################################
                    RAZOES
    #######################################
    */


    .razoes {
        gap: 20px;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .razoes > h2 {
        font-size: 32px;
    }
    .razoes > div {
        gap: 40px;
        font-size: 14px;
        padding: 20px;
    }
    .razoes > a {
        width: 100%;
        font-size: 14px;
        padding: 40px;
    }
    /*
    #######################################
                    FAQ
    #######################################
    */
    .faq {
        background-color: #f8f8f8;
        gap: 80px;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .toggle-btn {
        font-size: 12px;
        padding: 10px;
        font-weight: 200;
    }
    .toggle-btn > span {
        transform: rotate(90deg);
        transition: 200ms; 
    }
    .questions {
        justify-content: center;
        width: 100%;
        font-size: 12px;
    }
    .faq > a {
        width: 100%;
        font-size: 14px;
        padding: 40px;
    }
    /*
    #######################################
                    SOBRE
    #######################################
    */
    .sobre-container {
        flex-direction: column;
        gap: 20px;
    }
    .sobre > a {
        width: 100%;
        font-size: 14px;
    }
    .sobre > a:hover {
        width: 100%;
        box-shadow: 2px 2px 8px #0101019a;
    }
    /*
    #######################################
                    RODAPE
    #######################################
    */

    footer {
        flex-direction: column-reverse;
        padding: 2rem;
        gap: 20px;
        font-size: 12px;
    }
    #endereco {
        text-align: center;
    }

}
/* MEDIA CELULAR P */
@media screen and (max-width: 320px), (max-width: 375px) {
    
    
}