/* =====================================================
   MOTORA - UBER LANDING PAGE PREMIUM
===================================================== */

:root{

    --primary:#00d775;
    --primary-hover:#00b863;

    --dark:#020617;
    --dark-2:#07111f;
    --dark-3:#0f172a;

    --light:#f8fafc;

    --text:#cbd5e1;

    --glass:rgba(255,255,255,.07);

    --border:rgba(255,255,255,.12);

    --shadow:
    0 20px 60px rgba(0,0,0,.25);

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:var(--dark);

    color:white;

    overflow-x:hidden;

}

/* =====================
   SCROLLBAR
===================== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#000;
}

::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:20px;
}

/* =====================
   PRELOADER
===================== */

#preloader{

    position:fixed;

    width:100%;
    height:100%;

    background:#000;

    z-index:99999;

    display:flex;

    align-items:center;

    justify-content:center;

}

.loader{

    width:70px;
    height:70px;

    border-radius:50%;

    border:5px solid rgba(255,255,255,.08);

    border-top:5px solid var(--primary);

    animation:spin 1s linear infinite;

}

@keyframes spin{

    100%{
        transform:rotate(360deg);
    }

}

/* =====================
   NAVBAR
===================== */

.navbar{

    padding:20px 0;

    transition:.4s;

}

.navbar.scrolled{

    background:
    rgba(2,6,23,.95);

    backdrop-filter:blur(15px);

    box-shadow:
    0 10px 40px rgba(0,0,0,.25);

}

.navbar-brand{

    color:white !important;

    font-size:1.7rem;

    font-weight:800;

}

.navbar-brand i{

    color:var(--primary);

}

.nav-link{

    color:white !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(--primary);

    transition:.3s;

}

.nav-link:hover::after{

    width:100%;

}

/* =====================
   BOTÕES
===================== */

.btn-uber{

    background:var(--primary);

    border:none;

    color:white;

    font-weight:700;

    border-radius:50px;

    padding:16px 35px;

    transition:.4s;

    box-shadow:
    0 0 20px rgba(0,215,117,.35);

}

.btn-uber:hover{

    background:var(--primary-hover);

    transform:translateY(-4px);

    color:white;

    box-shadow:
    0 20px 40px rgba(0,215,117,.35);

}

/* =====================
   HERO
===================== */

.hero{

    position:relative;

    min-height:100vh;

    overflow:hidden;

    display:flex;

    align-items:center;

}

.hero-video{

    position:absolute;

    width:100%;
    height:100%;

    object-fit:cover;

    top:0;
    left:0;

}

.overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    135deg,
    rgba(0,0,0,.85),
    rgba(0,0,0,.55)
    );

}

.hero .container{

    position:relative;

    z-index:10;

}

.hero-badge{

    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:
    rgba(0,215,117,.15);

    border:
    1px solid rgba(0,215,117,.25);

    margin-bottom:20px;

}

.hero h1{

    font-size:4rem;

    font-weight:800;

    line-height:1.1;

    margin-bottom:25px;

}

.hero p{

    font-size:1.2rem;

    color:#e2e8f0;

    max-width:700px;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

}

/* =====================
   SEÇÕES
===================== */

.section{

    padding:110px 0;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:var(--primary);

    font-weight:700;

    letter-spacing:2px;

}

.section-title h2{

    font-size:3rem;

    font-weight:800;

    margin-top:15px;

}

.section-title p{

    color:#94a3b8;

    margin-top:15px;

}

.bg-dark-custom{

    background:var(--dark-2);

}
/* =====================
   GLASS CARDS
===================== */

.glass-card{

    background:var(--glass);

    border:1px solid var(--border);

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

    border-radius:24px;

    padding:35px;

    height:100%;

    transition:.4s;

    overflow:hidden;

    position:relative;

}

.glass-card::before{

    content:'';

    position:absolute;

    width:200px;
    height:200px;

    background:
    radial-gradient(
    rgba(0,215,117,.12),
    transparent
    );

    top:-50px;
    right:-50px;

}

.glass-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow);

    border-color:
    rgba(0,215,117,.30);

}

.glass-card i{

    font-size:3rem;

    color:var(--primary);

    margin-bottom:20px;

}

.glass-card h4{

    font-weight:700;

    margin-bottom:15px;

}

.glass-card p{

    color:#cbd5e1;

    line-height:1.8;

}

/* =====================
   CONTADORES
===================== */

.counter-section{

    margin-top:-70px;

    position:relative;

    z-index:100;

}

.counter-card{

    background:var(--glass);

    border:1px solid var(--border);

    backdrop-filter:blur(20px);

    padding:35px;

    border-radius:20px;

    text-align:center;

    transition:.4s;

}

.counter-card:hover{

    transform:translateY(-8px);

}

.counter-card i{

    font-size:2rem;

    color:var(--primary);

    margin-bottom:15px;

}

.counter-card h2{

    font-size:2.8rem;

    font-weight:800;

}

.counter-card p{

    color:#94a3b8;

}

/* =====================
   TIMELINE
===================== */

.timeline{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;

}

.timeline-item{

    background:var(--glass);

    border:1px solid var(--border);

    border-radius:20px;

    padding:30px;

    text-align:center;

    transition:.4s;

}

.timeline-item:hover{

    transform:translateY(-8px);

}

.timeline-item span{

    width:70px;
    height:70px;

    margin:auto auto 20px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:var(--primary);

    color:white;

    font-size:1.4rem;

    font-weight:700;

}

