@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

body {
    overflow-x: hidden;
}
#empreendimentos {
    overflow-x: hidden;
}
#feedback {
    overflow-x: hidden;
}

/* LANDING PAGE */
#landing-page{
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 8vh;
}
.landing-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -998;
}
.landing-img {
    position: fixed;

    /* background: url(imgs/bgs/BackgroundLP.jpg) rgba(255, 255, 255, 0.151); */
    background: url(imgs/bgs/HRF_1973.jpg) rgba(0, 0, 0, 0.25);
    background-blend-mode: overlay;
    background-position: top;
    width: 100%;
    height: 110%;
    top: 0;
    left: 0;
    background-size: cover;
    z-index: -999;
}

.landing{
    text-align: center;
    color: white;
    margin-bottom: 2rem;
}
.lp-logo {
    min-width: 6rem;
    max-width: 8rem;
    width: 30%;
    opacity: 0;
    display: none;
}
.landing > h1 {
    font-size: 4rem;
}

.landing > h2 {
    font-size: 2.5rem;
}

/* form */

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    font-weight: 500;
    color: rgb(145, 145, 145);
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    font-weight: 500;
    color: rgb(145, 145, 145);
}

::-ms-input-placeholder { /* Microsoft Edge */
    font-weight: 500;
    color: rgb(145, 145, 145);
}

#landing-page > form{
    display: grid;
    gap: .5rem;
    grid-template-columns: 4fr 2fr;
    grid-template-rows: 1f 1fr 1fr 1fr;
    flex-wrap: wrap;
    background-color: rgba(255, 255, 255, 0.623);
    padding: 2rem 2rem .7rem;
}
#landing-page > form > p {
    grid-column: span 2;
    font-weight: 500;
    color: rgb(104, 104, 104);
    font-size: 1.3rem;
    margin-bottom: .5rem;
}
#landing-page > form > input {
    outline: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: rgb(121, 121, 121);
    padding: .2rem;
    box-shadow: 3px 3px 3px #888888;
}
#landing-page > form > input:nth-child(4){
    grid-column: span 2;
}
#landing-page > form > input:nth-child(5){
    grid-column: span 2;
    margin-top: .3rem;
}
#submit-btn {
    cursor: pointer;
    transition: all .3s ease;
}

#submit-btn:hover {
    cursor: pointer;
    border-radius: 2rem;
}

/* socials */

.socials {
    margin: 3rem 0 1rem;
    font-size: 1.5rem;
}

.socials > a {
    text-decoration: none;
    color: white;
    margin: .5rem;
}

.socials > a > i {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid white;
    border-radius: 50%;
    line-height: 2.5rem;
    text-align: center;

    transition: all .3s ease;
}

.socials > a > i:hover {
    transform: scale(1.05);
}

/* SECTIONS TITLES */

h3 {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.4rem;
    padding: 2rem 0 0;
}

h3::after {
    content: '';
    height: 2px;
    width: 6rem;
    display: block;
    margin: 0 auto 0;
}

/* MAIN VIDEO */

#main-video {
    background: white;
}
#main-video .separator {
    background-color: black;
    background-image: linear-gradient(to bottom right, black, #242424);    height: 3rem;
}
.main-video-container {
    width: 100%;
    padding: 0 20rem;
    background: linear-gradient(to bottom right, #fbf7e9, #e2d5be);
}
.the-video {
    display: block;
    width: 100%;
}


/* ABOUT US SECTION */

#about{
    background-color: black;
    background-image: linear-gradient(to bottom right, black, #242424);
    color: rgb(92, 92, 92);

    padding: 0 4rem;
    text-align: center;
    box-shadow: 0px -10px 10px rgba(0, 0, 0,.27);
}

#about > h3 {
    color: white;
}
#about > h3::after {
    background: white;
}

.about-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 2rem 0;
}
.about-top pre {
    color: white;
    width: 55rem;
    text-align: left;
    font-size: .9rem;
    white-space: pre-wrap;       /* Since CSS 2.1 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
}
.about-top img {
    width: 15rem;
    max-width: 15rem;
}
.about-bottom {
    color: white;
    padding-bottom: 3rem;
}
.about-bottom h4 {
    font-size: 1.4rem;
}
.about-bottom p {
    font-size: .9rem;
    margin: 1rem 0 2rem;
}

/* EMPREENDIMENTOS */

#empreendimentos{
    background: linear-gradient(to bottom right, #fbf7e9, #e2d5be);
    text-align: center;
    padding-bottom: 2rem;
}

#empreendimentos > h3 {
    color: white;
    background: #242424;
    padding: 1rem;
}
#empreendimentos > h3::after {
    background: white;
}

