css
/* =====================================================
   JUMPER TRASLADO
   STYLE.CSS - PARTE 1
===================================================== */

/* ==========================
RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

:root{

    --primary:#0f172a;
    --secondary:#1e293b;
    --gold:#d4af37;
    --green:#25D366;
    --white:#ffffff;
    --gray:#f7f8fa;
    --text:#555;
    --dark:#111;
    --shadow:0 20px 60px rgba(0,0,0,.08);

}

body{

    font-family:'Poppins',sans-serif;

    color:var(--text);

    background:#fff;

    overflow-x:hidden;

    line-height:1.7;

}

img{

    display:block;

    width:100%;

}

a{

    text-decoration:none;

    transition:.35s;

}

section{

    padding:110px 0;

}

.container{

    max-width:1200px;

}

/* ==========================
TIPOGRAFIA
========================== */

h1{

    font-size:4rem;

    font-weight:700;

    color:#fff;

    line-height:1.1;

}

h2{

    font-size:2.8rem;

    font-weight:700;

    color:#111;

    margin-bottom:25px;

}

h3{

    font-weight:600;

}

p{

    font-size:1.05rem;

}

.section-subtitle{

    display:inline-block;

    color:var(--gold);

    font-weight:600;

    letter-spacing:2px;

    margin-bottom:18px;

    text-transform:uppercase;

}

/* ==========================
NAVBAR
========================== */

.navbar{

    padding:20px 0;

    transition:.35s;

    background:transparent;

}

.navbar.scrolled{

    background:#111;

    box-shadow:0 8px 30px rgba(0,0,0,.15);

    padding:12px 0;

}

.navbar-brand{

    font-size:1.5rem;

    color:#fff!important;

    font-weight:700;

}

.nav-link{

    color:#fff!important;

    margin-left:20px;

    font-weight:500;

    position:relative;

}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.3s;

}

.nav-link:hover::after{

    width:100%;

}

.nav-link:hover{

    color:#fff!important;

}

.navbar-toggler{

    border:none;

}

.navbar-toggler:focus{

    box-shadow:none;

}

/* ==========================
BOTÕES
========================== */

.btn{

    border-radius:50px;

    padding:15px 38px;

    font-weight:600;

    transition:.35s;

}

.btn-warning{

    background:var(--gold);

    border:none;

    color:#111;

}

.btn-warning:hover{

    transform:translateY(-4px);

}

.btn-success{

    background:var(--green);

    border:none;

}

.btn-success:hover{

    transform:translateY(-4px);

}

.btn-outline-light:hover{

    color:#111;

}

/* ==========================
HERO
========================== */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    background:url("../img/banner.jpg");

    background-size:cover;

    background-position:center;

    overflow:hidden;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

        rgba(0,0,0,.78),

        rgba(0,0,0,.55)

    );

}

.hero .container{

    position:relative;

    z-index:2;

}

.hero-subtitle{

    display:inline-block;

    color:var(--gold);

    font-weight:600;

    letter-spacing:3px;

    margin-bottom:25px;

}

.hero p{

    color:#ddd;

    max-width:620px;

    margin:30px 0;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

/* ==========================
SOBRE
========================== */

#sobre img{

    border-radius:24px;

    box-shadow:var(--shadow);

}

.counter{

    background:#fff;

    border-radius:18px;

    padding:25px;

    box-shadow:var(--shadow);

    text-align:center;

    transition:.3s;

}

.counter:hover{

    transform:translateY(-8px);

}

.counter h3{

    color:var(--gold);

    font-size:2rem;

}

.counter span{

    font-size:.9rem;

    text-transform:uppercase;

    letter-spacing:2px;

}

/* ==========================
VEÍCULO
========================== */

.features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-top:35px;

}

.features div{

    background:#fff;

    padding:18px;

    border-radius:14px;

    box-shadow:var(--shadow);

}

.features i{

    color:var(--green);

    margin-right:10px;

}

.carro{

    animation:flutuar 4s ease-in-out infinite;

}

@keyframes flutuar{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

/* ==========================
SERVIÇOS
========================== */

.service{

    background:#fff;

    border-radius:22px;

    padding:40px 30px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

    height:100%;

}

.service:hover{

    transform:translateY(-12px);

}

.service i{

    font-size:52px;

    color:var(--gold);

    margin-bottom:20px;

}

.service h4{

    margin-bottom:15px;

}

/* ==========================
DESTINOS
========================== */

.destination-card{

    overflow:hidden;

    border:none;

    border-radius:22px;

    box-shadow:var(--shadow);

    transition:.35s;

}

.destination-card:hover{

    transform:translateY(-10px);

}

.destination-card img{

    height:260px;

    object-fit:cover;

    transition:.5s;

}

.destination-card:hover img{

    transform:scale(1.08);

}

.destination-card .card-body{

    padding:25px;

}


css
/* =====================================================
   JUMPER TRASLADO
   STYLE.CSS - PARTE 2
===================================================== */

/* ==========================
GALERIA
========================== */

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:25px;

}

