@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Montserrat:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shrikhand&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    overflow-x:hidden;
    background-color:#3090BE;
}

html{
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.side-menu{
    display:none;
}

.hero{
    position:relative;
    width:100%;
    height:220vh;
    overflow:hidden;
    padding-bottom:20vh;
    background-color: #E0E1DB;
}

.hero::after{
    content:"";

    position:absolute;
    left:0;
    bottom:0;

    width:100%;
    height:300px;

    background:linear-gradient(
        to bottom,
        rgba(224,225,219,0) 0%,
        rgba(224,225,219,0.25) 30%,
        rgba(224,225,219,0.6) 60%,
        #E0E1DB 100%
    );

    z-index:20;
    pointer-events:none;
}

/* Praia */

.video-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:220vh;
    object-fit:cover;
    object-position: center 74%;
    z-index:1;
}



/* Cor da marca */

.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.25) 40%,
        rgba(0,0,0,0) 100%
    );

    z-index:3;
}

/* NAVBAR */

.navbar-video{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;
    opacity:0.90;

    object-fit:cover;

    z-index:1;
}

.navbar-overlay{
    iset:0;
    position:absolute;
}

.menu,
.logo,
.social{
    position:relative;
    z-index:3;
}

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:15%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 4vw;

    overflow:hidden;

    z-index:999;
}

.hamburger{
    display:none;
    z-index:1001;
    
    text-align: center;
    width:40px;
    height:40px;
    border-radius:50%;
    background-color:#27303A;
    margin-left:10px;

    color:white;
    font-size:18px;
    cursor:pointer;
}

.hamburger i{
    margin-top:13px;
}

.menu,
.social{
    display:flex;
    gap:2.5vw;
}

.menu a,
.social a{
    text-decoration:none;
    color:white;
    font-size:1.1vw;
    font-family:Montserrat;
    font-weight:600;
    letter-spacing:1px;
    transition:.3s;
}

.menu a:hover,
.social a:hover{
    color:#ffc400;
}

.logo img{
    width:11vw;
}

.social{
    display:flex;
    gap:1.2vw;
}

.social a{
    width:2.5vw;
    height:2.5vw;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    background-color:#27303A;

    color:white;
    text-decoration:none;

    transition:all .3s ease;
}

.social a i{
    font-size:1.2vw;
    transition:all .3s ease;
}

.social a:hover{
    background:#ffc400;
    border-color:#ffc400;
    transform:translateY(-2px);
}

.social a:hover i{
    color:#000;
}

/* CONTEÚDO */

.hero-content{
    position:relative;
    z-index:10;
    max-width:100%;

    height:73%;
    margin:auto;

    display:flex;
    flex-direction:column;
    justify-content:center;

    padding-left:27%;
}

.subtitle{
    display:flex;
    align-items:center;
    gap:15px;

    color:#ffc400;

    font-size:12px;
    letter-spacing:3px;

    font-family:Montserrat;
    font-weight:600;

    margin-bottom:25px;
}


.subtitle span{
    width:70px;
    height:2px;
    background:#ffc400;
}

.hero-content h1{
    color:#E0E1DB;

    font-family: 'Shrikhand', cursive;
    font-weight: 400;

    font-size:clamp(3rem,5vw,6rem);

    line-height:0.95;

    font-style:oblique(30deg);
}

.scroll{
    margin-top:40px;

    color:white;
    font-family:Montserrat;

    font-size:13px;
    letter-spacing:1px;
}

/* PROJECTS */

.projects{
    background:#E0E1DB;
}

.lista{
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 92%;
}

.card{
    position: relative;
    width: fit-content;
    overflow: hidden;
    cursor: pointer;
    isolation: isolate;
    border-radius: 10px;
}

.card img{
    width: 45vw;
    display: block;
    transition: .4s ease;
}

/* Camada preta 40% */
.card::before{
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,.4);

    opacity: 0;
    transition: .4s ease;

    z-index: 1;
}

/* Camada azul com Hue */
.card::after{
    content: "";
    position: absolute;
    inset: 0;

    background: #3090BE;

    mix-blend-mode: hue;

    opacity: 0;
    transition: .4s ease;

    z-index: 2;
}

.textocard{
    position: absolute;

    left: 25%;
    top: 55%;

    transform: translate(-50%, -40%);

    opacity: 0;

    transition: .4s ease;

    z-index: 3;

    color: white;
}

.titlecard{
    font-family: Shrikhand;
    font-weight: 400;
    font-size: 33px;
    line-height: 30px;
    color: white;
    text-transform: uppercase;
}

.sub{
    font-family: Outfit;
    font-weight: 300;
    font-size: 16px;
    color: white;
}

/* Hover */

.card:hover::before{
    opacity: 1;
}

.card:hover::after{
    opacity: 1;
}

