@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-dark-orange: #f26c2d;
    --color-light-orange: #f6d8c0;
    --color-dark-brown: #89531c;
    --color-dark-black: #070707;
    --color-white: #ffffff;
    
}

body {
    background: #070707;
    font-family: 'Roboto', sans-serif;
}

/* Header */
header {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: -50px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 100px;
    background: transparent;
    z-index: 1000;
}

.logo img {
    margin-top: 10px;
    width: 180px;
    
}

.nav {
    display: flex;
    align-items: center;
}

.nav li {

    position: relative;
    list-style: none;
    margin: 0 20px;
}

.nav li::before {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    height: 3px;
    width: 50%;
    background: var(--color-dark-orange);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.nav li:hover::before {
    opacity: 1;
    visibility: visible;
}


.nav li a {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.5s;
    padding: 10px;
}

.nav .booking {
    border: 1px solid var(--color-dark-orange);
    background: var(--color-dark-orange);
    backdrop-filter: blur(2px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    padding: 2px 10px;
    transition: 0.3s;
}

.nav .booking a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nav .booking a ion-icon {
   font-size: 1.3em; 
}

.nav .booking:hover {
    background: transparent;
}

.nav .booking:hover::before {
    visibility: hidden;
    opacity: 0;
}

/* Esse menu e nav só carrega no mobile */

.menu {
    display: none;
    transform: 0;
}

.menu ion-icon {
    color: var(--color-white);
    font-size: 1.8em;
}

.menu.active {
    transform: rotateZ('45deg');
}

/* Menu mobile*/

.nav-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-dark-brown);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    z-index: 990;
    gap:20px;
    opacity: 0;
    visibility: hidden;
}

.nav-mobile.active {
    opacity: 1;
    visibility: visible;
}

.nav-mobile li {
    position: relative;
    list-style: none;
}

.nav-mobile li::before {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    height: 2px;
    width: 50%;
    background: var(--color-light-orange);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.nav-mobile li:hover::before {
    opacity: 1;
    visibility: visible;
}

.nav-mobile li a {
    color: var(--color-light-orange);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.5s;
    padding: 10px;
}

/*Swiper (rotação do site)*/

.swiper {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/*Swiper Control Section*/

.swiper .control {
    position: absolute;
    bottom: 120px;
    width: 300px;
    height: 50px;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    /* Mostra as setas dee comando ou não*/
    display: none;
    
}

.swiper .swiper-button-prev, 
.swiper .swiper-button-next {
    width: 50px;
    height: 50px;
}

.swiper .swiper-button-prev::after, 
.swiper .swiper-button-next::after {
    font-size: 30px;
    line-height: 0;
    width: 50px;
    height: 50px;
    background: transparent;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.swiper .swiper-button-prev:hover, 
.swiper .swiper-button-next:hover {
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.swiper .swiper-pagination {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    gap: 15px;
}

.swiper .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: transparent;
    opacity: 1;
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 1000;
}

.swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--color-dark-orange);
}

/*Banners*/
.banner {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 0 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    transition: 0.5s;
    z-index: 900;
}


.banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    filter: brightness(130%);
}


.banner .shade {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.banner .shade .map {
    position: absolute;
    left: 75%;
    top: 70%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 280px;
    margin-top: 70px;
    margin-left: 50px;
    opacity: 0.5;
    z-index: 1000;
    animation: animate 1s linear infinite;
    animation-duration: 3s;
    animation-name: animate;


     
}

@keyframes animate {
    0%,
    100% {
        opacity: 0.5;
        
        
    }
    50% {
        opacity: 1;
        
    }
}

.banner .content-left {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    z-index: 1000;
    width: 50%;
    height: 100vh;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
}



.content-left::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 50%;

}

.banner .content-right {
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    z-index: 1000;
    width: 50%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    

    /*-webkit-mask: linear-gradient(#000000 0 0), linear-gradient(#000000 0 0);
    -webkit-mask-clip: text, padding-box;
    -webkit-mask-composite: xor;*/
}

.banner .content-left h1,
.banner .content-right h1 {
    font-family: 'Roboto', sans-serif;;
    font-weight: 600;
    font-size: 20em;
    letter-spacing: 5px;
    line-height: 1em;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    margin-bottom: 100px;
    opacity: 0.4;
}

.banner .content-left .description {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    position: absolute;
    left: 100px;
    bottom: 15%;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: start;
  
    
}


