@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.cdnfonts.com/css/source-serif-pro');

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    max-width: 100vw;
}

#mobileScrollUp {
    display: none;
}

#mobileMenuBtn {
    display: none;
}

@media screen and (max-width: 768px) {
    #mobileScrollUp {
        display: block;
        width: 2em;
        position: absolute;
        bottom: 10vh;
        animation: slide-up-n-down infinite 2.2s;
    }

    @keyframes slide-up-n-down {
        0% {
            margin-bottom: 0;
            opacity: 0%;
        }

        50% {
            opacity: 100%;
        }

        100% {
            margin-bottom: 2em;
            opacity: 0%;
        }
    }

    /**/

    #mobileMenuBtn {
        display: block;
        position: fixed !important;
        width: 2em;
        top: 2em;
        right: 2em;
        z-index: 1;
    }
}



.section-container {
    background: #1B1B15;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 768px) {
    .container {
        min-height: 100vh;
        height: auto;
        scroll-snap-type: y mandatory;
    }

    .section-container {
        scroll-snap-align: top;
    }
}

#start {
    background-image: url(imgs/home-bkg.png);
    background-size: cover;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
    body {
        font-size: .9em;
    }
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2em;
    position: fixed;
    z-index: +1;
    right: 5%;
    top: 5%;
    font-size: .8em;
}

header>a {
    color: #fff;
    text-decoration-color: #0000;
    transition: .2s;
}

header>a:hover {
    cursor: pointer;
    text-decoration-color: #fff;
}

/**/

@media screen and (max-width: 768px) {
    header {
        display: none;
    }
}

#bookingBox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8em;
    padding: 10px 20px;
    border: 1px solid #fff;
    transition: .2s;
    text-decoration-color: #0000 !important;
}

#bookingBox:hover {
    background-color: #000;
    border-color: #000;
}

#bookingBox img,
svg {
    width: 1.2em;
}

/**/

.box-center {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4em;
}

@media screen and (max-width: 768px) {
    .box-center {
        width: 80%;
        gap: 5em;
        align-items: center;
        justify-content: center;
    }

}

h1 {
    color: #DEDED6;
    text-align: center;
    font-family: Source Serif Pro;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 4px;
}

h2 {
    color: #DEDED6;
    text-shadow: 4px 4px 2px rgba(0, 0, 0, 0.50);
    font-family: Source Serif Pro;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 4.8px;
}

h3 {
    color: #DEDED6;
    text-shadow: 4px 4px 2px rgba(0, 0, 0, 0.50);
    font-family: Source Serif Pro;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.4px;
}

h4 {
    color: #AAA;
    font-family: Source Serif Pro;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 1.5px;
}

h5 {
    color: #EEE;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.6px;
}

h6 {
    color: #AAA;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 1.4px;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 45px;
        width: 100%;
        text-align: center;
    }

    h2 {
        font-size: 30px;
    }

    h5 {
        text-align: center;
    }

    h6 {
        width: 100%;
        text-align: center;
    }
}

/**/

.btnDefault01 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 57px;
    flex-shrink: 0;
    border: 2px solid #FFF;

    color: #FFF;
    text-align: center;
    font-family: Source Serif Pro;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 2px;
    text-decoration: none;

    transition: .2s;
}

.btnDefault01:hover {
    background-color: #FFF;
    color: #000;
}

/**/

#about {
    background: #4A4A3A;
    background-image: url(imgs/sobre_mim_bkg.png);
    background-size: cover;
}

@media screen and (max-width: 768px) {
    #about {
        background-size: cover;
        height: auto;
        padding: 100px 0;
        gap: 2em;
    }
}

.rowContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    height: 65%;
}

@media screen and (max-width: 768px) {
    .rowContainer {
        flex-direction: column;
        gap: 2em;
    }
}

.colContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    gap: 2em;
    width: 40%;
    height: 100%;
    max-height: 100%;
}

@media screen and (max-width: 768px) {
    .colContainer {
        width: 100%;
    }
}

.descriptionBox {
    gap: 2em;
    display: flex;
    flex-direction: column;
}

.colContainer p {
    color: #FFF;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.50);
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 1.2px;
    width: 100%;
}

.colContainer b {
    font-weight: 700;
}

/**/

.aboutMobileFlex {
    display: none;
}

#profilePicAbout {
    background-color: #aaa;
    box-shadow: 5px 5px #1B1B15;
    width: 55vh;
    height: 55vh;
    border-radius: 100%;
}

@media screen and (max-width: 768px) {
    #profilePicAbout {
        background-color: #aaa;
        width: 20em;
        height: 20em;
        border-radius: 100%;
    }

    .aboutMobileNone {
        display: none;
    }

    .aboutMobileFlex {
        display: flex;
    }
}

/**/

.linkSocial {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    cursor: pointer;
    transition: .2s;
    text-decoration: none;
}

.linkSocial:hover {
    opacity: 50%;
}

.linkSocial p {
    color: #FFF;
    font-family: Source Serif Pro;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.2px;
}

