/* ==========================================================================
   SOBRE: SECÇÃO 3 - NÚMEROS E VALORES (STATS)
   ========================================================================== */
.about-stats-section {
    padding: clamp(64px, 8vw, 96px) 0;
    position: relative;
}

.about-stats-header {
    margin-bottom: clamp(40px, 6vw, 64px);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-stats-header .section-eyebrow {
    font-family: var(--font-body);
    font-size: clamp(11px, 1.2vw, 14px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary-600);
}

.about-stats-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 36px);
    font-weight: 600;
    color: var(--color-neutral-900);
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

/* --- Grelha Bento Box --- */
.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    position: relative;
}

.about-stats-grid::before {
    content: "";
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    height: 40%;
    background: #4f88cb38;
    filter: blur(55px);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

@media (min-width: 768px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .about-stats-grid {
        /* No Desktop, a grelha faz automaticamente o wrap das 6 divs em 3 colunas por 2 linhas */
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- Cartões de Estatística --- */
.stat-card {
    background-color: var(--color-neutral-100);
    border: 1px solid var(--color-neutral-200);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card-transparent {
    background-color: transparent;
    box-shadow: none;
    border: none;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.08);
}

.stat-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary-600);
}

.stat-icon {
    width: 32px;
    height: 32px;
    color: var(--color-primary-500);
}

.stat-value-wrapper {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.stat-number,
.stat-prefix,
.stat-suffix {
    font-family: var(--font-heading);
    font-size: clamp(48px, 5vw, 56px);
    font-weight: 600;
    color: var(--color-primary-700);
    line-height: 1;
    letter-spacing: -2px;
}

.stat-prefix,
.stat-suffix {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--color-primary-500);
}

.stat-desc {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-neutral-700);
    margin: 0;
}

/* --- Imagens da Grelha --- */
.stat-image-wrapper {
    width: 100%;
    height: 100%;
    max-height: 260px;
    border-radius: 16px;
    overflow: hidden;
}

.stat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.stat-image-wrapper:hover .stat-img {
    transform: scale(1.05);
}