.banner .content-left h3 {
    font-weight: 500;
    font-size: 1.8em;
    text-transform: uppercase;
    color: var(--color-white);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.banner .content-left p {
    color: var(--color-white);
    font-weight: 200;
    font-size: 0.8em;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.banner .content-left a {
    text-decoration: none;
    color: var(--color-white);
    font-size: 1em;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 15px 40px;
    background: var(--color-dark-orange);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: 0.3s;
}

.banner .content-left a:hover {
    background: transparent;
    transition: 0.3s;
}



.banner .content-right .text-side {
    position: absolute;
    right: 0;
    top: 50%;
    transform: rotateZ(90deg) translateY(-50%);
    color: var(--color-white);
    text-transform: uppercase;
    font-weight: 300;
    font-size: 0.8em;
    letter-spacing: 2px;
}

.banner .content-right .text-side::before {
    position: absolute;
    content: '';
    top: -10px;
    transform: translateX(50%);
    width: 50%;
    height: 3px;
    background: var(--color-dark-orange);
}

.drop { 
    position: absolute;
    left: 75%;
    top: 78%;
    transform: translate(-50%, -50%);
    background: var(--color-light-orange);
    backdrop-filter: blur(20px);
    width: 280px;
    height: 300px;
    box-shadow: inset 20px 20px 20px rgba(0, 0, 0, 0.05),
        25px 35px 20px rgba(0, 0, 0, 0.05),
        25px 30px 30px rgba(0, 0, 0, 0.05) inset -20px -20px 25px rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    z-index: 1100;    
}

.drop video { 
    width: 75%;
    height: 75%;
    object-fit: cover;
    transition: 0.5s;
}

.drop,
.drop video {
    border-radius: 61% 39% 39% 61% / 50% 37% 63% 50%;
}

.drop:hover,
.drop:hover video {
    border-radius: 50%;
}




/*Footer*/

footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 30px 100px;
    background: transparent;
    z-index: 1000;  
}

.sci {
   display: inline-flex;
   justify-content: center;
   align-items: center;
   gap: 20px; 
}

.sci li {
    list-style: none;
}

.sci li a {
    text-decoration: none;
    color: var(--color-light-orange);
    font-size: 1.3em;
    transition: 0.3s;    
}

.sci li .share {
    padding: 10px;
    background: var(--color-dark-orange);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sci li .share:hover {
    background: var(--color-white);
}

.sci li a:hover {
    color: var(--color-dark-orange);
}

.ask-us {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.chat {
    text-decoration: none;
    color: var(--color-white);
    font-size: 2em;
    padding: 10px;
    background: var(--color-dark-orange);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.chat:hover {
    background: var(--color-white);
    color: var(--color-dark-orange);
}

.ask-us p {
    color: var(--color-white);
    font-weight: 200;
    letter-spacing: 1px;
}

/* Config para notebooks e DT*/

@media (max-width: 1920px) {
    .banner .content-left h1 {
        font-size: 15em;
        letter-spacing: 2px;
    }

    .banner .content-right h1 {
        font-size: 15em;
        letter-spacing: 2px;
    }

    /* .banner .title {
        margin-bottom: 220px;
    }

    .banner .content-left h1.title-left {
        font-size: 10em;
    }

    .banner .content-left h1.title-right {
        font-size: 10em;
    }
    */
}

/* responsividade Cell*/

@media (max-width: 900px) { 
    header { 
        padding: 20px 30px;
        flex-wrap: wrap;
        display: flex;
        justify-content: flex-end;
        gap: 5px;
        z-index: 1000;
        padding-top: 45px;
    }

    .nav { 
        display: none;
    }

    .logo img {
        width: 110px;
        
        margin-left: -350px;
        display: flex;
        justify-content: flex-start;
        
        
        
    }

    .menu { 
        display: block;
    }

    .banner { 
        padding: 120px 30px 100px;
        flex-direction: column;
    }

    .banner .content-left {
        width: 100%;
        height: 50vh;
        padding-left: 0;
        display: flex;
        flex-direction: row;
        align-items: end;
        justify-content: center;
    }

    .banner .content-right {
        right: 0;
        top: 50%;
        width: 100%;
        height: 50vh;
        padding-left: 0;
        display: flex;
        flex-direction: row;
        align-items: start;
        justify-content: center;
    }

    .banner .content-right .text-side {
        right: -100px;
    }

    .banner .content-left h1 {
        font-weight: 500;
        font-size: 8em;
        letter-spacing: 2px;
        line-height: 1em;
        margin-bottom: 0;
        writing-mode: vertical-rl;
        text-orientation: mixed;
        text-align: end;
        margin-right: 60%;
    }

    .banner .content-right h1 {
        font-weight: 500;
        font-size: 8em;
        letter-spacing: 2px;
        line-height: 1em;
        margin-bottom: 0;
        writing-mode: vertical-rl;
        text-orientation: mixed;
        text-align: end;
        margin-right: 60%;
    }

    .banner .content-left .description {
            font-size: 11px;
            position: absolute;
            margin-bottom: -80px;

            left: 30%;
            bottom: 10%;
            width: 70%;
            padding: 0 20px;
    }

    .banner .content-left p {
        color: var(--color-white);
        font-weight: 290;
        font-size: 14px;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .banner .content-left h3 {
        font-size: 1.2em;
    }

    .banner .shade .map {
        width: 230px;
        height: 210px;
        left: 65%;
    }

    .drop {
        left: 65%;
        top: 68%;
        width: 130px;
        height: 130px;
        margin-top: 50px;
    }

    .swiper .control {
        bottom: 80px;
    }

    footer {
        padding: 20px 30px;
    }

}

@media (max-width: 400px) {
    .banner .content-left h1 {
        display: none;
    }

    .banner .content-right h1 {
        display: none;
    }
    .logo img {
        margin-top: 10px;
        margin-left: -340px;
        width: 90px;
        
    }
    .banner .content-left p {
        color: var(--color-white);
        font-weight: 290;
        font-size: 10px;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

}

@media (max-width: 360px) {
    .banner .content-left h1 {
        display: none;
    }

    .banner .content-right h1 {
        display: none;
    }
    .logo img {
        margin-top: 10px;
        margin-left: -260px;
        width: 90px;
        
    }
    .banner .content-left p {
        color: var(--color-white);
        font-weight: 290;
        font-size: 8px;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

}