.primeiro-empreendimento > .top-half {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    padding: 2rem 0 2rem 1rem;
}

.primeiro-empreendimento #image-slider {
    width: 45%;
}

.primeiro-empreendimento #image-slider li{
    background-size: contain !important;
}

.primeiro-empreendimento .empreendimento-text {
    width: 40%;
    color: white;
    background-color: #242424;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 1.5rem;
}

.primeiro-empreendimento .empreendimento-text::after {
    content: '';
    background-color: #242424;
	clip-path: polygon(100% 0, 100% 100%, 0 100%);
    height: 100%;
    width: 10rem;
    position: absolute;
    display: block;
    right: 99.9%;
    top: 0;
}

.primeiro-empreendimento .empreendimento-text h4 {
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.primeiro-empreendimento #thumbnail-slider{
    background: #242424;
}
.primeiro-empreendimento #thumbnail-slider li{
    background-size: contain !important;
}

#image-slider {
    padding: 0rem;
}

#thumbnail-slider {
    padding: 2rem 3rem 3rem;
}



.segundo-empreendimento > .top-half {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    padding: 2rem 1rem 2rem 0;
}

.segundo-empreendimento #image-slider-second {
    width: 45%;
}

.segundo-empreendimento #image-slider-second li{
    background-size: contain !important;
}

.segundo-empreendimento .empreendimento-text {
    width: 40%;
    color: white;
    background-color: #242424;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 1.5rem;
}

.segundo-empreendimento .empreendimento-text::after {
    content: '';
    background-color: #242424;
	clip-path: polygon(0 0, 100% 100%, 0 100%);
    height: 100%;
    width: 10rem;
    position: absolute;
    display: block;
    left: 99.9%;
    top: 0;
}

.segundo-empreendimento .empreendimento-text h4 {
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.segundo-empreendimento #thumbnail-slider-second{
    background: #242424;
}
.segundo-empreendimento #thumbnail-slider-second li{
    background-size: contain !important;
}

#image-slider-second {
    padding: 0rem;
}

#thumbnail-slider-second {
    padding: 2rem 3rem 3rem;
}


/* SOLUTIONS */
#solutions {
    text-align: center;
}
/*--- iOS Fixed Background Image --*/
#solutions .fixed-background {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
#solutions .fixed-wrap {
    clip: rect(0, auto, auto, 0);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    pointer-events: none;
}
#solutions .fixed {
    z-index: -1;
    background: url(imgs/bgs/james-sullivan-ESZRBtkQ_f8-unsplash.jpg);
    background-size: contain;
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 60rem;
    background-size: cover;
    background-position: center center;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

#solutions h3 {
    color: white;
}
#solutions h3::after {
    background: white;
}

#solutions .solution-items {
    padding: 3rem 0;
}


#solutions .solution-item {
    display: flex;
    align-items: stretch;
    margin: 0 15rem 3rem 0;
}

#solutions .solution-item > div:first-child {
    color: white;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #242424;
    width: 15%;
    position: relative;
    /* border-radius: 15px 0 0 15px; */
}

#solutions .solution-item > div:first-child::after {
    content: '';
    display: inline-block;
    position: absolute;
    left: 99.5%;
    top: 0;
    width: 4rem;
    height: 100%;
    background-color: #242424;
    clip-path: polygon(0 0, 0 100%, 100% 0);
}

#solutions .solution-item > div:last-child {
    color: rgb(73, 73, 73);
    /* background: rgba(255, 255, 255, 0.788); */
    background: linear-gradient(to right, white , rgba(255, 255, 255, 0));
    width: 90%;
    left: 10%;
    padding: 1rem 7rem;
    /* border-radius: 0 15px 15px 0; */
}

#solutions .solution-item > div:last-child > h4 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 500;
}
#solutions .solution-item > div:last-child > p {
    font-weight: 500;
}

#solutions .solution-item.right {
    flex-direction: row-reverse;
    margin: 0 0 3rem 15rem;
}

#solutions .solution-item.right > div:last-child {
    background: linear-gradient(to left, white , rgba(255, 255, 255, 0));
}

#solutions .solution-item.right > div:first-child::after {
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    left: unset;
    right: 99.5%;
}

/* DEPOIMENTOS */

#feedback {
    text-align: center;
    background-color: white;
    overflow-y: hidden;
}

#feedback h3 {
    color: rgb(61, 61, 61);
}
#feedback h3::after {
    background: rgb(61, 61, 61);
}

.feedback-videos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 1rem;
}

