/* ========================= */
/* ESTADISTICAS */
/* ========================= */

.stats-section{
    width: 100%;
    padding: 100px 8%;
    background: #000;
}

/* Línea blanca */

.top-line{
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin-bottom: 70px;
}

/* TITULO */

.stats-title{
    text-align: center;
    margin-bottom: 70px;
}

.stats-title h2{
    color: #ff8800;
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 800;
}

.stats-title p{
    color: #cfcfcf;
    font-size: 18px;
}

/* GRID */

.stats-container{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

/* CARD */

.stat-card{
    background: #111;
    border: 1px solid rgba(255,136,0,0.2);
    border-radius: 22px;
    padding: 50px 25px;
    text-align: center;
    transition: 0.3s;
}

.stat-card:hover{
    transform: translateY(-8px);
    border-color: #ff8800;
    box-shadow: 0 0 25px rgba(255,136,0,0.15);
}

/* NUMERO */

.stat-card h3{
    color: #ff8800;
    font-size: 60px;
    margin-bottom: 15px;
    font-weight: 800;
}

/* TEXTO */

.stat-card span{
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600;
}

/* RESPONSIVE */

@media(max-width: 1000px){

    .stats-container{
        grid-template-columns: repeat(2,1fr);
    }

}

@media(max-width: 600px){

    .stats-container{
        grid-template-columns: 1fr;
    }

}