.linkSocial svg {
    width: 1.6em;
}

.mobileSlider {
    display: none;
}

/**/

@media screen and (max-width: 768px) {
    #portfolio {
        gap: 4em;
    }

    .portfolio-box {
        height: 50vh;
    }

    .slideImgBox img {
        height: 100%;
    }

    .mobileSlider {
        display: flex;
        box-shadow: #363620 6px 6px;
        height: 80vw;
        width: 80vw;
    }

    .mobileCarousel img {
        width: 100%;
        height: auto;
    }
}

.portfolio-box {
    gap: 1em !important;
}

.portfolio-box-col {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1em !important;
}

.rowTitle {
    width: 80%;
    padding: 2em 0;
}

.boxImgFull {
    width: 100%;
    height: 100%;
    background-color: #000;
}

/**/

.slideImgBox {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.imgSlider,
.imgSlider2 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Additional styles if needed */
.imgSlider.active,
.imgSlider2.active {
    opacity: 1;
    z-index: 1;
}

/**/

.portfolio-box-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1em !important;
    width: 80%;
    padding: 1em 0;
}

@media screen and (max-width: 768px) {
    .portfolio-box-2 {
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 2em !important;
        width: 80%;
        padding: 1em 0;
    }
}

.btnType1 {
    width: 220px;
    height: 50px;
    flex-shrink: 0;
    background: #161612;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 2px;

    transition: .2s;
    cursor: pointer;
}

.btnType1 a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .btnType1 {
        width: 100%;
    }
}

.btnType1:hover {
    background-color: #DEDED6;
    color: #000;
}

.btnType1 a:hover {
    color: #000;
}

.socialBox01 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
}

@media screen and (max-width: 768px) {
    .socialBox01 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 1.5em;
    }
}

/**/

.contactBox {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .contactBox {
        height: 100vh;
        justify-content: space-between;
    }
}

.boxRowContact {
    background-image: url(imgs/fale_comigo.png);
    background-size: cover;
    height: 50vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .boxRowContact {
        height: 40vh;
    }
}

.bannercontact {
    background-color: #1B1B15;
    width: 35%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .bannercontact {
        width: 80%;
    }
}

/**/

.ctaContact {
    width: 35%;
    color: #DDD;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.50);
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 1.2px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.contactInfo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2em;
    flex-shrink: 0;
    width: 35%;
    height: 50%;
}

@media screen and (max-width: 768px) {
    .contactInfo {
        width: 90%;
    }
}

.contactInfo .socialBox01 {
    justify-content: space-between;
}

/**/

.wppBtn2 {
    box-sizing: border-box;
    width: 100%;
    height: 15%;
    border: 1px solid #FFF;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.5px;

    transition: .2s;
    cursor: pointer;
}

.wppBtn2 a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: .75em;
    text-decoration: none !important;
    color: #fff;
}

.wppBtn2:hover {
    background-color: #000;
    border-color: #000;
}

.wppBtn2 svg {
    width: 22px;
    position: absolute;
    margin-left: 30%;
}


@media screen and (max-width: 768px) {
    .wppBtn2 {
        height: 6vh;
    }

    .wppBtn2 svg {
        margin-left: 75%;
    }
}


/**/

footer {
    height: 15%;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

@media screen and (max-width: 768px) {
    footer {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: auto;
        padding: 5vh 0;
    }
}

footer div {
    display: flex;
    flex-direction: column;
    gap: .5em;
}

footer p {
    color: #737461;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.50);
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 1px;
}

#mobileMenu {
    display: none;
}

@media screen and (max-width: 768px) {
    #mobileMenu {
        display: none;
        flex-direction: column;
        justify-content: center;
        background-color: #D9D9D9aa;
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
        width: 100vw;
        height: 100vh;
        z-index: +10;
        position: fixed;
    }

    #closeMobileMenuBtn {
        position: absolute;
        right: 2em;
        top: 2em;
        width: 2em;
    }

    nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 1em;
        margin-top: 12vh;
    }

    /**/

    .menuBoxMobile {
        width: 100%;
        height: 40%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .containerMobile {
        width: 90%;
        height: 100%;
        display: flex;
        flex-direction: column;
        gap: 1.5em;
        padding: 32px 0;
    }

    .containerMobile h3 {
        color: #1E1E1E;
        text-shadow: 4px 4px 2px #0002;
        font-family: Source Serif Pro;
        font-size: 32px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        letter-spacing: 2.4px;
    }

    .linkSocialMobile {
        width: auto;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 1em;
        text-decoration: none !important;

        color: #1E1E1E;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 1.2px;
    }

    /**/

    .btnMobile {
        border: #000 solid 3px;
        text-decoration: none;
        color: #000;
        font-weight: 500;
        font-size: 16px;
        width: 90%;
        height: 6vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    #wppMobileContainer {
        position: absolute;
        bottom: 1.5em;
    }

    #wppMobileBtn {
        position: absolute;
        margin-left: 75vw;
        width: 1.5em;
    }
}