/* =============================================
   STATS SECTION - Números da Empresa
   ============================================= */

.stats-section {
    background: #E6DDCE;
    padding: 8px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 5px 35px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
    width: 1px;
    background: rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-family: brandon-grotesque, "Brandon Grotesque", "Open Sans", sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #007c8c;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-number .stat-prefix {
    font-size: 1.8rem;
}

.stat-stars {
    color: #007c8c;
    font-size: 1.2rem;
    margin-left: 5px;
}

.stat-label {
    font-family: "Open Sans", sans-serif;
    font-size: 0.85rem;
    color: #333333;
    font-weight: 400;
    line-height: 1.3;
    max-width: 150px;
}

/* Responsividade tablet */
@media (max-width: 991px) {
    .stats-section {
        padding: 4px 0;
    }

    .stats-container {
        flex-wrap: wrap;
        gap: 4px 0;
    }

    .stat-item {
        flex: 0 0 50%;
        padding: 6px 15px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-item:nth-child(odd)::after {
        display: block;
        height: 35px;
    }

    .stat-number {
        font-size: 1.6rem;
        margin-bottom: 2px;
    }

    .stat-label {
        font-size: 0.75rem;
        line-height: 1.2;
    }
}

/* Responsividade mobile */
@media (max-width: 576px) {
    .stats-section {
        padding: 2px 0;
    }

    .stats-container {
        gap: 0;
    }

    .stat-item {
        flex: 0 0 50%;
        padding: 4px 10px;
    }

    .stat-item:nth-child(odd)::after {
        height: 30px;
    }

    .stat-number {
        font-size: 1.4rem;
        margin-bottom: 1px;
    }

    .stat-number .stat-prefix {
        font-size: 1.2rem;
    }

    .stat-stars {
        font-size: 0.9rem;
    }

    .stat-label {
        font-size: 0.7rem;
        max-width: 100px;
        line-height: 1.1;
    }
}

.star-partial {
    position: relative;
    display: inline-block;
    color: #ccc;
}

.star-partial::before {
    content: '★';
    position: absolute;
    left: 0;
    top: 0;
    width: 80%;
    overflow: hidden;
    color: #007c8c;
}
