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

:root{
    --verde:#39ff14;
    --verde-hover:#55ff33;

    --preto:#050505;
    --preto-card:#111111;

    --cinza:#cfcfcf;
    --branco:#ffffff;

    --radius:20px;

    --transition:.3s;
    --shadow:0 0 25px rgba(57,255,20,.25);
}

html{
    scroll-behavior:smooth;
}

body{
    background:
        radial-gradient(circle at top,
        #0b1809 0%,
        #070707 35%,
        #050505 70%);

    color:#fff;

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

    overflow-x:hidden;
}

header {
    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 22px 10%;

    z-index: 999;

    transition: .4s;

    background: transparent;
}

header.scroll{
    background:#050505;

    backdrop-filter: blur(12px);

    box-shadow:0 10px 30px rgba(57,255,20,.12);
}

.logo {
    font-size: 32px;

    font-weight: bold;
}

.logo img {
    height: 80px;

    transition: .3s;
}

header.scroll .logo img{
    transform:scale(.90);
}

nav a {
    color: white;

    text-decoration: none;

    margin-left: 35px;

    position: relative;

    transition: .3s;
}

nav a::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -6px;

    width: 0;

    height: 2px;

    background: #39ff14;

    transition: .3s;
}

nav a:hover {

    color: #39ff14;
}

nav a:hover::after {
    width: 100%;
}

