/* ==========================================================
   REVDRIVE
   style.css
========================================================== */
:root{
    --red:#E10600;
    --black:#0b0b0b;
    --dark:#131313;
    --gray:#2a2a2a;
    --light:#e8e8e8;
    --white:#ffffff;
    --radius:16px;
    --shadow:0 15px 40px rgba(0,0,0,.45);

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Rajdhani',sans-serif;

    background:#080808;

    color:#fff;

    overflow-x:hidden;

}

/* =====================================
BACKGROUND
===================================== */

body::before{

    content:"";

    position:fixed;

    inset:0;

    background:

    linear-gradient(rgba(0,0,0,.50),rgba(0,0,0,.75)),

    url("../img/hero-background.png");

    background-size:cover;

    background-position:center;

    z-index:-2;

}

/* linhas */

body::after{

    content:"";

    position:fixed;

    inset:0;

    background:

    linear-gradient(120deg,
    transparent 40%,
    rgba(225,6,0,.08) 50%,
    transparent 60%);

    animation:moveLines 12s linear infinite;

    z-index:-1;

}

@keyframes moveLines{

    from{
        transform:translateX(-100%);
    }

    to{
        transform:translateX(100%);
    }

}

.container{

    width:min(1200px,92%);

    margin:auto;

}

/* =====================================
HEADER
===================================== */

header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    backdrop-filter:blur(15px);

    background:rgba(0,0,0,.55);

    border-bottom:1px solid rgba(255,255,255,.05);

    z-index:999;

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

}

.logo{

    width:210px;

    transition:.35s;

}

.logo:hover{

    transform:scale(1.04);

}

nav{

    display:flex;

    gap:25px;

}

nav a{

    color:#fff;

    font-size:24px;

    transition:.3s;

}

nav a:hover{

    color:var(--red);

    transform:translateY(-4px);

}

/* =====================================
HERO
===================================== */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding-top:120px;

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.badge{

    display:inline-block;

    padding:10px 18px;

    border:1px solid rgba(255,255,255,.15);

    border-radius:50px;

    background:rgba(255,255,255,.05);

    margin-bottom:30px;

    font-weight:700;

}

.hero h1{

    font-size:68px;

    line-height:1;

    margin-bottom:30px;

}

.hero h1 span{

    color:var(--red);

}

.hero p{

    color:#cfcfcf;

    font-size:22px;

    line-height:1.6;

    margin-bottom:35px;

}

.hero ul{

    list-style:none;

    margin-bottom:40px;

}

.hero li{

    margin-bottom:12px;

    font-size:20px;

}

.hero li i{

    color:var(--red);

    margin-right:10px;

}

/* =====================================
FORM
===================================== */

form{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}

input{

    flex:1;

    min-width:260px;

    padding:18px;

    border:none;

    border-radius:var(--radius);

    background:#181818;

    color:#fff;

    font-size:18px;

    outline:none;

}

input:focus{

    box-shadow:0 0 0 2px var(--red);

}

button{

    padding:18px 34px;

    border:none;

    border-radius:var(--radius);

    background:var(--red);

    color:#fff;

    font-size:17px;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;

}

button:hover{

    transform:translateY(-3px);

    box-shadow:0 0 25px rgba(225,6,0,.5);

}

/* =====================================
IMAGE
===================================== */

.hero-image{

    text-align:center;

}

.hero-image img{

    width:100%;

    max-width:580px;

    animation:float 6s ease-in-out infinite;

}

@keyframes float{

    50%{

        transform:translateY(-18px);

    }

}

/* =====================================
FEATURES
===================================== */

.features{

    padding:120px 0;

}

.features .container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.05);

    border-radius:20px;

    padding:40px;

    text-align:center;

    transition:.4s;

    backdrop-filter:blur(12px);

}

.card:hover{

    transform:translateY(-12px);

    border-color:rgba(225,6,0,.35);

}

.card i{

    font-size:42px;

    color:var(--red);

    margin-bottom:20px;

}

.card h3{

    margin-bottom:15px;

    font-size:24px;

}

.card p{

    color:#c7c7c7;

}

/* =====================================
COUNTDOWN
===================================== */

.countdown{

    padding:120px 0;

    text-align:center;

}

.countdown h2{

    font-size:48px;

    margin-bottom:40px;

}

#contador{

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

}

#contador div{

    width:160px;

    padding:35px;

    border-radius:20px;

    background:#111;

    border:1px solid rgba(255,255,255,.05);

}

#contador span{

    display:block;

    font-size:58px;

    color:var(--red);

    font-weight:bold;

}

/* =====================================
FOOTER
===================================== */

.footer-logo{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
}

.footer-logo img{
    width:120px;
}

.footer-logo span{
    color:#888;
    font-size:15px;
    letter-spacing:6px;
    text-transform:uppercase;
}

footer{

    padding:70px 20px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.05);

}

footer img{

    width:170px;

    margin-bottom:20px;

}

footer p{

    color:#ccc;

    margin-bottom:30px;

}

.social{

    display:flex;

    justify-content:center;

    gap:25px;

    margin-bottom:30px;

}

.social a{

    color:#fff;

    font-size:28px;

    transition:.3s;

}

.social a:hover{

    color:var(--red);

}

small{

    color:#666;

}

/* =====================================
RESPONSIVO
===================================== */

@media(max-width:980px){

.hero-grid{

grid-template-columns:1fr;

text-align:center;

}

.hero h1{

font-size:50px;

}

.hero-image{

order:-1;

}

.features .container{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:650px){

.features .container{

grid-template-columns:1fr;

}

.hero h1{

font-size:38px;

}

.hero p{

font-size:18px;

}

.logo{

width:160px;

}

nav{

gap:18px;

}

#contador div{

width:130px;

padding:20px;

}

}