.experiencia-section {
    padding: 60px 0 100px;
    background: #ffffff;
}



@media (max-width: 992px) {
    .experiencia-card {
        border-radius: 36px;
    }
}

.exp-title {
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.05;
    margin-bottom: 28px;
}

.exp-text {
    line-height: 1.55;
    max-width: 560px;
    margin-bottom: 40px;
}

.exp-image-wrapper {
    width: 100%;
    max-width: 520px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 40px -18px rgba(0, 0, 0, 0.25);
}

.exp-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.exp-stats {
    --exp-gap: 40px;
}

.exp-stat {
    text-align: left;
}

.exp-value {
    line-height: 1;
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 700;
}

.exp-label {
    font-size: 0.62rem;
    margin-top: 10px;
    font-size: 14px;
}

@media (max-width: 768px) {

    /* Título y texto más compactos */
    .exp-title {
        font-size: clamp(1.9rem, 7.2vw, 2.4rem);
        margin-bottom: 20px;
    }

    .exp-text {
        margin-bottom: 28px;
        font-size: 0.92rem;
    }

    /* Contenedor principal más ajustado */
    .experiencia-card {
        border-radius: 32px;
    }

    /* Imagen ocupa ancho completo arriba */
    .exp-image-wrapper {
        max-width: 100%;
        margin-bottom: 32px;
        border-radius: 26px;
    }

    /* Estadísticas en 2 columnas */
    .exp-stats .col-4 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 22px;
    }

    .exp-value {
        font-size: 1.9rem;
    }

    .exp-label {
        font-size: 0.90rem;
        margin-top: 6px;
    }
}

@media (max-width: 576px) {
   

    .exp-title {
        font-size: 2rem;
    }

    .exp-text {
        font-size: 0.9rem;
    }

    /* Estadísticas en 1 columna para mejor legibilidad */
    .exp-stats .col-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .exp-value {
        font-size: 1.8rem;
    }
}