.hero {
    min-height: 110vh;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    padding: 120px 10%;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(circle at top, #163c12 0%, #050505 55%),
        linear-gradient(to bottom, #070707, #030303);
}

.hero h1 {
    font-size: 60px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 15px;
    opacity:0;

animation:fadeUp .8s ease forwards;

animation-delay:.2s;
}

.hero h2 {
    font-size: 42px;

    color: #39ff14;

    letter-spacing: 3px;

    margin-bottom: 25px;
    opacity:0;

animation:fadeUp .8s ease forwards;

animation-delay:.4s;
}

.hero-buttons {
    display: flex;

    justify-content: center;

    gap: 20px;

    margin-top: 40px;

    flex-wrap: wrap;
    opacity:0;

animation:fadeUp .8s ease forwards;
box-shadow:var(--shadow);

animation-delay:1s;
}

.btn-outline {
    display: inline-block;

    padding: 16px 34px;

    border: 2px solid #39ff14;

    border-radius: 50px;

    color: #39ff14;

    text-decoration: none;

    font-weight: 700;

    transition: .35s;
}

.btn-outline:hover{

    transform:translateY(-3px);
}

.hero-line {
    width: 800px;

    height: 4px;

    background: #39ff14;

    margin-bottom: 30px;

    border-radius: 20px;
    opacity:0;

animation:fadeUp .8s ease forwards;

animation-delay:.6s;
}

.hero::before {
    content: "";

    position: absolute;

    width: 700px;

    height: 700px;

    border-radius: 50%;

    background: rgba(57, 255, 20, .08);

    filter: blur(120px);

    top: -250px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 0;
    animation:glow 8s ease-in-out infinite;
}

.hero>* {

    position: relative;

    z-index: 2;

}

.hero p {

    max-width: 700px;

    font-size: 22px;

    line-height: 1.9;

    color: #cfcfcf;
    opacity:0;

animation:fadeUp .8s ease forwards;

animation-delay:.8s;
}

.botoes  {
    margin-top: 50px;


}
.btn-verde {
    background: #2bff00;

    color: black;

    padding: 15px 35px;

    text-decoration: none;

    font-weight: bold;

    border-radius: 8px;

    margin-right: 20px;
}

.btn-verde:hover {
    background: #59ff38;
}

.btn-transparente {
    border: 2px solid #2bff00;

    color: white;

    padding: 15px 35px;

    border-radius: 8px;

    text-decoration: none;
}

.btn-transparente:hover {
    background: #2bff00;

    color: black;
}

/*======================
INFO2SPEED EM NÚMEROS
=======================*/

.numeros {
    padding: 100px 10%;

    background: #0f0f0f;

    text-align: center;
}

.numeros h2 {
    font-size: 42px;

    color: white;

    margin-bottom: 60px;
}

.cards {
    display: flex;
border-radius:var(--radius);
    justify-content: center;

    gap: 30px;

    flex-wrap: wrap;
}

.card {
    background: #171717;

    width: 340px;

    padding: 40px;

    border-radius: 15px;

    transition: .3s;

    border: 1px solid #222;
}

.card:hover {
    transform: translateY(-10px);

    border-color: #39ff14;
}

.numero {
    display: block;

    color: #39ff14;

    font-size: 52px;

    font-weight: bold;

    margin-bottom: 15px;
}

.card p {
    color: white;

    font-size: 20px;
}

/*======================
QUEM SOMOS
=======================*/

.sobre {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 80px;

    padding: 120px 10%;

    background: #080808;

    flex-wrap: wrap;
}

.sobre-imagem img {
    width: 500px;

    border-radius: 15px;

    box-shadow: 0 0 40px rgba(57, 255, 20, .2);
}

.sobre-texto {
    max-width: 550px;
}

.sobre-texto h2 {
    color: white;

    font-size: 42px;

    margin-bottom: 25px;
}

.sobre-texto p {
    color: #cfcfcf;

    line-height: 1.8;

    margin-bottom: 30px;
}

.sobre-texto ul {
    list-style: none;

    margin-bottom: 35px;
}

.sobre-texto li {
    color: white;

    margin-bottom: 15px;

    font-size: 18px;
}

/* PILOTOS */

.pilotos {
    padding: 100px 10%;
    background: #0d0d0d;
}

.pilotos h2 {
    color: white;
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
}

.grid-pilotos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.piloto-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    transition: .3s;
}

.piloto-card:hover {

    transform: translateY(-10px);
    border-color: #39ff14;

}

.piloto-card img{
    width:170px;

    height:170px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid var(--verde);

    margin-bottom:20px;

    transition:.4s;
}

.piloto-card h3 {
  font-size:26px;

   margin-bottom:8px;
}

.piloto-card p{
    color:var(--cinza);

    margin-bottom:25px;

    line-height: 1.6
}

.piloto-card span {
    display: block;
    color: #aaa;
    margin-bottom: 20px;
}

.piloto img{
    transition:.4s;
}

.piloto:hover img{
    transform:scale(1.05);
}

/* CAMPEONATOS */

.campeonatos {
    padding: 120px 10%;

    background: #0b0b0b;

    text-align: center;
}

.campeonatos h2 {
    color: white;

    font-size: 48px;

    margin-bottom: 60px;
}

.grid-campeonatos {

    display: grid;

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

    gap: 30px;

}

.camp-card {

    background: #111;

    border: 1px solid #222;

    border-radius: 18px;

    padding: 35px;

    transition: .35s;

}

.camp-card:hover {

    transform: translateY(-10px);

    border-color: #39ff14;

    box-shadow: 0 0 25px rgba(57, 255, 20, .25);

}

.camp-card h3 {

    color: white;

    margin-bottom: 20px;

}

.camp-card p {

    color: #bbb;

    margin-bottom: 25px;

}

.status {

    display: inline-block;

    margin-bottom: 25px;

    font-weight: bold;

}

.andamento {

    color: #39ff14;

}

.breve {

    color: #ffc107;

}

.encerrado {

    color: #ff4b4b;

}

.camp-card a {

    color: #39ff14;

    text-decoration: none;

    font-weight: bold;

}

.header-scroll {

    background: rgba(10, 10, 10, .85);

    backdrop-filter: blur(14px);

    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);

}

/* ===========================
   TÍTULOS DAS SEÇÕES
=========================== */

.section-title {
    text-align: center;

    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 48px;

    color: #fff;

    letter-spacing: 3px;

    margin-bottom: 10px;
}

.section-title span {
    display: inline-block;

    width: 500px;

    height: 4px;

    background: #39ff14;

    border-radius: 5px;
}


.btn-verde {
    box-shadow: 0 0 30px rgba(57, 255, 20, .3);
}

.btn-verde:hover{
    transform:translateY(-3px);

    box-shadow:0 10px 30px rgba(57,255,20,.35);
}
/* HEADER AO ROLAR */

header{
    transition: .35s;
}

header.scroll{
    background:#050505;
    backdrop-filter:blur(12px);
    box-shadow:0 0 25px rgba(57,255,20,.18);
}

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

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/*======================================
BRILHO DA HERO
======================================*/