.gallery-item{

    display:block;

    overflow:hidden;

    border-radius:20px;

    position:relative;

    box-shadow:var(--shadow);

}

.gallery-item img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.45s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-item::after{

    content:"\F52A";

    font-family:"bootstrap-icons";

    position:absolute;

    inset:0;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:45px;

    color:#fff;

    background:rgba(0,0,0,.35);

    opacity:0;

    transition:.35s;

}

.gallery-item:hover::after{

    opacity:1;

}

/* ==========================
AVALIAÇÕES
========================== */

#avaliacoes{

    background:#fafafa;

}

#avaliacoes .service{

    text-align:left;

}

#avaliacoes .text-warning{

    font-size:22px;

    letter-spacing:3px;

}

/* ==========================
CONTATO
========================== */

#contato ul{

    padding-left:0;

}

#contato li{

    font-size:1.05rem;

}

#contato i{

    margin-right:10px;

}

/* ==========================
CTA
========================== */

.cta{

    background:linear-gradient(
        135deg,
        #0f172a,
        #111827
    );

    color:#fff;

    text-align:center;

}

.cta h2{

    color:#fff;

}

.cta p{

    color:#ddd;

}

/* ==========================
FOOTER
========================== */

.footer{

    background:#111;

    color:#bbb;

    padding:80px 0 30px;

}

.footer h3,

.footer h5{

    color:#fff;

}

.footer a{

    color:#ddd;

}

.footer a:hover{

    color:var(--gold);

}

.footer hr{

    border-color:#333;

}

/* ==========================
WHATSAPP
========================== */

.whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    background:#25D366;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    font-size:34px;

    box-shadow:0 15px 40px rgba(0,0,0,.25);

    z-index:999;

    transition:.35s;

}

.whatsapp:hover{

    color:#fff;

    transform:scale(1.12);

}

/* ==========================
SCROLLBAR
========================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f3f3f3;

}

::-webkit-scrollbar-thumb{

    background:var(--gold);

    border-radius:10px;

}

::-webkit-scrollbar-thumb:hover{

    background:#b89020;

}

/* ==========================
ANIMAÇÕES
========================== */

img{

    transition:.45s;

}

img:hover{

    transform:scale(1.02);

}

.btn{

    transition:.35s;

}

.btn:hover{

    box-shadow:0 15px 35px rgba(0,0,0,.18);

}

.service,
.destination-card,
.counter{

    transition:.35s;

}

/* ==========================
RESPONSIVO
========================== */

@media(max-width:1200px){

    h1{

        font-size:3.5rem;

    }

}

@media(max-width:992px){

    section{

        padding:80px 0;

    }

    h1{

        font-size:3rem;

        text-align:center;

    }

    h2{

        font-size:2.2rem;

    }

    .hero{

        text-align:center;

    }

    .hero p{

        margin:auto;

        margin-top:25px;

        margin-bottom:35px;

    }

    .hero-buttons{

        justify-content:center;

    }

    .navbar{

        background:#111;

    }

    .features{

        grid-template-columns:1fr;

    }

    .gallery-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    h1{

        font-size:2.5rem;

    }

    h2{

        font-size:2rem;

    }

    .gallery-grid{

        grid-template-columns:1fr;

    }

    .gallery-item img{

        height:260px;

    }

    .btn{

        width:100%;

        margin-bottom:12px;

    }

    .hero-buttons{

        display:block;

    }

    .counter{

        margin-bottom:20px;

    }

    .destination-card img{

        height:220px;

    }

}

@media(max-width:576px){

    section{

        padding:60px 0;

    }

    h1{

        font-size:2.1rem;

    }

    h2{

        font-size:1.8rem;

    }

    .hero{

        min-height:90vh;

    }

    .navbar-brand{

        font-size:1.2rem;

    }

    .whatsapp{

        width:58px;

        height:58px;

        font-size:28px;

    }

}
/* ==========================
ANIMAÇÕES JS
========================== */

.hidden{

    opacity:0;

    transform:translateY(50px);

    transition:.8s ease;

}

.show{

    opacity:1;

    transform:translateY(0);

}

.nav-link.active{

    color:var(--gold)!important;

}

.nav-link.active::after{

    width:100%;

}

