/*=========================================
=            ESTADÍSTICAS
=========================================*/

.stats-section{
    padding:100px 0;
    background:#f8f8f8;
}

.stats-section .section-header{
    max-width:760px;
    margin:0 auto 70px;
}

.stats-section .section-header p{
    font-size:17px;
    line-height:1.9;
    color:var(--text);
}

/* GRID */

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

/* CARD */

.stat-card{
    background:#fff;
    border:1px solid rgba(200,162,74,.30);
    border-radius:14px;
    padding:45px 30px;
    text-align:center;
    position:relative;
    transition:all .35s ease;
    overflow:hidden;
}

/* Línea superior */

.stat-card::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:70px;
    height:3px;
    background:#C8A24A;
    transition:.35s;
}

.stat-card:hover{
    transform:translateY(-8px);
    border-color:#C8A24A;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.stat-card:hover::before{
    width:100%;
}

/* Número */

.stat-number{
    display:inline-block;
    font-size:58px;
    font-weight:700;
    color:#C8A24A;
    line-height:1;
    font-family:"Cormorant Garamond",serif;
}

/* + o % */

.stat-symbol{
    font-size:30px;
    font-weight:600;
    color:#C8A24A;
    vertical-align:top;
    margin-left:4px;
}

/* Título */

.stat-card h3{
    margin:28px 0 15px;
    font-size:22px;
    font-weight:600;
    color:var(--heading);
}

/* Descripción */

.stat-card p{
    margin:0;
    font-size:15px;
    line-height:1.8;
    color:var(--text);
}

/* Responsive */

@media(max-width:768px){

    .stats-section{
        padding:70px 0;
    }

    .stat-card{
        padding:35px 25px;
    }

    .stat-number{
        font-size:48px;
    }

}