.timeline-item h4{

    margin-bottom:15px;

}

/* =====================
   SIMULADOR
===================== */

.simulator-box{

    max-width:1000px;

    margin:auto;

    padding:50px;

    border-radius:25px;

    background:var(--glass);

    border:1px solid var(--border);

    backdrop-filter:blur(20px);

}

.simulator-box label{

    margin-bottom:10px;

    font-weight:600;

    display:block;

}

.form-control{

    height:60px;

    border-radius:15px;

    background:#111827;

    border:none;

    color:white;

}

.form-control:focus{

    background:#111827;

    color:white;

    box-shadow:none;

    border:1px solid var(--primary);

}

.resultados{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:20px;

}

.resultado-card{

    background:#0f172a;

    padding:30px;

    border-radius:20px;

    text-align:center;

    border:1px solid rgba(255,255,255,.05);

}

.resultado-card h3{

    color:var(--primary);

    font-size:2rem;

    font-weight:800;

}

/* =====================
   TABELAS
===================== */

.table{

    border-radius:20px;

    overflow:hidden;

}

.table thead{

    background:#111827;

}

.table th{

    padding:18px;

    font-weight:700;

}

.table td{

    padding:18px;

    vertical-align:middle;

}

.table-striped>tbody>tr:nth-of-type(odd){

    background:
    rgba(255,255,255,.02);

}

.table-hover tbody tr:hover{

    background:
    rgba(0,215,117,.08);

}

/* =====================
   DEPOIMENTOS
===================== */

.testimonial{

    background:var(--glass);

    border:1px solid var(--border);

    border-radius:25px;

    padding:40px;

    text-align:center;

    backdrop-filter:blur(20px);

    height:100%;

}

.testimonial p{

    font-size:1.05rem;

    line-height:1.8;

    color:#e2e8f0;

}

.testimonial h5{

    color:var(--primary);

    margin-top:20px;

    font-weight:700;

}

/* =====================
   FAQ
===================== */

.accordion-item{

    background:#0f172a;

    border:none;

    margin-bottom:15px;

    border-radius:15px !important;

    overflow:hidden;

}

.accordion-button{

    background:#0f172a;

    color:white;

    font-weight:600;

    padding:22px;

}

.accordion-button:not(.collapsed){

    background:#162234;

    color:var(--primary);

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    background:#111827;

    color:#cbd5e1;

    line-height:1.8;

}

/* =====================
   ALERTA HERO
===================== */

.alert-success{

    background:
    rgba(0,215,117,.12);

    border:
    1px solid rgba(0,215,117,.25);

    color:white;

    border-radius:15px;

}

.alert-success i{

    color:var(--primary);

    margin-right:10px;

}

/* =====================
   CTA FINAL
===================== */

.cta-final{

    padding:120px 0;

    background:
    linear-gradient(
    135deg,
    #00d775,
    #00b863
    );

    text-align:center;

}

.cta-final h2{

    font-size:3rem;

    font-weight:800;

    margin-bottom:20px;

}

.cta-final p{

    font-size:1.15rem;

    margin-bottom:30px;

}

.cta-final .btn{

    padding:18px 40px;

    border-radius:50px;

    font-weight:700;

}

/* =====================
   FOOTER
===================== */

footer{

    background:#010409;

    padding:70px 0;

}

footer h3{

    font-weight:800;

    margin-bottom:15px;

}

footer p{

    color:#94a3b8;

}

footer a{

    color:#94a3b8;

    text-decoration:none;

    transition:.3s;

}

footer a:hover{

    color:var(--primary);

}

/* =====================
   CTA FLUTUANTE
===================== */

.floating-cta{

    position:fixed;

    right:25px;

    bottom:25px;

    z-index:999;

    background:var(--primary);

    color:white;

    text-decoration:none;

    font-weight:700;

    padding:18px 25px;

    border-radius:50px;

    box-shadow:
    0 15px 35px rgba(0,215,117,.35);

    animation:pulse 2s infinite;

}

.floating-cta:hover{

    color:white;

}

@keyframes pulse{

    0%{

        box-shadow:
        0 0 0 0 rgba(0,215,117,.50);

    }

    70%{

        box-shadow:
        0 0 0 25px rgba(0,215,117,0);

    }

    100%{

        box-shadow:
        0 0 0 0 rgba(0,215,117,0);

    }

}

/* =====================
   RESPONSIVO
===================== */

@media(max-width:1200px){

    .hero h1{

        font-size:3.2rem;

    }

}

@media(max-width:992px){

    .hero h1{

        font-size:2.7rem;

    }

    .timeline{

        grid-template-columns:
        repeat(2,1fr);

    }

    .resultados{

        grid-template-columns:
        1fr;

    }

    .section-title h2{

        font-size:2.2rem;

    }

}

@media(max-width:768px){

    .hero{

        text-align:center;

    }

    .hero-buttons{

        justify-content:center;

    }

    .timeline{

        grid-template-columns:1fr;

    }

    .section{

        padding:80px 0;

    }

    .simulator-box{

        padding:25px;

    }

    .cta-final h2{

        font-size:2rem;

    }

    .floating-cta{

        right:15px;
        left:15px;

        text-align:center;

        bottom:15px;

    }

}

@media(max-width:576px){

    .hero h1{

        font-size:2.1rem;

    }

    .hero p{

        font-size:1rem;

    }

    .section-title h2{

        font-size:1.8rem;

    }

    .counter-card h2{

        font-size:2rem;

    }

}