.card:hover .textocard{
    opacity: 1;
    transform: translate(-50%, -50%);
}


/* CLIENTES */

.clientes {
    overflow: hidden;
    position: relative;
    background-color: #E0E1DB;
    padding: 8vh 0 0 0;
}

.track-wrapper {
    position: relative;
    width: 100%;
    height: 100px; /* ajusta conforme precisar */
}

.track {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8vw;
    width: max-content;
}

.track img {
    height: 6vh;
    width: auto;
}

.track img.rancho{
    height: 4.5vh;
}

.track img.ultimo{
    margin-right: 8vw;
}


/* FEEDBACKS */

.feedbacks{
    background:#E0E1DB;

    display:flex;
    justify-content:center;
    gap:3vw;

    padding: 1vw 5vw 5vw 5vw;
}

.feedback-card{
    width:520px;

    background:#27303A;

    border-radius:20px;

    padding:40px;

    color:white;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.feedback-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feedback-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;

    margin-bottom:50px;
}

.cliente{
    display:flex;
    align-items:center;
    gap:20px;
}

.avatar{
    width:60px;
    height:60px;

    border-radius:50%;

    background:#FFD100;
}

.cliente h3{
    color:#FFD100;

    font-family:'Outfit', sans-serif;
    font-size:24px;
    font-weight:500;

    margin-bottom:4px;
}

.cliente span{
    color:#FFD100;

    font-family:'Outfit', sans-serif;
    font-size:16px;
}

.nota{
    color:#FFD100;

    font-size:24px;
    font-family:'Outfit', sans-serif;
}

.feedback-card p{
    color:#E0E1DB;

    font-family:'Outfit', sans-serif;

    font-size:18px;
    line-height:1.9;

    
}

@media(max-width:1150px){

    .feedbacks{
        flex-direction:row;
        overflow-x:auto;
        scroll-snap-type:x mandatory;
        gap:20px;

        justify-content:flex-start;
        padding:20px;

        scrollbar-width:none;
    }

    .feedbacks::-webkit-scrollbar{
        display:none;
    }

    .feedback-card{
        min-width:90vw;
        width:90vw;

        flex-shrink:0;
        scroll-snap-align:center;
    }

    .feedback-dots{
        display:flex;
        justify-content:center;
        gap:12px;
        padding-bottom:5vh;
        background-color: #E0E1DB;
    }

    .dot{
        width:14px;
        height:14px;
        border-radius:50%;
        border:1px solid #27303A;
        background:transparent;
        transition:.3s;
    }

    .dot.active{
        background:#FFD100;
        border-color:#FFD100;
    }

    .feedback-card{
        width:min(90vw,520px);
    }

}

/* AUDIO */

.music-btn{
    position: fixed;
    bottom: 30px;
    right: 30px;

    width: 55px;
    height: 55px;

    border-radius: 50%;

    background: rgba(0,0,0,.7);
    backdrop-filter: blur(10px);

    color: #fff;
    font-size: 20px;

    opacity: 0.6;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 9999;

    transition: .3s ease;
}

.music-btn:hover{
    background: #E1E2DC;
    color: #000;
    transform: scale(1.08);
}

.music-btn.playing{
    border-color: #E1E2DC;
}

/* FOOTER */

.footer {
    background-color: #3b92be; /* azul parecido com o da imagem */
    width: 100%;
    min-height: 180px;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    max-width: 250px;
    width: 100%;
    height: auto;
}


/* RESPONSIVO */