.feedback-videos .video-container {
    height: 18rem;
    width: 20rem;
    margin: .5rem;
    background-color: white;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 5px rgb(156, 156, 156);
}

.video-container video {
    width: 100%;
    height: 85%;
}


/* COMO CHEGAR? */

#address {
    background: rgb(46, 46, 46);
    text-align: center;
    height: auto;
}

#address h3 {
    color: rgb(224, 224, 224);
    padding: 1rem 0 1.2rem;
}
#address h3::after {
    background: rgb(224, 224, 224);
}

#address iframe {
    width: 100%;
    height: 20rem;
}

/* FOOTER */

footer {
    background: #242424;
    text-align: center;
    padding: 2rem 1rem 1rem;
    color: white;
}

footer > img {
    height: 10rem;
}

.footer-text {
    font-size: .8rem;
    color: rgb(202, 202, 202);
    margin: 0 10rem;
}

.end-text {
    max-width: 40rem;
    margin: 1rem auto 0;
    color: rgb(145, 145, 145);
    font-size: .9rem;
}

#end-contact-btn {
    text-decoration: none;
    color: rgb(202, 202, 202);
    text-transform: uppercase;
    border: 1px solid rgb(202, 202, 202);
    border-radius: 2rem;
    padding: .3rem .8rem;
    transition: all .3s ease;
    display: inline-block;
    margin: 1rem;
}

#end-contact-btn:hover {
    transform: scale(1.03);
}

footer .socials {
    margin:0 0 .8rem;
}

footer > span {
    height: 2px;
    width: 100%;
    background: rgb(46, 46, 46);
    display: block;
    margin: .5rem 0;
}

footer .socials > a {
    color: rgb(202, 202, 202);
}

footer .socials > a > i {
    font-size: 1.2rem;
    width: 2.2rem;
    height: 2.2rem;
    line-height: 2.2rem;
    border-color: rgb(202, 202, 202);
}

.disclaimer, .policy {
    font-size: .8rem;
    color: gray;
    text-decoration: none;
}

/* ANIMATIONS */
.shaker {
    animation: shake 1s ;
    animation-iteration-count: 1;
    transform-origin: left;
}
@keyframes shake {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.02);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

/* MEDIA */

@media screen and (max-width: 768px) {

    /* LANDING PAGE */

    .lp-logo {
        opacity: 1;
        display: block;
    }
    #landing-page {
        padding-top: 2vh;
    }
    #landing-page h1 {
        font-size: 2rem;
    }
    #landing-page h2 {
        font-size: 1.5rem;
    }
    #form {
        display: flex !important;
        flex-direction: column;
    }
    #form-title {
        font-size: 1rem !important;
    }
    .socials {
        transform: scale(.9);
    }

    /* MAIN VIDEO */

    .main-video-container {
        padding: 0;
    }

    /* ABOUT */
    .about-top {
        justify-content: center;
    }
    .about-top img {
        width: 80%;
    }

    /* EMPREENDIMENTOS */

    .primeiro-empreendimento .top-half {
        flex-direction: column-reverse;
        padding: 2rem 0;
    }
    .primeiro-empreendimento .top-half .empreendimento-text {
        width: 100%;
    }
    .primeiro-empreendimento .top-half .empreendimento-text::after {
        content: unset;
    }
    .primeiro-empreendimento .top-half #image-slider{
        width: 100%;
        padding: 2rem 1rem 0;
    }

    .primeiro-empreendimento #thumbnail-slider .splide__track{
        margin-bottom: 3rem;
    }

    .segundo-empreendimento .top-half {
        flex-direction: column-reverse;
        padding: 2rem 0;
    }
    .segundo-empreendimento .top-half .empreendimento-text {
        width: 100%;
    }
    .segundo-empreendimento .top-half .empreendimento-text::after {
        content: unset;
    }
    .segundo-empreendimento .top-half #image-slider-second{
        width: 100%;
        margin-top: 2rem;
        padding: 2rem 1rem 0;
    }

    .segundo-empreendimento #thumbnail-slider-second .splide__track{
        margin-bottom: 3rem;
    }

    /* SOLUTIONS */

    .solution-items {
        padding: 2.5rem 0 1rem !important;
    }
    .solution-item {
        margin: 0 0 2rem !important;
    }

    .solution-item > div:first-child {
        width: 0 !important;
    }

    .solution-item > div:last-child{
        width: 100% !important;
        padding: 1rem 2rem 1rem 4rem !important;
    }

    .solution-item.right > div:last-child{
        padding: 1rem 4rem 1rem 2rem !important;

    }

    .footer-text {
        margin: 0 1rem;
    }
}