@keyframes glow{

    0%{
        opacity:.35;

        transform:scale(1);
    }
    50%{

        opacity:.65;

        transform:scale(1.08);

    }
    100%{
        opacity:.35;

        transform:scale(1);

    }
}
/*======================================
POR QUE A INFO2SPEED
======================================*/

.porque{
    padding:120px 10%;

    background:#070707;
}

.cards{
    display:grid;

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

    gap:30px;

    margin-top:60px;
}

.card{
    background:linear-gradient(180deg,#111,#0b0b0b);

    padding:45px;

    border-radius:20px;

    border:1px solid rgba(255,255,255,.05);

    transition:.35s;

    overflow:hidden;

    position:relative;
}

.card:hover{
    transform:translateY(-12px);

    border-color:var(--verde);

    box-shadow:0 15px 40px rgba(57,255,20,.18);
}

.icon{

    font-size:48px;

    margin-bottom:25px;
}

.card h3{
    margin-bottom:20px;

    color:white;
}

.card p{
    color:#cfcfcf;

    line-height:1.8;
}

footer{
    padding:90px 10% 60px;

    text-align:center;

    background:#050505;

    border-top:1px solid rgba(255,255,255,.08);
}

.footer-logo{
    width:260px;

    max-width:80%;

    margin-bottom:25px;
}

.footer-links{
    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:35px;

    margin:40px 0;
}

.footer-links a{
    color:var(--cinza);

    text-decoration:none;

    font-weight:600;

    letter-spacing:.5px;

    transition:var(--transition);
}

.footer-links a:hover{
    color:var(--verde);

    transform:translateY(-3px);
}
/*======================================
HERO 2 COLUNAS
======================================*/

.hero-content{
    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;
}

.hero-text{
    flex:1;
}

.hero-image{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

.hero-image::before{
    content:"";

    position:absolute;

    width:420px;

    height:420px;

    background:radial-gradient(circle,
        rgba(57,255,20,.18) 0%,
        rgba(57,255,20,.08) 40%,
        transparent 70%);

    filter:blur(35px);

    z-index:0;

    animation:glow 6s ease-in-out infinite;
}

.hero-image img{
    width:100%;

    max-width:420px;

    animation:floatCar 5s ease-in-out infinite;
    
    position:relative;

z-index:1;
}

@keyframes floatCar{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
    100%{
        transform:translateY(0);
    }
}

.cta{

    padding:120px 10%;

    text-align:center;

}

.cta h2{
    font-size:42px;

    margin-bottom:25px;
}

.cta p{
    max-width:700px;

    margin:0 auto 40px;

    color:#cfcfcf;

    line-height:1.8;
}

.footer a{
    color: var(--cinza);

    text-decoration:none;

    transition:.3s;
}

.footer a:hover{
    color:var(--verde);
}

footer h3{
    font-size:28px;

    margin-bottom:12px;

    letter-spacing:2px;
}

footer p{
    color:var(--cinza);
    font-size:18px;
    line-height:1.8;

    margin-bottom:10px;
}

footer span{
    display:block;

    margin-top:30px;

    color:#555;

    font-size:14px;
}

footer::before{
    content:"";

    display:block;

    width:180px;

    height:3px;

    background:var(--verde);

    margin:0 auto 30px;

    border-radius:10px;
}

.btn-piloto{
    display:inline-block;

    padding:12px 30px;

    border:2px solid var(--verde);

    border-radius:30px;

    color:white;

    text-decoration:none;

    transition:.3s;
}

.btn-piloto:hover{
    background:var(--verde);

    color:black;
}

.piloto-card h4{
    color:var(--verde);
    font-size:18px;
    margin-bottom:12px;
    font-weight:600;
}

.piloto-card:hover img{
    transform:scale(1.05);
}

.footer-slogan{
    margin-top:12px;
    color:#888;
    font-size:14px;
}

/* =====================================
   RESPONSIVIDADE
===================================== */

/* TABLETS */
@media (max-width: 1024px){

    header{
        padding:18px 5%;
    }

    nav a{
        margin-left:20px;
        font-size:15px;
    }

    .hero h1{
        font-size:48px;
    }

    .hero h2{
        font-size:34px;
    }

    .hero-line{
        width:80%;
        max-width:700px;
    }

    .section-title span{
        width:70%;
        max-width:500px;
    }

    .cards{
        grid-template-columns:repeat(2, 1fr);
    }

    .sobre{
        gap:45px;
        padding:100px 6%;
    }

    .sobre-imagem img{
        width:420px;
        max-width:100%;
    }
}


/* CELULARES */
@media (max-width: 768px){

    body{
        overflow-x:hidden;
    }

    /* HEADER */

    header{
        position:relative;
        flex-direction:column;
        padding:18px 20px;
        gap:15px;
        background:#050505;
    }

    .logo img{
        height:65px;
    }

    nav{
        display:flex;
        justify-content:center;
        flex-wrap:wrap;
        gap:12px 18px;
    }

    nav a{
        margin-left:0;
        font-size:14px;
    }

    /* HERO */

    .hero{
        min-height:auto;
        padding:90px 20px 80px;
    }

    .hero h1{
        font-size:38px;
        line-height:1.15;
        letter-spacing:1px;
    }

    .hero h2{
        font-size:27px;
        line-height:1.2;
        letter-spacing:1.5px;
    }

    .hero-line{
        width:100%;
        height:3px;
    }

    .hero p{
        font-size:17px;
        line-height:1.7;
    }

    .hero-buttons{
        flex-direction:column;
        width:100%;
        align-items:center;
        box-shadow:none;
    }

    .btn-verde,
    .btn-outline{
        width:100%;
        max-width:300px;
        margin-right:0;
        text-align:center;
    }

    .scroll-indicator{
        display:none;
    }

    /* TÍTULOS */

    .section-title{
        margin-bottom:45px;
    }

    .section-title h2,
    .pilotos h2,
    .campeonatos h2,
    .numeros h2{
        font-size:32px;
        line-height:1.2;
        letter-spacing:1.5px;
    }

    .section-title span{
        width:85%;
        max-width:350px;
        height:3px;
    }

    /* NÚMEROS E CARDS */

    .numeros,
    .porque,
    .pilotos,
    .campeonatos,
    .cta{
        padding:80px 20px;
    }

    .cards{
        display:grid;
        grid-template-columns:1fr;
        gap:22px;
        margin-top:40px;
    }

    .card{
        width:100%;
        padding:35px 25px;
    }

    .numero{
        font-size:44px;
    }

    /* QUEM SOMOS */

    .sobre{
        display:flex;
        flex-direction:column;
        padding:80px 20px;
        gap:35px;
        text-align:center;
    }

    .sobre-imagem img{
        width:100%;
        max-width:420px;
    }

    .sobre p{
        font-size:16px;
        line-height:1.7;
        text-align:left;
    }

    .sobre ul{
        width:100%;
        text-align:left;
        list-style:none;
    }

    .sobre li{
        margin-bottom:12px;
    }

    /* PILOTOS */

    .grid-pilotos{
        grid-template-columns:1fr;
    }

    .piloto-card{
        padding:30px 20px;
    }

    .piloto-card img{
        width:150px;
        height:150px;
    }

    .piloto-card h3{
        font-size:23px;
    }

    .piloto-card p{
        font-size:16px;
    }

    /* CAMPEONATOS */

    .grid-campeonatos{
        grid-template-columns:1fr;
    }

    .camp-card{
        padding:30px 22px;
    }

    /* CTA */

    .cta h2{
        font-size:32px;
        line-height:1.25;
    }

    .cta p{
        font-size:16px;
    }

    /* RODAPÉ */

    footer{
        padding:75px 20px 45px;
    }

    .footer-logo{
        width:220px;
    }

    .footer-links{
        flex-direction:column;
        gap:20px;
        margin:35px 0;
    }
}


/* CELULARES PEQUENOS */
@media (max-width: 480px){

    .hero h1{
        font-size:31px;
    }

    .hero h2{
        font-size:23px;
    }

    .hero p{
        font-size:16px;
    }

    nav{
        gap:10px 14px;
    }

    nav a{
        font-size:13px;
    }

    .section-title h2,
    .pilotos h2,
    .campeonatos h2,
    .numeros h2{
        font-size:27px;
    }

    .piloto-card img{
        width:135px;
        height:135px;
    }

    footer h3{
        font-size:23px;
    }
}