@media(max-width:1025px){

   .menu a{
        font-size:10px;
    }

    .social a{
        width:26px;
        height:26px;
    }

    .social a i{
        font-size:11px;
    }
    .navbar{

        height:100px;
    }

    .hero{
        height:120vh;
        overflow:hidden;
        padding-bottom:20vh;
    }

    .video-bg{
        height:120vh;
        object-position: center 74%;
    }

    .feedback-card:hover {
        transform: scale(1.00);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .track img{
    height:4vh;
    width:auto;
}

    .track img.rancho{
        height: 3vh;
    }
}

@media(max-width:821px){

    .logo img{
        width:120px;
    }

    .subtitle{
        gap:10px;
        font-size:8px;
        letter-spacing:3px;
        margin-bottom:14px;
    }

    .subtitle span{
        width:52px;
        height:1px;
    }

    .hero-content h1{
        font-size:38px;
    }

    .scroll{
        font-size:10px;
            margin-top:20px;
    }

    .hero-content{
        max-width:100%;
        height:80%;
        padding-left:23%;
    }

    .hero{
        height:120vh;
        overflow:hidden;
        padding-bottom:20vh;
    }

    .video-bg{
        height:120vh;
        object-position: center 74%;
    }

}

@media(max-width:600px){

   .menu{
        display:none;
    }

    .social a{
        display:none;
    }

    .hamburger{
        display:block;
    }

    .logo img{
        margin-right: 25px;
    }

    .side-menu{
        display:block;

        position:fixed;
        inset:0;

        width:100%;
        height:100vh;

        z-index:2000;

        transform:translateX(-100%);
        transition:.7s cubic-bezier(.77,0,.175,1);
    }

    .droplogo{
        width:21vw;
        margin:30px 0 0 30px;
    }

    body.menu-open .side-menu{
        transform: translateX(0);
    }

    .site-wrapper{
        width:100%;
        overflow-x:hidden;
        position:relative;
        z-index:500;

        transition:
            transform .7s cubic-bezier(.77,0,.175,1),
            border-radius .7s cubic-bezier(.77,0,.175,1);
    }

    /* Menu aberto */
    body.menu-open .site-wrapper{
        transform: translateX(70vw) scale(.70);
        transform-origin:left center;

        border-radius:30px;
        height:100vh;
        overflow:hidden;

        box-shadow:0 30px 80px rgba(0,0,0,.35);
    }

    /* Enquanto está fechando */
    .site-wrapper.closing{
        height:100vh;
    }

    .menu-links{
        margin-top:22vh;
        

        display:flex;
        flex-direction:column;
        gap:27px;
    }

    .close-menu{

        position:absolute;

        top:35px;
        right:50px;

        background:none;
        border:none;

        color:white;
        font-size:28px;

        cursor:pointer;
    }

    .menu-links a{

        color:white;
        text-decoration:none;
        display:flex;
        align-items: center;
        gap:10px;

        font-family:Montserrat;
        font-weight:600;

        border:2px solid white;
        border-radius:12px;

        margin-left: 7%;
        padding: 15px 30px;
        width: 50%;

        opacity:1;

        transform:translateX(-40px);

        transition:
            opacity .5s ease,
            transform .5s ease;
    }

    .menu-links a:last-child{
        padding-left: 24px;
    }

    .menu-links a:nth-child(even){
        gap:20px;
    }

    .social a i{
        display:none;
    }

    .menu-social{
        display:flex;
        gap:9.5vw;
        margin-top:26vh;
        margin-left: 7%;
    }

    .menu-social a{
        width:35px;
        height:35px;

        display:flex;
        align-items:center;
        justify-content:center;

        border-radius:50%;
        background-color:#E0E1DB26;
        opacity:0.8;

        color:white;
        text-decoration:none;

        transition:all .3s ease;
    }

    .menu-social a i{
        font-size:20px;
        transition:all .3s ease;
    }

    .subtitle{
        gap:10px;
        font-size:6px;
        letter-spacing:3px;
        margin-bottom:11px;
    }

    .subtitle span{
        width:40px;
        height:1px;
    }

    .hero-content h1{
        font-size:30px;
    }

    .scroll{
        font-size:7px;
        margin-top:15px;
    }

    .hero-content{
        max-width:100%;
        height:80%;
        padding-left:22vw;
    }

    .hero{
        height:120vh;
        overflow:hidden;
        padding-bottom:8vh;
    }

    .video-bg{
        height:120vh;
        object-position: center 74%;
    }

    .lista{
        display:flex;
        flex-direction:column;
        width: 92%;
    }

    .card img{
        width: 100%;
        height: auto;
    }

    .textocard{
        left: 12%;
        top: 55%;
        transform: translate(0, -40%);
    }

    .card:hover .textocard{
        transform: translate(0, -50%);
    }

    .titlecard{
        font-size: 26px;
        line-height: 24px;
    }

    .sub{
        font-size: 14px;
    }

    .footer {

        min-height: 100px;
        
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-logo {
        width: 60%;
        height: auto;
    }

}

@media(max-width:450px){


    .hero{
        height:89vh;
        overflow:hidden;
        padding-bottom:6vh;
    }

    .hero-content{
        margin-top: 7vh;
    }
    

    .video-bg{
        height:89vh;
        object-position: center 74%;
    }

    .hero-content h1{
        font-size:22px;
    }

}

@media(max-width:376px){

    .menu-social{
        display:flex;
        gap:9.5vw;
        margin-top:14vh;
        margin-left: 7%;
    }

    .menu-social a{
        width:35px;
        height:35px;

        display:flex;
        align-items:center;
        justify-content:center;

        border-radius:50%;
        background-color:#E0E1DB26;
        opacity:0.8;

        color:white;
        text-decoration:none;

        transition:all .3s ease;
    }

}

@media(max-width:369px){

    .menu-social{
        display:flex;
        gap:9.5vw;
        margin-top:26vh;
        margin-left: 7%;
    }

    .menu-social a{
        width:35px;
        height:35px;

        display:flex;
        align-items:center;
        justify-content:center;

        border-radius:50%;
        background-color:#E0E1DB26;
        opacity:0.8;

        color:white;
        text-decoration:none;

        transition:all .3s ease;
    }

}